System.Composition.Convention 11.0.0-preview.7.26381.103

About

System.Composition.Convention is part of the Managed Extensibility Framework (MEF) 2.0, a composition library for .NET that enables dependency injection through attributes or conventions.

This package simplifies the process of applying consistent patterns for part exports, imports, and metadata by using convention-based configurations. It is useful for scenarios where you want to avoid repetitive attribute-based decoration and instead define conventions for registering types in your composition container.

Key Features

  • Configure exports, imports, and metadata for parts using conventions rather than attributes.
  • Allows defining conventions through a fluent API, making configuration more flexible and readable.

How to Use

Configure parts for composition without using attributes.

using System.Composition.Convention;
using System.Composition.Hosting;

var conventions = new ConventionBuilder();

// Apply conventions: any class that implements ILogger will be exported as ILogger
conventions
    .ForTypesDerivedFrom<ILogger>()
    .Export<ILogger>();

var configuration = new ContainerConfiguration()
    .WithPart<FileLogger>(conventions)
    .WithPart<ConsoleLogger>(conventions);

using CompositionHost container = configuration.CreateContainer();
    
var loggers = container.GetExports<ILogger>();

foreach (var logger in loggers)
{
    logger.Log("Hello, World!");
}
// FileLogger: Hello, World!
// ConsoleLogger: Hello, World!

public interface ILogger
{
    void Log(string message);
}

public class FileLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"FileLogger: {message}");
}

public class ConsoleLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"ConsoleLogger: {message}");
}

Main Types

The main types provided by this library are:

  • System.Composition.Convention.ConventionBuilder
  • System.Composition.Convention.PartConventionBuilder
  • System.Composition.Convention.ParameterImportConventionBuilder

Additional Documentation

Feedback & Contributing

System.Composition.Convention is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Composition.Convention.

Packages Downloads
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
145
System.Composition
This package provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
474
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
144
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
151
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
157
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
162
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions
243
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions 029cf57733b7ec6c1dd8a13857e800b9a8d97192 When using NuGet 3.x this package requires at least version 3.4.
145
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions 8f968b9e79c5721d78cc88e46fe57457fe9d490d When using NuGet 3.x this package requires at least version 3.4.
160
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
144
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
146
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
147
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
148
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
152
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
153
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
160
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
163
System.Composition
This packages provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web. Commonly Used Types: System.Composition.ExportAttribute System.Composition.ImportAttribute System.Composition.Convention.ConventionBuilder System.Composition.Hosting.CompositionHost System.Composition.CompositionContext System.Composition.CompositionContextExtensions When using NuGet 3.x this package requires at least version 3.4.
169

https://go.microsoft.com/fwlink/?LinkID=799421

.NET 10.0

.NET 11.0

.NET Framework 4.6.2

.NET Standard 2.0

