System.Composition.Runtime 10.0.2

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 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
413
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
116
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
120
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
126
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
202
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.
123
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.
127
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
114
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
198
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
405
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 30ab651fcb4354552bd4891619a0bdd81e0ebdbf When using NuGet 3.x this package requires at least version 3.4.
121
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.
115
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.
119
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.
125
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
194
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
379
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.
119
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.
116
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.
128

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 10.0

  • No dependencies.

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
10.0.2 6 01/13/2026
10.0.1 14 12/10/2025
10.0.0 35 11/12/2025
10.0.0-rc.2.25502.107 54 10/15/2025
10.0.0-rc.1.25451.107 46 09/09/2025
10.0.0-preview.7.25380.108 50 08/13/2025
10.0.0-preview.6.25358.103 63 07/16/2025
10.0.0-preview.5.25277.114 69 06/08/2025
10.0.0-preview.4.25258.110 73 05/13/2025
10.0.0-preview.3.25171.5 84 04/14/2025
10.0.0-preview.2.25163.2 72 04/02/2025
10.0.0-preview.1.25080.5 70 04/02/2025
9.0.12 9 01/13/2026
9.0.11 37 11/12/2025
9.0.10 43 10/15/2025
9.0.9 54 09/09/2025
9.0.8 52 08/05/2025
9.0.7 60 07/09/2025
9.0.6 62 06/12/2025
9.0.5 71 05/13/2025
9.0.4 85 04/09/2025
9.0.3 73 03/31/2025
9.0.2 86 04/02/2025
9.0.1 77 03/31/2025
9.0.0 92 11/14/2024
9.0.0-rc.2.24473.5 77 10/14/2024
9.0.0-rc.1.24431.7 81 09/19/2024
9.0.0-preview.7.24405.7 75 08/19/2024
9.0.0-preview.6.24327.7 96 07/18/2024
9.0.0-preview.5.24306.7 102 07/18/2024
9.0.0-preview.4.24266.19 91 07/18/2024
9.0.0-preview.3.24172.9 91 07/18/2024
9.0.0-preview.2.24128.5 97 07/18/2024
9.0.0-preview.1.24080.9 118 07/18/2024
8.0.0 98 07/18/2024
8.0.0-rc.2.23479.6 106 07/18/2024
8.0.0-rc.1.23419.4 104 07/18/2024
8.0.0-preview.7.23375.6 114 07/18/2024
8.0.0-preview.6.23329.7 101 07/18/2024
8.0.0-preview.5.23280.8 102 07/18/2024
8.0.0-preview.4.23259.5 97 07/18/2024
8.0.0-preview.3.23174.8 100 07/18/2024
8.0.0-preview.2.23128.3 115 07/18/2024
8.0.0-preview.1.23110.8 109 07/18/2024
7.0.0 340 02/05/2024
7.0.0-rc.2.22472.3 98 07/18/2024
7.0.0-rc.1.22426.10 108 07/18/2024
7.0.0-preview.7.22375.6 109 07/18/2024
7.0.0-preview.6.22324.4 110 07/18/2024
7.0.0-preview.5.22301.12 109 07/18/2024
7.0.0-preview.4.22229.4 103 07/18/2024
7.0.0-preview.3.22175.4 115 07/18/2024
7.0.0-preview.2.22152.2 99 07/18/2024
7.0.0-preview.1.22076.8 94 07/18/2024
6.0.2-mauipre.1.22054.8 64 06/07/2025
6.0.0 213 02/04/2024
6.0.0-rc.2.21480.5 107 07/18/2024
6.0.0-rc.1.21451.13 94 07/18/2024
6.0.0-preview.7.21377.19 102 07/18/2024
6.0.0-preview.6.21352.12 90 07/18/2024
6.0.0-preview.5.21301.5 90 07/18/2024
6.0.0-preview.4.21253.7 94 07/18/2024
6.0.0-preview.3.21201.4 97 07/18/2024
6.0.0-preview.2.21154.6 98 07/18/2024
6.0.0-preview.1.21102.12 106 07/18/2024
5.0.1 109 07/18/2024
5.0.0 95 07/18/2024
5.0.0-rc.2.20475.5 107 07/18/2024
5.0.0-rc.1.20451.14 97 07/18/2024
5.0.0-preview.8.20407.11 115 07/18/2024
5.0.0-preview.7.20364.11 94 07/18/2024
5.0.0-preview.6.20305.6 94 07/18/2024
5.0.0-preview.5.20278.1 96 07/18/2024
5.0.0-preview.4.20251.6 103 07/18/2024
5.0.0-preview.3.20214.6 107 07/18/2024
5.0.0-preview.2.20160.6 111 07/18/2024
5.0.0-preview.1.20120.5 101 07/18/2024
1.4.1 105 07/18/2024
1.4.0 100 07/18/2024
1.4.0-preview3.19551.4 100 07/18/2024
1.4.0-preview2.19523.17 100 07/18/2024
1.4.0-preview1.19504.10 93 07/18/2024
1.3.0 107 07/18/2024
1.3.0-rc1.19456.4 97 07/18/2024
1.3.0-preview9.19421.4 103 07/18/2024
1.3.0-preview9.19416.11 106 07/18/2024
1.3.0-preview8.19405.3 109 07/18/2024
1.3.0-preview7.19362.9 92 07/18/2024
1.3.0-preview6.19303.8 107 07/18/2024
1.3.0-preview6.19264.9 92 07/18/2024
1.3.0-preview5.19224.8 108 07/18/2024
1.3.0-preview4.19212.13 105 07/18/2024
1.3.0-preview3.19128.7 95 07/18/2024
1.3.0-preview.19073.11 118 07/18/2024
1.3.0-preview.18571.3 105 07/18/2024
1.2.0 102 07/18/2024
1.2.0-rc1 93 07/18/2024
1.2.0-preview2-26406-04 109 07/18/2024
1.2.0-preview1-26216-02 96 07/18/2024
1.1.0 112 07/18/2024
1.1.0-preview2-25405-01 94 07/18/2024
1.1.0-preview1-25305-02 106 07/18/2024
1.0.31 151 02/04/2024
1.0.31-preview1-24530-04 89 07/18/2024