System.Composition.Runtime 9.0.0

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
Microsoft.VisualStudio.Imaging
A member of the Visual Studio SDK
11
Microsoft.VisualStudio.SDK
Visual Studio SDK meta-package. Reference this to get references to most other Visual Studio extensibility packages.
15
Microsoft.VisualStudio.Utilities
A member of the Visual Studio SDK
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
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.
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.
45
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
11
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.
13
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.
37
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
11
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
12
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
13
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration
20
System.Composition.TypedParts
Provides some extension methods for the Managed Extensibility Framework. Commonly Used Types: System.Composition.CompositionContextExtensions System.Composition.Hosting.ContainerConfiguration 00490982c7952e96a1089818467caa6fd07541b2 When using NuGet 3.x this package requires at least version 3.4.
12
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.
11
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.
11
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.
12
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.
39

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 4 11/23/2024
9.0.0-rc.2.24473.5 3 11/27/2024
9.0.0-rc.1.24431.7 5 12/10/2024
9.0.0-preview.7.24405.7 3 11/16/2024
9.0.0-preview.6.24327.7 4 12/02/2024
9.0.0-preview.5.24306.7 3 12/07/2024
9.0.0-preview.4.24266.19 3 12/02/2024
9.0.0-preview.3.24172.9 5 05/25/2024
9.0.0-preview.2.24128.5 4 05/25/2024
9.0.0-preview.1.24080.9 7 05/25/2024
8.0.0 8 05/25/2024
8.0.0-rc.2.23479.6 4 05/25/2024
8.0.0-rc.1.23419.4 5 05/25/2024
8.0.0-preview.7.23375.6 8 05/25/2024
8.0.0-preview.6.23329.7 4 05/25/2024
8.0.0-preview.5.23280.8 6 05/25/2024
8.0.0-preview.4.23259.5 6 05/25/2024
8.0.0-preview.3.23174.8 8 05/25/2024
8.0.0-preview.2.23128.3 6 05/25/2024
8.0.0-preview.1.23110.8 5 05/25/2024
7.0.0 6 12/18/2023
7.0.0-rc.2.22472.3 7 05/25/2024
7.0.0-rc.1.22426.10 7 05/25/2024
7.0.0-preview.7.22375.6 4 05/25/2024
7.0.0-preview.6.22324.4 6 05/25/2024
7.0.0-preview.5.22301.12 6 05/25/2024
7.0.0-preview.4.22229.4 7 05/25/2024
7.0.0-preview.3.22175.4 3 05/25/2024
7.0.0-preview.2.22152.2 7 05/25/2024
7.0.0-preview.1.22076.8 5 05/25/2024
6.0.2-mauipre.1.22102.15 5 05/25/2024
6.0.2-mauipre.1.22054.8 4 05/25/2024
6.0.0 12 02/01/2023
6.0.0-rc.2.21480.5 5 05/25/2024
6.0.0-rc.1.21451.13 6 05/25/2024
6.0.0-preview.7.21377.19 5 05/25/2024
6.0.0-preview.6.21352.12 6 05/25/2024
6.0.0-preview.5.21301.5 5 05/25/2024
6.0.0-preview.4.21253.7 4 05/25/2024
6.0.0-preview.3.21201.4 6 05/25/2024
6.0.0-preview.2.21154.6 7 05/25/2024
6.0.0-preview.1.21102.12 2 05/25/2024
5.0.1 5 05/25/2024
5.0.0 7 05/25/2024
5.0.0-rc.2.20475.5 7 05/25/2024
5.0.0-rc.1.20451.14 8 05/25/2024
5.0.0-preview.8.20407.11 8 05/25/2024
5.0.0-preview.7.20364.11 7 05/25/2024
5.0.0-preview.6.20305.6 6 05/25/2024
5.0.0-preview.5.20278.1 5 05/25/2024
5.0.0-preview.4.20251.6 7 05/25/2024
5.0.0-preview.3.20214.6 5 05/25/2024
5.0.0-preview.2.20160.6 4 05/25/2024
5.0.0-preview.1.20120.5 6 05/25/2024
1.4.1 7 05/25/2024
1.4.0 5 05/25/2024
1.4.0-preview3.19551.4 8 05/25/2024
1.4.0-preview2.19523.17 4 05/25/2024
1.4.0-preview1.19504.10 4 05/25/2024
1.3.0 6 05/25/2024
1.3.0-rc1.19456.4 8 05/25/2024
1.3.0-preview9.19421.4 5 05/25/2024
1.3.0-preview9.19416.11 7 05/25/2024
1.3.0-preview8.19405.3 7 05/25/2024
1.3.0-preview7.19362.9 4 05/25/2024
1.3.0-preview6.19303.8 6 05/25/2024
1.3.0-preview6.19264.9 8 05/25/2024
1.3.0-preview5.19224.8 4 05/25/2024
1.3.0-preview4.19212.13 4 05/25/2024
1.3.0-preview3.19128.7 5 05/25/2024
1.3.0-preview.19073.11 5 05/25/2024
1.3.0-preview.18571.3 3 05/25/2024
1.2.0 7 05/25/2024
1.2.0-rc1 4 05/25/2024
1.2.0-preview2-26406-04 7 05/25/2024
1.2.0-preview1-26216-02 6 05/25/2024
1.1.0 4 05/25/2024
1.1.0-preview2-25405-01 6 05/25/2024
1.1.0-preview1-25305-02 6 05/25/2024
1.0.31 42 05/09/2022
1.0.31-preview1-24530-04 8 05/25/2024