Adapter.Composition.Source
                              
                            
                                1.0.1301.1416
                            
                        
                    See the version list below for details.
dotnet add package Adapter.Composition.Source --version 1.0.1301.1416
NuGet\Install-Package Adapter.Composition.Source -Version 1.0.1301.1416
<PackageReference Include="Adapter.Composition.Source" Version="1.0.1301.1416" />
<PackageVersion Include="Adapter.Composition.Source" Version="1.0.1301.1416" />
<PackageReference Include="Adapter.Composition.Source" />
paket add Adapter.Composition.Source --version 1.0.1301.1416
#r "nuget: Adapter.Composition.Source, 1.0.1301.1416"
#:package Adapter.Composition.Source@1.0.1301.1416
#addin nuget:?package=Adapter.Composition.Source&version=1.0.1301.1416
#tool nuget:?package=Adapter.Composition.Source&version=1.0.1301.1416
The provided ComposedAdapterService exports the IAdapterService interface, and "imports many" IAdapter implementations.
            
            Initialize your composition container so that it contains both the exported adapters and the adapter service, and it 
            will be initialized automatically for use.
            
            ======= Example =======
            // Initialize container with your assemblies/types/catalogs
            CompositionContainer container = new CompositionContainer(catalog);
            
            // Retrieve initialized adapter service
            IAdapterService service = container.GetExportedValue<IAdapterService>();
            
            // Initialize the adapter facade with the service
            Adapters.SetService(service);
            
            // Use adapter extension method As as needed, i.e.            
            // say we need to use it as an MSBuild project, if possible
            IMSBuildProject msbuild = project.As<IMSBuildProject>();
            if (msbuild != null)
                // do MSBuild stuff with it.
                
            ======= Adapters =======
            [Export(typeof(IAdapter))]
            public class ProjectToMsBuildAdapter : IAdapter<IProject, IMSBuildProject>
            {
                // Implement actual conversion.
            }
            Simply by exporting the right contract, the adapter service will locate it.
            Note that to create adapter implementations, you need to install the Adapter.Sdk package.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | 
|---|---|---|
| 1.1.1301.1418 | 257 | 1/14/2013 | 
| 1.0.1301.1416 | 88 | 1/14/2013 | 
| 1.0.1212.1016 | 83 | 12/10/2012 | 
| 1.0.1212.616 | 87 | 12/6/2012 | 
v1.1
* Additional support for source packages, like Adapter.Interfaces.Source,
  which also use token replacement and adopt the containing project 
  root namespace.
v1.0
* Initial version, with support for flexible matching of from and to types
* Support for MEF in separate Adapter.Composition package
* Proper split of: Adapter.Interfaces, Adapter.Sdk and Adapter (implementation).