System.Composition.Runtime 9.0.0

Prefix Reserved
dotnet add package System.Composition.Runtime --version 9.0.0                
NuGet\Install-Package System.Composition.Runtime -Version 9.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.Composition.Runtime" Version="9.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Composition.Runtime --version 9.0.0                
#r "nuget: System.Composition.Runtime, 9.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.Composition.Runtime as a Cake Addin
#addin nuget:?package=System.Composition.Runtime&version=9.0.0

// Install System.Composition.Runtime as a Cake Tool
#tool nuget:?package=System.Composition.Runtime&version=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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (36)

Showing the top 5 NuGet packages that depend on System.Composition.Runtime:

Package Downloads
System.Composition.Hosting

Provides Managed Extensibility Framework (MEF) types that are useful to developers of extensible applications, or hosts.

System.Composition.TypedParts

Provides container configuration and some extension methods for the Managed Extensibility Framework (MEF).

System.Composition

Provides a version of the Managed Extensibility Framework (MEF) that is lightweight and specifically optimized for high throughput scenarios, such as the web.

Microsoft.VisualStudio.Utilities

A member of the Visual Studio SDK

Microsoft.VisualStudio.Shell.Framework

A member of the Visual Studio SDK

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on System.Composition.Runtime:

Repository Stars
neuecc/Utf8Json
Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).
Version Downloads Last updated
9.0.0 4,934 11/12/2024
9.0.0-rc.2.24473.5 780 10/8/2024
9.0.0-rc.1.24431.7 787 9/10/2024
9.0.0-preview.7.24405.7 669 8/13/2024
9.0.0-preview.6.24327.7 654 7/9/2024
9.0.0-preview.5.24306.7 413 6/11/2024
9.0.0-preview.4.24266.19 384 5/21/2024
9.0.0-preview.3.24172.9 665 4/11/2024
9.0.0-preview.2.24128.5 619 3/12/2024
9.0.0-preview.1.24080.9 8,459 2/13/2024
8.0.0 5,802,570 11/14/2023
8.0.0-rc.2.23479.6 3,639 10/10/2023
8.0.0-rc.1.23419.4 1,121 9/12/2023
8.0.0-preview.7.23375.6 1,090 8/8/2023
8.0.0-preview.6.23329.7 907 7/11/2023
8.0.0-preview.5.23280.8 718 6/13/2023
8.0.0-preview.4.23259.5 1,057 5/16/2023
8.0.0-preview.3.23174.8 1,027 4/11/2023
8.0.0-preview.2.23128.3 980 3/14/2023
8.0.0-preview.1.23110.8 655 2/21/2023
7.0.0 20,783,166 11/7/2022
7.0.0-rc.2.22472.3 795 10/11/2022
7.0.0-rc.1.22426.10 475 9/14/2022
7.0.0-preview.7.22375.6 468 8/9/2022
7.0.0-preview.6.22324.4 590 7/12/2022
7.0.0-preview.5.22301.12 3,220 6/14/2022
7.0.0-preview.4.22229.4 701 5/10/2022
7.0.0-preview.3.22175.4 769 4/13/2022
7.0.0-preview.2.22152.2 552 3/14/2022
7.0.0-preview.1.22076.8 412 2/17/2022
6.0.0 75,381,936 11/8/2021
6.0.0-rc.2.21480.5 897 10/12/2021
6.0.0-rc.1.21451.13 979 9/14/2021
6.0.0-preview.7.21377.19 2,660 8/10/2021
6.0.0-preview.6.21352.12 1,725 7/14/2021
6.0.0-preview.5.21301.5 424 6/15/2021
6.0.0-preview.4.21253.7 483 5/24/2021
6.0.0-preview.3.21201.4 672 4/8/2021
6.0.0-preview.2.21154.6 2,370 3/11/2021
6.0.0-preview.1.21102.12 1,092 2/12/2021
5.0.1 927,933 1/12/2021 5.0.1 is deprecated because it is no longer maintained.
5.0.0 642,075 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 12,867 10/13/2020
5.0.0-rc.1.20451.14 837 9/14/2020
5.0.0-preview.8.20407.11 1,062 8/25/2020
5.0.0-preview.7.20364.11 725 7/21/2020
5.0.0-preview.6.20305.6 2,076 6/25/2020
5.0.0-preview.5.20278.1 727 6/10/2020
5.0.0-preview.4.20251.6 773 5/18/2020
5.0.0-preview.3.20214.6 631 4/23/2020
5.0.0-preview.2.20160.6 923 4/2/2020
5.0.0-preview.1.20120.5 705 3/16/2020
1.4.1 496,268 5/12/2020
1.4.0 960,968 12/3/2019
1.4.0-preview3.19551.4 1,828 11/13/2019
1.4.0-preview2.19523.17 771 11/1/2019
1.4.0-preview1.19504.10 682 10/15/2019
1.3.0 1,120,926 9/23/2019
1.3.0-rc1.19456.4 834 9/16/2019
1.3.0-preview9.19421.4 837 9/4/2019
1.3.0-preview9.19416.11 528 9/4/2019
1.3.0-preview8.19405.3 1,572 8/13/2019
1.3.0-preview7.19362.9 1,511 7/23/2019
1.3.0-preview6.19303.8 1,095 6/12/2019
1.3.0-preview6.19264.9 529 9/4/2019
1.3.0-preview5.19224.8 3,237 5/6/2019
1.3.0-preview4.19212.13 985 4/18/2019
1.3.0-preview3.19128.7 1,346 3/6/2019
1.3.0-preview.19073.11 21,589 1/29/2019
1.3.0-preview.18571.3 1,617 12/3/2018
1.2.0 2,404,912 5/29/2018
1.2.0-rc1 2,825 5/6/2018
1.2.0-preview2-26406-04 3,161 4/10/2018
1.2.0-preview1-26216-02 3,476 2/26/2018
1.1.0 2,362,277 8/11/2017
1.1.0-preview2-25405-01 5,337 6/27/2017
1.1.0-preview1-25305-02 347,642 5/9/2017
1.0.31 177,948,516 11/15/2016
1.0.31-preview1-24530-04 2,666 10/24/2016