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.
Activity
- Latest release
- 13y ago
- Total releases
- 4
- Cadence
- ~4 days
- Last 12 months
- 0
Details
- First release
- Dec 06, 2012
| Version | Released | |
|---|---|---|
1.1.1301.1418
minor
|
1.1.1301.1418
minor
Dependencies (4)
|
|
1.0.1301.1416
patch
|
1.0.1301.1416
patch
Dependencies (4)
|
|
1.0.1212.1016
patch
|
1.0.1212.1016
patch
Dependencies (4)
|
|
1.0.1212.616
initial
|
1.0.1212.616
initial
Dependencies (4)
|