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 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
54
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
55
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
85
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
61
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
63
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
66
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
68
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 7e3dbdb95b30650eabade0ac73a10b22d4dbe8b3 When using NuGet 3.x this package requires at least version 3.4.
56
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 8321c729934c0f8be754953439b88e6e1c120c24 When using NuGet 3.x this package requires at least version 3.4.
67
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 af7d2ae49c79bb279625de4e92f7f91f9fe94f5d When using NuGet 3.x this package requires at least version 3.4.
57
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.
54
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.
58
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.
62
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.
63
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.
70
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.
74
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.
89

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 5 10/09/2024
9.0.0-rc.1.24431.7 7 09/12/2024
9.0.0-preview.7.24405.7 9 08/14/2024
9.0.0-preview.6.24327.7 8 07/10/2024
9.0.0-preview.5.24306.7 8 06/16/2024
9.0.0-preview.4.24266.19 12 05/23/2024
9.0.0-preview.3.24172.9 8 04/17/2024
9.0.0-preview.2.24128.5 6 03/14/2024
9.0.0-preview.1.24080.9 17 02/26/2024
8.0.0 8 11/15/2023
8.0.0-rc.2.23479.6 10 10/19/2023
8.0.0-rc.1.23419.4 21 09/17/2023
8.0.0-preview.7.23375.6 18 09/17/2023
8.0.0-preview.6.23329.7 14 09/17/2023
8.0.0-preview.5.23280.8 16 06/13/2023
8.0.0-preview.4.23259.5 29 05/20/2023
8.0.0-preview.3.23174.8 41 05/14/2023
8.0.0-preview.2.23128.3 23 04/07/2023
8.0.0-preview.1.23110.8 27 04/09/2023
7.0.0 43 04/09/2023
7.0.0-rc.2.22472.3 32 10/15/2022
7.0.0-rc.1.22426.10 30 09/21/2022
7.0.0-preview.7.22375.6 14 09/22/2022
7.0.0-preview.6.22324.4 37 09/24/2022
7.0.0-preview.5.22301.12 34 09/22/2022
7.0.0-preview.4.22229.4 30 09/23/2022
7.0.0-preview.3.22175.4 53 09/22/2022
7.0.0-preview.2.22152.2 41 09/23/2022
7.0.0-preview.1.22076.8 32 09/21/2022
6.0.2-mauipre.1.22102.15 31 09/22/2022
6.0.2-mauipre.1.22054.8 17 09/24/2022
6.0.0 36 09/26/2022
6.0.0-rc.2.21480.5 35 09/21/2022
6.0.0-rc.1.21451.13 27 09/21/2022
6.0.0-preview.7.21377.19 26 09/22/2022
6.0.0-preview.6.21352.12 32 09/21/2022
6.0.0-preview.5.21301.5 38 09/23/2022
6.0.0-preview.4.21253.7 28 09/23/2022
6.0.0-preview.3.21201.4 43 09/23/2022
6.0.0-preview.2.21154.6 21 09/22/2022
6.0.0-preview.1.21102.12 32 09/22/2022
5.0.1 31 09/22/2022
5.0.0 53 09/21/2022
5.0.0-rc.2.20475.5 28 09/24/2022
5.0.0-rc.1.20451.14 26 09/22/2022
5.0.0-preview.8.20407.11 35 09/21/2022
5.0.0-preview.7.20364.11 19 09/21/2022
5.0.0-preview.6.20305.6 20 09/22/2022
5.0.0-preview.5.20278.1 42 09/22/2022
5.0.0-preview.4.20251.6 47 09/21/2022
5.0.0-preview.3.20214.6 40 09/22/2022
5.0.0-preview.2.20160.6 46 09/22/2022
5.0.0-preview.1.20120.5 29 09/24/2022
1.4.1 53 09/23/2022
1.4.0 37 09/23/2022
1.4.0-preview3.19551.4 31 09/22/2022
1.4.0-preview2.19523.17 31 09/24/2022
1.4.0-preview1.19504.10 33 09/22/2022
1.3.0 25 09/23/2022
1.3.0-rc1.19456.4 19 09/23/2022
1.3.0-preview9.19421.4 28 09/22/2022
1.3.0-preview9.19416.11 34 09/22/2022
1.3.0-preview8.19405.3 40 09/21/2022
1.3.0-preview7.19362.9 35 09/22/2022
1.3.0-preview6.19303.8 35 09/22/2022
1.3.0-preview6.19264.9 25 09/22/2022
1.3.0-preview5.19224.8 16 09/21/2022
1.3.0-preview4.19212.13 58 09/23/2022
1.3.0-preview3.19128.7 39 09/25/2022
1.3.0-preview.19073.11 24 09/23/2022
1.3.0-preview.18571.3 22 09/21/2022
1.2.0 26 09/26/2022
1.2.0-rc1 57 09/21/2022
1.2.0-preview2-26406-04 26 09/23/2022
1.2.0-preview1-26216-02 22 09/23/2022
1.1.0 40 09/22/2022
1.1.0-preview2-25405-01 28 09/22/2022
1.1.0-preview1-25305-02 14 09/21/2022
1.0.31 23 06/27/2022
1.0.31-preview1-24530-04 34 09/25/2022