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.
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 (3)
|
|
1.0.1301.1416
patch
|
1.0.1301.1416
patch
Dependencies (3)
|
|
1.0.1212.1016
patch
|
1.0.1212.1016
patch
Dependencies (3)
|
|
1.0.1212.616
initial
|
1.0.1212.616
initial
Dependencies (3)
|