System.Composition.Convention 9.0.4

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Composition.Convention --version 9.0.4
                    
NuGet\Install-Package System.Composition.Convention -Version 9.0.4
                    
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.Convention" Version="9.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.Composition.Convention" Version="9.0.4" />
                    
Directory.Packages.props
<PackageReference Include="System.Composition.Convention" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.Composition.Convention --version 9.0.4
                    
#r "nuget: System.Composition.Convention, 9.0.4"
                    
#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.
#addin nuget:?package=System.Composition.Convention&version=9.0.4
                    
Install System.Composition.Convention as a Cake Addin
#tool nuget:?package=System.Composition.Convention&version=9.0.4
                    
Install System.Composition.Convention as a Cake Tool

About

System.Composition.Convention 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 simplifies the process of applying consistent patterns for part exports, imports, and metadata by using convention-based configurations. It is useful for scenarios where you want to avoid repetitive attribute-based decoration and instead define conventions for registering types in your composition container.

Key Features

  • Configure exports, imports, and metadata for parts using conventions rather than attributes.
  • Allows defining conventions through a fluent API, making configuration more flexible and readable.

How to Use

Configure parts for composition without using attributes.

using System.Composition.Convention;
using System.Composition.Hosting;

var conventions = new ConventionBuilder();

// Apply conventions: any class that implements ILogger will be exported as ILogger
conventions
    .ForTypesDerivedFrom<ILogger>()
    .Export<ILogger>();

var configuration = new ContainerConfiguration()
    .WithPart<FileLogger>(conventions)
    .WithPart<ConsoleLogger>(conventions);

using CompositionHost container = configuration.CreateContainer();
    
var loggers = container.GetExports<ILogger>();

foreach (var logger in loggers)
{
    logger.Log("Hello, World!");
}
// FileLogger: Hello, World!
// ConsoleLogger: Hello, World!

public interface ILogger
{
    void Log(string message);
}

public class FileLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"FileLogger: {message}");
}

public class ConsoleLogger : ILogger
{
    public void Log(string message) => Console.WriteLine($"ConsoleLogger: {message}");
}

Main Types

The main types provided by this library are:

  • System.Composition.Convention.ConventionBuilder
  • System.Composition.Convention.PartConventionBuilder
  • System.Composition.Convention.ParameterImportConventionBuilder

Additional Documentation

Feedback & Contributing

System.Composition.Convention 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.  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. 
.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.

NuGet packages (38)

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

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.Imaging

A member of the Visual Studio SDK

Microsoft.VisualStudio.Shell.15.0

A member of the Visual Studio SDK

GitHub repositories (21)

Showing the top 20 popular GitHub repositories that depend on System.Composition.Convention:

