System.Composition.Convention 11.0.0-preview.2.26159.112

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 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.
128
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.
125
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
117
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
115
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.
114
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.
113
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 00490982c7952e96a1089818467caa6fd07541b2 When using NuGet 3.x this package requires at least version 3.4.
113
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
113
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.
111
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
111
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
110
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.
110
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
110
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.
108
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.
107
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
107
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.
107
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.
106

.NET Framework 4.6.2

.NET 10.0

.NET 11.0

.NET Standard 2.0

Version Downloads Last updated
11.0.0-preview.2.26159.112 2 3/11/2026
11.0.0-preview.1.26104.118 5 2/14/2026
10.0.5 1 3/15/2026
10.0.4 2 3/11/2026
10.0.3 3 2/14/2026
10.0.2 5 1/17/2026
10.0.1 13 12/13/2025
10.0.0 32 11/11/2025
10.0.0-rc.2.25502.107 59 10/15/2025
10.0.0-rc.1.25451.107 48 9/10/2025
10.0.0-preview.7.25380.108 56 8/13/2025
10.0.0-preview.6.25358.103 53 7/16/2025
10.0.0-preview.5.25277.114 82 6/8/2025
10.0.0-preview.4.25258.110 65 5/15/2025
10.0.0-preview.3.25171.5 58 4/11/2025
10.0.0-preview.2.25163.2 67 3/27/2025
10.0.0-preview.1.25080.5 75 2/27/2025
9.0.14 3 3/11/2026
9.0.13 3 2/14/2026
9.0.12 6 1/19/2026
9.0.11 29 11/11/2025
9.0.10 45 10/15/2025
9.0.9 40 9/10/2025
9.0.8 58 8/5/2025
9.0.7 71 7/15/2025
9.0.6 61 6/14/2025
9.0.5 72 5/14/2025
9.0.4 85 4/11/2025
9.0.3 89 3/18/2025
9.0.2 87 2/17/2025
9.0.1 98 1/19/2025
9.0.0 100 11/22/2024
9.0.0-rc.2.24473.5 80 10/23/2024
9.0.0-rc.1.24431.7 92 9/12/2024
9.0.0-preview.7.24405.7 114 8/15/2024
9.0.0-preview.6.24327.7 94 7/11/2024
9.0.0-preview.5.24306.7 88 6/15/2024
9.0.0-preview.4.24266.19 97 5/28/2024
9.0.0-preview.3.24172.9 88 4/13/2024
9.0.0-preview.2.24128.5 97 3/29/2024
9.0.0-preview.1.24080.9 85 2/23/2024
8.0.0 102 11/15/2023
8.0.0-rc.2.23479.6 87 10/28/2023
8.0.0-rc.1.23419.4 103 9/15/2023
8.0.0-preview.7.23375.6 105 8/24/2023
8.0.0-preview.6.23329.7 90 8/4/2023
8.0.0-preview.5.23280.8 96 8/4/2023
8.0.0-preview.4.23259.5 101 5/18/2023
8.0.0-preview.3.23174.8 115 5/20/2023
8.0.0-preview.2.23128.3 102 3/16/2023
8.0.0-preview.1.23110.8 92 2/26/2023
7.0.0 124 12/7/2022
7.0.0-rc.2.22472.3 120 10/13/2022
7.0.0-rc.1.22426.10 102 9/18/2022
7.0.0-preview.7.22375.6 116 9/18/2022
7.0.0-preview.6.22324.4 119 9/18/2022
7.0.0-preview.5.22301.12 111 6/30/2022
7.0.0-preview.4.22229.4 103 7/1/2022
7.0.0-preview.3.22175.4 107 7/1/2022
7.0.0-preview.2.22152.2 115 7/1/2022
7.0.0-preview.1.22076.8 120 7/1/2022
6.0.2-mauipre.1.22102.15 104 7/1/2022
6.0.2-mauipre.1.22054.8 105 7/1/2022
6.0.0 118 7/1/2022
6.0.0-rc.2.21480.5 111 7/1/2022
6.0.0-rc.1.21451.13 109 7/1/2022
6.0.0-preview.7.21377.19 100 7/1/2022
6.0.0-preview.6.21352.12 128 7/1/2022
6.0.0-preview.5.21301.5 109 7/1/2022
6.0.0-preview.4.21253.7 110 7/1/2022
6.0.0-preview.3.21201.4 102 7/1/2022
6.0.0-preview.2.21154.6 93 7/1/2022
6.0.0-preview.1.21102.12 101 7/1/2022
5.0.1 115 7/1/2022
5.0.0 107 7/1/2022
5.0.0-rc.2.20475.5 102 7/1/2022
5.0.0-rc.1.20451.14 86 7/1/2022
5.0.0-preview.8.20407.11 99 7/1/2022
5.0.0-preview.7.20364.11 89 7/1/2022
5.0.0-preview.6.20305.6 104 7/1/2022
5.0.0-preview.5.20278.1 95 7/1/2022
5.0.0-preview.4.20251.6 107 7/1/2022
5.0.0-preview.3.20214.6 102 7/1/2022
5.0.0-preview.2.20160.6 94 7/1/2022
5.0.0-preview.1.20120.5 107 7/1/2022
1.4.1 103 7/1/2022
1.4.0 120 7/1/2022
1.4.0-preview3.19551.4 101 7/1/2022
1.4.0-preview2.19523.17 99 7/1/2022
1.4.0-preview1.19504.10 94 7/1/2022
1.3.0 117 7/1/2022
1.3.0-rc1.19456.4 93 7/1/2022
1.3.0-preview9.19421.4 86 7/1/2022
1.3.0-preview9.19416.11 132 7/1/2022
1.3.0-preview8.19405.3 94 7/1/2022
1.3.0-preview7.19362.9 105 7/1/2022
1.3.0-preview6.19303.8 109 7/1/2022
1.3.0-preview6.19264.9 109 7/1/2022
1.3.0-preview5.19224.8 101 7/1/2022
1.3.0-preview4.19212.13 105 7/1/2022
1.3.0-preview3.19128.7 104 7/1/2022
1.3.0-preview.19073.11 101 7/1/2022
1.3.0-preview.18571.3 104 7/1/2022
1.2.0 108 7/1/2022
1.2.0-rc1 114 7/1/2022
1.2.0-preview2-26406-04 102 7/1/2022
1.2.0-preview1-26216-02 98 7/1/2022
1.1.0 118 7/1/2022
1.1.0-preview2-25405-01 97 7/1/2022
1.1.0-preview1-25305-02 100 7/1/2022
1.0.31 125 7/1/2022
1.0.31-preview1-24530-04 98 7/1/2022