Version Downloads Last updated
11.0.0-preview.7.26381.103 4 08/12/2026
11.0.0-preview.6.26359.118 13 07/14/2026
11.0.0-preview.5.26302.115 22 06/10/2026
11.0.0-preview.4.26230.115 26 05/13/2026
11.0.0-preview.3.26207.106 31 04/14/2026
11.0.0-preview.2.26159.112 33 03/12/2026
11.0.0-preview.1.26104.118 38 02/14/2026
10.0.11 1 08/12/2026
10.0.10 11 07/15/2026
10.0.9 14 06/10/2026
10.0.8 26 05/13/2026
10.0.7 30 04/21/2026
10.0.6 28 04/14/2026
10.0.5 38 03/13/2026
10.0.4 34 03/12/2026
10.0.3 41 02/14/2026
10.0.2 43 01/13/2026
10.0.1 73 12/11/2025
10.0.0 77 11/12/2025
10.0.0-rc.2.25502.107 95 10/14/2025
10.0.0-rc.1.25451.107 80 09/09/2025
10.0.0-preview.7.25380.108 87 08/14/2025
10.0.0-preview.6.25358.103 92 07/17/2025
10.0.0-preview.5.25277.114 127 06/08/2025
10.0.0-preview.4.25258.110 106 05/15/2025
10.0.0-preview.3.25171.5 106 04/12/2025
10.0.0-preview.2.25163.2 117 04/01/2025
10.0.0-preview.1.25080.5 110 04/01/2025
9.0.19 4 08/12/2026
9.0.18 11 07/15/2026
9.0.17 15 06/10/2026
9.0.16 23 05/13/2026
9.0.15 26 04/14/2026
9.0.14 37 03/12/2026
9.0.13 41 02/14/2026
9.0.12 45 01/13/2026
9.0.11 67 11/14/2025
9.0.10 74 10/15/2025
9.0.9 84 09/09/2025
9.0.8 111 08/05/2025
9.0.7 99 07/09/2025
9.0.6 88 06/12/2025
9.0.5 109 05/15/2025
9.0.4 108 04/09/2025
9.0.3 117 04/01/2025
9.0.2 124 04/01/2025
9.0.1 118 04/01/2025
9.0.0 123 11/14/2024
9.0.0-rc.2.24473.5 109 10/19/2024
9.0.0-rc.1.24431.7 113 10/21/2024
9.0.0-preview.7.24405.7 111 08/19/2024
9.0.0-preview.6.24327.7 145 07/18/2024
9.0.0-preview.5.24306.7 137 07/18/2024
9.0.0-preview.4.24266.19 137 07/18/2024
9.0.0-preview.3.24172.9 148 07/18/2024
9.0.0-preview.2.24128.5 140 07/18/2024
9.0.0-preview.1.24080.9 130 07/18/2024
8.0.0 142 07/18/2024
8.0.0-rc.2.23479.6 138 07/18/2024
8.0.0-rc.1.23419.4 131 07/18/2024
8.0.0-preview.7.23375.6 144 07/18/2024
8.0.0-preview.6.23329.7 126 07/18/2024
8.0.0-preview.5.23280.8 144 07/18/2024
8.0.0-preview.4.23259.5 133 07/18/2024
8.0.0-preview.3.23174.8 131 07/18/2024
8.0.0-preview.2.23128.3 138 07/18/2024
8.0.0-preview.1.23110.8 141 07/18/2024
7.0.0 480 02/05/2024
7.0.0-rc.2.22472.3 135 07/18/2024
7.0.0-rc.1.22426.10 135 07/18/2024
7.0.0-preview.7.22375.6 139 07/18/2024
7.0.0-preview.6.22324.4 132 07/18/2024
7.0.0-preview.5.22301.12 139 07/18/2024
7.0.0-preview.4.22229.4 141 07/18/2024
7.0.0-preview.3.22175.4 130 07/18/2024
7.0.0-preview.2.22152.2 144 07/18/2024
7.0.0-preview.1.22076.8 125 07/18/2024
6.0.2-mauipre.1.22102.15 117 04/29/2025
6.0.0 242 02/04/2024
6.0.0-rc.2.21480.5 140 07/18/2024
6.0.0-rc.1.21451.13 156 07/18/2024
6.0.0-preview.7.21377.19 142 07/18/2024
6.0.0-preview.6.21352.12 128 07/18/2024
6.0.0-preview.5.21301.5 128 07/18/2024
6.0.0-preview.4.21253.7 148 07/18/2024
6.0.0-preview.3.21201.4 129 07/18/2024
6.0.0-preview.2.21154.6 137 07/18/2024
6.0.0-preview.1.21102.12 145 07/18/2024
5.0.1 144 07/18/2024
5.0.0 143 07/18/2024
5.0.0-rc.2.20475.5 133 07/18/2024
5.0.0-rc.1.20451.14 138 07/18/2024
5.0.0-preview.8.20407.11 134 07/18/2024
5.0.0-preview.7.20364.11 131 07/18/2024
5.0.0-preview.6.20305.6 135 07/18/2024
5.0.0-preview.5.20278.1 139 07/18/2024
5.0.0-preview.4.20251.6 146 07/18/2024
5.0.0-preview.3.20214.6 149 07/18/2024
5.0.0-preview.2.20160.6 141 07/18/2024
5.0.0-preview.1.20120.5 128 07/18/2024
1.4.1 144 07/18/2024
1.4.0 143 07/18/2024
1.4.0-preview3.19551.4 131 07/18/2024
1.4.0-preview2.19523.17 131 07/18/2024
1.4.0-preview1.19504.10 146 07/18/2024
1.3.0 133 07/18/2024
1.3.0-rc1.19456.4 127 07/18/2024
1.3.0-preview9.19421.4 144 07/18/2024
1.3.0-preview9.19416.11 131 07/18/2024
1.3.0-preview8.19405.3 131 07/18/2024
1.3.0-preview7.19362.9 137 07/18/2024
1.3.0-preview6.19303.8 142 07/18/2024
1.3.0-preview6.19264.9 128 07/18/2024
1.3.0-preview5.19224.8 129 07/18/2024
1.3.0-preview4.19212.13 141 07/18/2024
1.3.0-preview3.19128.7 133 07/18/2024
1.3.0-preview.19073.11 141 07/18/2024
1.3.0-preview.18571.3 131 07/18/2024
1.2.0 147 07/18/2024
1.2.0-rc1 146 07/18/2024
1.2.0-preview2-26406-04 132 07/18/2024
1.2.0-preview1-26216-02 128 07/18/2024
1.1.0 146 07/18/2024
1.1.0-preview2-25405-01 133 07/18/2024
1.1.0-preview1-25305-02 139 07/18/2024
1.0.31 179 02/04/2024
1.0.31-preview1-24530-04 135 07/18/2024