System.Composition.TypedParts
10.0.7
Prefix Reserved
See the version list below for details.
dotnet add package System.Composition.TypedParts --version 10.0.7
NuGet\Install-Package System.Composition.TypedParts -Version 10.0.7
<PackageReference Include="System.Composition.TypedParts" Version="10.0.7" />
<PackageVersion Include="System.Composition.TypedParts" Version="10.0.7" />
<PackageReference Include="System.Composition.TypedParts" />
paket add System.Composition.TypedParts --version 10.0.7
#r "nuget: System.Composition.TypedParts, 10.0.7"
#:package System.Composition.TypedParts@10.0.7
#addin nuget:?package=System.Composition.TypedParts&version=10.0.7
#tool nuget:?package=System.Composition.TypedParts&version=10.0.7
About
System.Composition.TypedParts is part of the Managed Extensibility Framework (MEF) 2.0, a composition library for .NET that enables dependency injection through attributes or conventions.
Provides ContainerConfiguration and some extension methods for the Managed Extensibility Framework (MEF).
Key Features
- Provides container configuration.
How to Use
Register parts from an entire assembly.
using System.Composition;
using System.Composition.Hosting;
using System.Reflection;
// Register all parts from the current assembly
var configuration = new ContainerConfiguration()
.WithAssembly(Assembly.GetExecutingAssembly());
using CompositionHost container = configuration.CreateContainer();
var handlers = container.GetExports<IHandler>();
foreach (var handler in handlers)
{
handler.Handle();
}
// HandlerA is handling.
// HandlerB is handling.
public interface IHandler
{
void Handle();
}
[Export(typeof(IHandler))]
public class HandlerA : IHandler
{
public void Handle() => Console.WriteLine("HandlerA is handling.");
}
[Export(typeof(IHandler))]
public class HandlerB : IHandler
{
public void Handle() => Console.WriteLine("HandlerB is handling.");
}
Main Types
The main types provided by this library are:
System.Composition.Hosting.ContainerConfigurationSystem.Composition.CompositionContextExtensions
Additional Documentation
Related Packages
- System.Composition
- System.Composition.AttributedModel
- System.Composition.Convention
- System.Composition.Hosting
- System.Composition.Runtime
Feedback & Contributing
System.Composition.TypedParts is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| Product | Versions 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. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .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. |
-
.NETFramework 4.6.2
- System.Composition.AttributedModel (>= 10.0.7)
- System.Composition.Hosting (>= 10.0.7)
- System.Composition.Runtime (>= 10.0.7)
-
.NETStandard 2.0
- System.Composition.AttributedModel (>= 10.0.7)
- System.Composition.Hosting (>= 10.0.7)
- System.Composition.Runtime (>= 10.0.7)
-
net10.0
- System.Composition.AttributedModel (>= 10.0.7)
- System.Composition.Hosting (>= 10.0.7)
- System.Composition.Runtime (>= 10.0.7)
-
net8.0
- System.Composition.AttributedModel (>= 10.0.7)
- System.Composition.Hosting (>= 10.0.7)
- System.Composition.Runtime (>= 10.0.7)
-
net9.0
- System.Composition.AttributedModel (>= 10.0.7)
- System.Composition.Hosting (>= 10.0.7)
- System.Composition.Runtime (>= 10.0.7)
NuGet packages (39)
Showing the top 5 NuGet packages that depend on System.Composition.TypedParts:
| Package | Downloads |
|---|---|
|
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 |
|
|
Microsoft.VisualStudio.Shell.15.0
A member of the Visual Studio SDK |
|
|
Microsoft.VisualStudio.Imaging
A member of the Visual Studio SDK |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on System.Composition.TypedParts:
| Repository | Stars |
|---|---|
|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.0-preview.3.26207.106 | 209 | 4/14/2026 |
| 11.0.0-preview.2.26159.112 | 251 | 3/10/2026 |
| 11.0.0-preview.1.26104.118 | 251 | 2/10/2026 |
| 10.0.7 | 20,544 | 4/21/2026 |
| 10.0.6 | 11,722 | 4/14/2026 |
| 10.0.5 | 123,273 | 3/12/2026 |
| 10.0.4 | 12,560 | 3/10/2026 |
| 10.0.3 | 99,902 | 2/10/2026 |
| 10.0.2 | 118,048 | 1/13/2026 |
| 10.0.1 | 185,634 | 12/9/2025 |
| 10.0.0 | 128,633 | 11/11/2025 |
| 10.0.0-rc.2.25502.107 | 1,123 | 10/14/2025 |
| 10.0.0-rc.1.25451.107 | 962 | 9/9/2025 |
| 9.0.15 | 976 | 4/14/2026 |
| 9.0.14 | 3,229 | 3/10/2026 |
| 9.0.13 | 3,590 | 2/10/2026 |
| 9.0.12 | 6,809 | 1/13/2026 |
| 9.0.11 | 19,484 | 11/11/2025 |
| 9.0.10 | 121,342 | 10/14/2025 |
| 9.0.9 | 134,735 | 9/9/2025 |