System.Composition.Convention 9.0.0-rc.2.24473.5

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.
5,138
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
853
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
780
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
15
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
14
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.
13
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
13
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
13
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.
12
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
12
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
12
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
11
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
11
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.
11

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

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET Standard 2.0

Version Downloads Last updated
9.0.0-rc.2.24473.5 3 10/15/2024
9.0.0-rc.1.24431.7 4 09/12/2024
9.0.0-preview.7.24405.7 6 08/17/2024
9.0.0-preview.6.24327.7 9 07/11/2024
9.0.0-preview.5.24306.7 12 06/19/2024
9.0.0-preview.4.24266.19 8 05/26/2024
9.0.0-preview.3.24172.9 9 04/12/2024
9.0.0-preview.2.24128.5 11 03/17/2024
9.0.0-preview.1.24080.9 11 02/25/2024
8.0.0 11 01/04/2024
8.0.0-rc.2.23479.6 9 11/15/2023
8.0.0-rc.1.23419.4 10 09/29/2023
8.0.0-preview.7.23375.6 8 10/09/2023
8.0.0-preview.6.23329.7 16 08/01/2023
8.0.0-preview.5.23280.8 13 10/03/2023
8.0.0-preview.4.23259.5 8 06/24/2023
8.0.0-preview.3.23174.8 9 06/12/2023
8.0.0-preview.2.23128.3 10 10/10/2023
8.0.0-preview.1.23110.8 11 06/24/2023
7.0.0 774 08/19/2023
7.0.0-rc.2.22472.3 10 11/10/2023
7.0.0-rc.1.22426.10 9 11/20/2023
7.0.0-preview.7.22375.6 8 10/05/2023
7.0.0-preview.6.22324.4 11 10/02/2023
7.0.0-preview.5.22301.12 11 08/18/2023
7.0.0-preview.4.22229.4 9 11/12/2023
7.0.0-preview.3.22175.4 13 10/15/2023
7.0.0-preview.2.22152.2 11 06/23/2023
7.0.0-preview.1.22076.8 9 07/09/2023
6.0.2-mauipre.1.22102.15 8 06/12/2023
6.0.2-mauipre.1.22054.8 7 10/07/2023
6.0.0 850 11/24/2023
6.0.0-rc.2.21480.5 10 10/04/2023
6.0.0-rc.1.21451.13 8 10/20/2023
6.0.0-preview.7.21377.19 8 06/12/2023
6.0.0-preview.6.21352.12 12 07/05/2023
6.0.0-preview.5.21301.5 11 07/26/2023
6.0.0-preview.4.21253.7 10 10/03/2023
6.0.0-preview.3.21201.4 9 07/09/2023
6.0.0-preview.2.21154.6 7 09/18/2023
6.0.0-preview.1.21102.12 11 06/22/2023
5.0.1 10 11/24/2023
5.0.0 12 06/23/2023
5.0.0-rc.2.20475.5 9 07/10/2023
5.0.0-rc.1.20451.14 11 06/22/2023
5.0.0-preview.8.20407.11 10 11/20/2023
5.0.0-preview.7.20364.11 10 08/20/2023
5.0.0-preview.6.20305.6 10 11/12/2023
5.0.0-preview.5.20278.1 15 11/02/2023
5.0.0-preview.4.20251.6 11 06/13/2023
5.0.0-preview.3.20214.6 12 06/13/2023
5.0.0-preview.2.20160.6 11 11/12/2023
5.0.0-preview.1.20120.5 10 11/12/2023
1.4.1 11 06/12/2023
1.4.0 13 06/24/2023
1.4.0-preview3.19551.4 12 07/08/2023
1.4.0-preview2.19523.17 10 06/24/2023
1.4.0-preview1.19504.10 9 11/19/2023
1.3.0 9 09/18/2023
1.3.0-rc1.19456.4 13 07/09/2023
1.3.0-preview9.19421.4 9 06/23/2023
1.3.0-preview9.19416.11 11 11/20/2023
1.3.0-preview8.19405.3 11 06/13/2023
1.3.0-preview7.19362.9 9 10/09/2023
1.3.0-preview6.19303.8 11 09/23/2023
1.3.0-preview6.19264.9 9 10/08/2023
1.3.0-preview5.19224.8 11 11/11/2023
1.3.0-preview4.19212.13 9 10/12/2023
1.3.0-preview3.19128.7 11 10/08/2023
1.3.0-preview.19073.11 12 10/20/2023
1.3.0-preview.18571.3 14 12/04/2023
1.2.0 12 10/03/2023
1.2.0-rc1 9 10/05/2023
1.2.0-preview2-26406-04 9 10/17/2023
1.2.0-preview1-26216-02 6 10/17/2023
1.1.0 11 11/25/2023
1.1.0-preview2-25405-01 11 10/17/2023
1.1.0-preview1-25305-02 8 10/17/2023
1.0.31 5,121 12/16/2020
1.0.31-preview1-24530-04 10 10/20/2023