Repository Stars
neuecc/Utf8Json
Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).
security-code-scan/security-code-scan
Vulnerability Patterns Detector for C# and VB.NET
icsharpcode/RefactoringEssentials
Refactoring Essentials for Visual Studio
chummer5a/chummer5a
Character generator for Shadowrun 5th edition
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
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
luis22d/ZeroTrace-Panel
💀 ZeroTrace Stealer Is Designed To Steal Credentials And Send Back To Panel And Easily See Results
godotengine/godot-csharp-visualstudio
Godot C# extension for Visual Studio
oleg-shilo/cs-script.npp
CS-Script (C# Intellisense) plugin for Notepad++ (x86/x64)
curiosity-ai/h5
🚀 The next generation C# to JavaScript compiler
PeterWaher/IoTGateway
New project
loamen/Kalman.Studio
Kalman.Studio代码生成器是一款基于T4模板引擎的代码生成器和开发辅助工具。可以根据数据库元数据架构信息来生成代码,还可以解析PowerDesigner物理模型文件,根据PDM模型对象来生成代码等。
ylatuya/XAMLator
rexcardan/Evil-DICOM
A C# DICOM Library
mavaddat/wasp
Windows Automation Snapin for PowerShell
geaz/sharpDox
A c# documentation tool (Discontinued)
szehetner/InliningAnalyzer
Inlining Analyzer is a Visual Studio Extension that shows in the source code if a method call will be inlined by the JIT compiler.
realvizu/QuickDiagram
Code visualization tool for C# to quickly explore, navigate and document source code structure and relationships. Integrates into Visual Studio.
microsoft/vs-editor-api
Microsoft Visual Studio Editor API definitions
Version Downloads Last updated
10.0.0-preview.2.25163.2 307 3/18/2025
10.0.0-preview.1.25080.5 394 2/25/2025
9.0.4 315 4/8/2025
9.0.3 19,731 3/11/2025
9.0.2 25,903 2/11/2025
9.0.1 28,934 1/14/2025
9.0.0 112,507 11/12/2024
9.0.0-rc.2.24473.5 697 10/8/2024
9.0.0-rc.1.24431.7 584 9/10/2024
9.0.0-preview.7.24405.7 730 8/13/2024
9.0.0-preview.6.24327.7 590 7/9/2024
9.0.0-preview.5.24306.7 469 6/11/2024
9.0.0-preview.4.24266.19 439 5/21/2024
9.0.0-preview.3.24172.9 703 4/11/2024
9.0.0-preview.2.24128.5 694 3/12/2024
9.0.0-preview.1.24080.9 12,455 2/13/2024
8.0.0 12,651,143 11/14/2023
8.0.0-rc.2.23479.6 5,242 10/10/2023
8.0.0-rc.1.23419.4 1,149 9/12/2023
8.0.0-preview.7.23375.6 1,157 8/8/2023
8.0.0-preview.6.23329.7 941 7/11/2023
8.0.0-preview.5.23280.8 800 6/13/2023
8.0.0-preview.4.23259.5 1,116 5/16/2023
8.0.0-preview.3.23174.8 1,100 4/11/2023
8.0.0-preview.2.23128.3 1,070 3/14/2023
8.0.0-preview.1.23110.8 704 2/21/2023
7.0.0 39,474,465 11/7/2022
7.0.0-rc.2.22472.3 812 10/11/2022
7.0.0-rc.1.22426.10 557 9/14/2022
7.0.0-preview.7.22375.6 517 8/9/2022
7.0.0-preview.6.22324.4 632 7/12/2022
7.0.0-preview.5.22301.12 4,420 6/14/2022
7.0.0-preview.4.22229.4 786 5/10/2022
7.0.0-preview.3.22175.4 787 4/13/2022
7.0.0-preview.2.22152.2 626 3/14/2022
7.0.0-preview.1.22076.8 495 2/17/2022
6.0.0 111,496,161 11/8/2021
6.0.0-rc.2.21480.5 1,000 10/12/2021
6.0.0-rc.1.21451.13 1,086 9/14/2021
6.0.0-preview.7.21377.19 2,724 8/10/2021
6.0.0-preview.6.21352.12 1,384 7/14/2021
6.0.0-preview.5.21301.5 492 6/15/2021
6.0.0-preview.4.21253.7 559 5/24/2021
6.0.0-preview.3.21201.4 631 4/8/2021
6.0.0-preview.2.21154.6 2,448 3/11/2021
6.0.0-preview.1.21102.12 1,154 2/12/2021
5.0.1 839,415 1/12/2021 5.0.1 is deprecated because it is no longer maintained.
5.0.0 378,808 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 16,825 10/13/2020
5.0.0-rc.1.20451.14 910 9/14/2020
5.0.0-preview.8.20407.11 1,104 8/25/2020
5.0.0-preview.7.20364.11 755 7/21/2020
5.0.0-preview.6.20305.6 2,114 6/25/2020
5.0.0-preview.5.20278.1 915 6/10/2020
5.0.0-preview.4.20251.6 875 5/18/2020
5.0.0-preview.3.20214.6 681 4/23/2020
5.0.0-preview.2.20160.6 734 4/2/2020
5.0.0-preview.1.20120.5 737 3/16/2020
1.4.1 430,419 5/12/2020
1.4.0 966,792 12/3/2019
1.4.0-preview3.19551.4 1,841 11/13/2019
1.4.0-preview2.19523.17 812 11/1/2019
1.4.0-preview1.19504.10 742 10/15/2019
1.3.0 1,124,668 9/23/2019
1.3.0-rc1.19456.4 913 9/16/2019
1.3.0-preview9.19421.4 941 9/4/2019
1.3.0-preview9.19416.11 596 9/4/2019
1.3.0-preview8.19405.3 1,606 8/13/2019
1.3.0-preview7.19362.9 1,573 7/23/2019
1.3.0-preview6.19303.8 1,170 6/12/2019
1.3.0-preview6.19264.9 597 9/4/2019
1.3.0-preview5.19224.8 3,353 5/6/2019
1.3.0-preview4.19212.13 1,059 4/18/2019
1.3.0-preview3.19128.7 1,449 3/6/2019
1.3.0-preview.19073.11 21,644 1/29/2019
1.3.0-preview.18571.3 1,697 12/3/2018
1.2.0 2,704,424 5/29/2018
1.2.0-rc1 3,272 5/6/2018
1.2.0-preview2-26406-04 3,543 4/10/2018
1.2.0-preview1-26216-02 3,874 2/26/2018
1.1.0 2,384,187 8/11/2017
1.1.0-preview2-25405-01 5,649 6/27/2017
1.1.0-preview1-25305-02 347,957 5/9/2017
1.0.31 188,143,004 11/15/2016
1.0.31-preview1-24530-04 2,836 10/24/2016