![]() |
VOOZH | about |
dotnet add package System.Composition.AttributedModel --version 10.0.9
NuGet\Install-Package System.Composition.AttributedModel -Version 10.0.9
<PackageReference Include="System.Composition.AttributedModel" Version="10.0.9" />
<PackageVersion Include="System.Composition.AttributedModel" Version="10.0.9" />Directory.Packages.props
<PackageReference Include="System.Composition.AttributedModel" />Project file
paket add System.Composition.AttributedModel --version 10.0.9
#r "nuget: System.Composition.AttributedModel, 10.0.9"
#:package System.Composition.AttributedModel@10.0.9
#addin nuget:?package=System.Composition.AttributedModel&version=10.0.9Install as a Cake Addin
#tool nuget:?package=System.Composition.AttributedModel&version=10.0.9Install as a Cake Tool
System.Composition.AttributedModel 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 provides the foundational attributes that allow you to declare parts for composition, such as imports, exports, and metadata. It is used to mark classes, properties, methods, and constructors for MEF's discovery and composition process.
Mark classes for export and import using attributes.
using System.Composition;
using System.Composition.Hosting;
var configuration = new ContainerConfiguration()
.WithPart<Service>()
.WithPart<Application>();
using CompositionHost container = configuration.CreateContainer();
Application app = container.GetExport<Application>();
app.Service.Execute();
// Service is running!
[Export]
public class Application
{
[Import]
public Service Service { get; set; }
}
[Export]
public class Service
{
public void Execute() => Console.WriteLine("Service is running!");
}
Metadata can be used to differentiate between multiple exports of the same contract.
using System.Composition;
using System.Composition.Hosting;
ContainerConfiguration configuration = new ContainerConfiguration()
.WithPart<FileLogger>()
.WithPart<ConsoleLogger>()
.WithPart<Application>();
using CompositionHost container = configuration.CreateContainer();
Application app = container.GetExport<Application>();
app.Run();
// Using FileLogger to log.
// FileLogger: Hello, World!
// Using ConsoleLogger to log.
// ConsoleLogger: Hello, World!
public interface ILogger
{
void Log(string message);
}
[Export(typeof(ILogger))]
[ExportMetadata("Name", "FileLogger")]
public class FileLogger : ILogger
{
public void Log(string message) => Console.WriteLine($"FileLogger: {message}");
}
[Export(typeof(ILogger))]
[ExportMetadata("Name", "ConsoleLogger")]
public class ConsoleLogger : ILogger
{
public void Log(string message) => Console.WriteLine($"ConsoleLogger: {message}");
}
[Export]
public class Application
{
[ImportMany]
public required IEnumerable<Lazy<ILogger, IDictionary<string, object>>> Loggers { get; set; }
public void Run()
{
foreach (var logger in Loggers)
{
var name = logger.Metadata["Name"];
Console.WriteLine($"Using {name} to log.");
logger.Value.Log("Hello, World!");
}
}
}
The main types provided by this library are:
System.Composition.ExportAttributeSystem.Composition.ImportAttributeSystem.Composition.ExportMetadataAttributeSystem.Composition.AttributedModel 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 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on System.Composition.AttributedModel:
| 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. |
|
|
System.Composition.TypedParts
Provides container configuration and some extension methods for the Managed Extensibility Framework (MEF). |
|
|
System.Composition.Convention
Provides types that support using Managed Extensibility Framework (MEF) with a convention-based configuration model. |
|
|
Microsoft.VisualStudio.Composition
Lightning fast MEF engine, supporting System.ComponentModel.Composition and System.Composition. |
|
|
Microsoft.VisualStudio.Utilities
A member of the Visual Studio SDK |
Showing the top 20 popular GitHub repositories that depend on System.Composition.AttributedModel:
| Repository | Stars |
|---|---|
|
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
|
|
|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
|
JustArchiNET/ArchiSteamFarm
C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.
|
|
|
Ourpalm/ILRuntime
Pure C# IL Intepreter Runtime, which is fast and reliable for scripting requirement on enviorments, where jitting isn't possible.
|
|
|
neuecc/Utf8Json
Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).
|
|
|
OPCFoundation/UA-.NETStandard
OPC Unified Architecture .NET Standard
|
|
|
dotnet/ResXResourceManager
Manage localization of all ResX-Based resources in one central place.
|
|
|
security-code-scan/security-code-scan
Vulnerability Patterns Detector for C# and VB.NET
|
|
|
chr233/ASFEnhance
ASF 扩展命令插件 / External commands for ArchiSteamFarm
|
|
|
icsharpcode/RefactoringEssentials
Refactoring Essentials for Visual Studio
|
|
|
chummer5a/chummer5a
Character generator for Shadowrun 5th edition
|
|
|
microsoft/vs-mef
Managed Extensibility Framework (MEF) implementation used by Visual Studio
|
|
|
sharpenrocks/Sharpen
Visual Studio extension that intelligently introduces new C# features into your existing codebase
|
|
|
sonatype-nexus-community/DevAudit
Open-source, cross-platform, multi-purpose security auditing tool
|
|
|
Citrinate/FreePackages
An ASF plugin for finding and redeeming free Steam games
|
|
|
curiosity-ai/h5
🚀 The next generation C# to JavaScript compiler
|
|
|
dotnet/platform-compat
Roslyn analyzer that finds usages of APIs that will throw PlatformNotSupportedException on certain platforms.
|
|
|
godotengine/godot-csharp-visualstudio
Godot C# extension for Visual Studio
|
|
|
oleg-shilo/cs-script.npp
CS-Script (C# Intellisense) plugin for Notepad++ (x86/x64)
|
|
|
PeterWaher/IoTGateway
New project
|
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.0-preview.5.26302.115 | 117 | 6/9/2026 |
| 11.0.0-preview.4.26230.115 | 369 | 5/12/2026 |
| 11.0.0-preview.3.26207.106 | 315 | 4/14/2026 |
| 11.0.0-preview.2.26159.112 | 310 | 3/10/2026 |
| 11.0.0-preview.1.26104.118 | 314 | 2/10/2026 |
| 10.0.9 | 23,615 | 6/9/2026 |
| 10.0.8 | 83,274 | 5/12/2026 |
| 10.0.7 | 115,588 | 4/21/2026 |
| 10.0.6 | 20,736 | 4/14/2026 |
| 10.0.5 | 230,748 | 3/12/2026 |
| 10.0.4 | 26,181 | 3/10/2026 |
| 10.0.3 | 161,159 | 2/10/2026 |
| 10.0.2 | 142,633 | 1/13/2026 |
| 10.0.1 | 234,876 | 12/9/2025 |
| 9.0.17 | 1,215 | 6/9/2026 |
| 9.0.16 | 4,871 | 5/12/2026 |
| 9.0.15 | 7,908 | 4/14/2026 |
| 9.0.14 | 6,961 | 3/10/2026 |
| 9.0.13 | 5,391 | 2/10/2026 |
| 9.0.12 | 8,854 | 1/13/2026 |