System.Composition.Runtime 9.0.0-rc.2.24473.5

About

System.Composition.Runtime 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 enables the discovery and composition of parts in applications using MEF 2.0. It offers the runtime implementation needed for managing composable parts, resolving dependencies, and dynamically wiring components together.

Key Features

  • Facilitates runtime discovery and composition of parts.

How to Use

Resolve dependencies on the fly and can be useful for dynamically loaded components or plugins.

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

var configuration = new ContainerConfiguration()
    .WithPart<Service>();

using CompositionHost container = configuration.CreateContainer();
 
var consumer = new Consumer(container);
consumer.Execute();
// Service is running.

public interface IService
{
    void Run();
}

[Export(typeof(IService))]
public class Service : IService
{
    public void Run() => Console.WriteLine("Service is running.");
}

public class Consumer(CompositionContext context)
{
    public void Execute()
    {
        // Use the context to resolve the service
        var service = context.GetExport<IService>();
        service.Run();
    }
}

Main Types

The main type provided by this library is:

  • System.Composition.CompositionContext

Additional Documentation

Feedback & Contributing

System.Composition.Runtime 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.Runtime.

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.Hosting
Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts. Commonly Used Types: System.Composition.Hosting.CompositionHost When using NuGet 3.x this package requires at least version 3.4.
5,108
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration When using NuGet 3.x this package requires at least version 3.4.
5,101
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
838
System.Composition.Hosting
Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts. Commonly Used Types: System.Composition.Hosting.CompositionHost
832
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
828
System.Composition.Hosting
Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts. Commonly Used Types: System.Composition.Hosting.CompositionHost
777
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
772
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
770
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration When using NuGet 3.x this package requires at least version 3.4.
17
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration 8321c729934c0f8be754953439b88e6e1c120c24 When using NuGet 3.x this package requires at least version 3.4.
16
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
16
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.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration 029cf57733b7ec6c1dd8a13857e800b9a8d97192 When using NuGet 3.x this package requires at least version 3.4.
15
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration When using NuGet 3.x this package requires at least version 3.4.
15
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
15
System.Composition.Hosting
Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts. Commonly Used Types: System.Composition.Hosting.CompositionHost
14
System.Composition.Hosting
Provides Managed Extensibility Framework types that are useful to developers of extensible applications, or hosts. Commonly Used Types: System.Composition.Hosting.CompositionHost When using NuGet 3.x this package requires at least version 3.4.
14
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

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

.NET Framework 4.6.2

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

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