Sign in Sign up
nuget

Adapter.Implementation.Source

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.

nuget View on Nuget

Activity

Latest release
13y ago
Total releases
4
Cadence
~4 days
Last 12 months
0

Details

First release
Dec 06, 2012
Releases
Version Released
1.1.1301.1418 minor
1.0.1301.1416 patch
1.0.1212.1016 patch
1.0.1212.616 initial