Armature 1.2.1
Requires NuGet 2.8 or higher.
dotnet add package Armature --version 1.2.1
NuGet\Install-Package Armature -Version 1.2.1
<PackageReference Include="Armature" Version="1.2.1" />
paket add Armature --version 1.2.1
#r "nuget: Armature, 1.2.1"
// Install Armature as a Cake Addin #addin nuget:?package=Armature&version=1.2.1 // Install Armature as a Cake Tool #tool nuget:?package=Armature&version=1.2.1
If Armature has done you any good, consider support my future initiatives
Armature
Lightweight and extremely easily extensible dependency injection framework
Example of extensibility
See the project Tests.Extensibility
to see the example of powerful extensibility possibility without changing the framework itself.
It adds support for Maybe
as an injected value.
Examples of using
var builder = new Builder(BuildStage.Cache, BuildStage.Initialize, BuildStage.Create)
{
new SkipAllUnits
{
// inject into constructor
new IfFirstUnit(new IsConstructor())
.UseBuildAction(
new TryInOrder(
new GetConstructorByInjectPointId(),
new GetConstructorWithMaxParametersCount()
),
BuildStage.Create),
new IfFirstUnit(new IsParameterInfoList())
.UseBuildAction(new BuildMethodArgumentsInDirectOrder(), BuildStage.Create),
new IfFirstUnit(new IsParameterInfo())
.UseBuildAction(new BuildArgumentByParameterType(), BuildStage.Create)
}
};
builder
.TreatOpenGeneric(typeof(ISubject<>))
.AsCreated(typeof(Subject<>));
builder
.Treat<Subject>(tag)
.AsIs()
.InjectInto(Constructor.WithParameters<int, string, Stream>());
builder
.Treat<Subject>()
.AsIs()
.InjectInto(Constructor.MarkedWithInjectAttribute(Subject.InjectPointId));
builder
.Treat<ISubject>()
.AsCreated<Subject>()
.AsSingleton();
builder
.Building<ISubject>()
.Building<Subject>()
.TreatAll()
.UsingArguments(logger);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Armature.Core (>= 1.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.2.1 | 549 | 3/16/2022 |
1.1.4 | 414 | 4/3/2021 |
1.0.68 | 985 | 11/17/2020 |
1.0.63 | 1,520 | 7/23/2020 |
1.0.57 | 457 | 7/22/2020 |
1.0.56 | 505 | 6/12/2020 |
1.0.47 | 548 | 10/24/2019 |
1.0.45 | 4,151 | 5/22/2019 |
1.0.44 | 1,355 | 2/8/2019 |
1.0.42 | 1,929 | 8/9/2018 |
1.0.41 | 953 | 8/7/2018 |
1.0.39 | 1,010 | 7/25/2018 |
1.0.38 | 1,179 | 7/17/2018 |
1.0.37 | 1,228 | 6/24/2018 |
1.0.34 | 1,046 | 6/4/2018 |
1.0.0 | 1,079 | 5/6/2018 |
** This version brokes compatibility with the version 1.1.x. **
* Many classes and methods are renamed for the sake of simplicity, the old "UnitSequenceMatcher" concept is too complex to grasp the idea.
* The order in which method/constructor arguments are built can be customized, creation build actions build "ParameterInfo[]" unit instead of enumerating
method/constructor parameters itself.
* Logging is significantly improved, now it's written in HOCON format therefore is friendly to human and can be processed by script.