Armature.Interface 1.2.1

Requires NuGet 2.8 or higher.

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

// Install Armature.Interface as a Cake Tool
#tool nuget:?package=Armature.Interface&version=1.2.1

If Armature has done you any good, consider support my future initiatives

PayPal


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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Armature.Interface:

Package Downloads
Armature.Core

The core part of the Armature framework, can be used to build your own framework with syntax and features of your choice

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 1,002 3/16/2022
1.1.4 693 4/3/2021
1.0.68 1,247 11/17/2020
1.0.63 1,859 7/23/2020
1.0.57 770 7/22/2020
1.0.56 769 6/12/2020
1.0.47 876 10/24/2019
1.0.45 4,294 5/22/2019
1.0.44 1,509 2/8/2019
1.0.42 2,088 8/9/2018
1.0.41 1,142 8/7/2018
1.0.39 1,132 7/25/2018
1.0.38 1,228 7/17/2018
1.0.37 1,468 6/24/2018
1.0.34 1,211 6/4/2018
1.0.2 982 5/16/2018
1.0.0 863 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.