Adapter.Interfaces.Source 1.1.1301.1418

dotnet add package Adapter.Interfaces.Source --version 1.1.1301.1418
NuGet\Install-Package Adapter.Interfaces.Source -Version 1.1.1301.1418
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.Interfaces.Source" Version="1.1.1301.1418" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Adapter.Interfaces.Source --version 1.1.1301.1418
#r "nuget: Adapter.Interfaces.Source, 1.1.1301.1418"
#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.Interfaces.Source as a Cake Addin
#addin nuget:?package=Adapter.Interfaces.Source&version=1.1.1301.1418

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

Only two APIs are provided: the IAdapterService and its facade extension method As in the Adapters type.
           
           You can chose to use the former service directly instead of the convenience extension method. You don't
           lose any testability in doing either way, although you do need to pass around the adapter service in one
           case.
           
           ======= Example =======
           // Calling code assumes there is a service always setup before invoking.
           // If there isn't, an InvalidOperationException is thrown automatically.
           
           // 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.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Adapter.Interfaces.Source:

Package Downloads
Adapter.Source

The provided adapter pattern allows to convert any object to any other supported type, as provided by the registered adapters. This package is a convenience grouping of all three separate pieces, for cases where you want to deploy all of them in a single project. ======= 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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1301.1418 5,709 1/14/2013
1.0.1301.1416 5,038 1/14/2013
1.0.1212.1016 5,000 12/10/2012
1.0.1212.616 6,405 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).