Adapter.Implementation.Source 1.0.1212.616

There is a newer version of this package available.
See the version list below for details.
dotnet add package Adapter.Implementation.Source --version 1.0.1212.616
NuGet\Install-Package Adapter.Implementation.Source -Version 1.0.1212.616
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="Adapter.Implementation.Source" Version="1.0.1212.616" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Adapter.Implementation.Source --version 1.0.1212.616
#r "nuget: Adapter.Implementation.Source, 1.0.1212.616"
#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 Adapter.Implementation.Source as a Cake Addin
#addin nuget:?package=Adapter.Implementation.Source&version=1.0.1212.616

// Install Adapter.Implementation.Source as a Cake Tool
#tool nuget:?package=Adapter.Implementation.Source&version=1.0.1212.616

The provided adapter pattern allows to convert any object to any other supported type, as provided by the registered adapters.
           
           This package provides the actual implementation of the service. It should only be added to the bootstrapping component of your application.
           
           ======= Example =======
           IProject project = GetCurrentProject();
           // 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 =======
           public class ProjectToMsBuildAdapter : IAdapter<IProject, IMSBuildProject>
           {
               // Implement actual conversion.
           }

           The conversion behavior is now decoupled from the usage.
           Note that to create adapter implementations, you need to install the Adapter.Sdk package.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1301.1418 291 1/14/2013
1.0.1301.1416 86 1/14/2013
1.0.1212.1016 80 12/10/2012
1.0.1212.616 92 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).