Build.DependencyInjection
1.0.0.19
See the version list below for details.
dotnet add package Build.DependencyInjection --version 1.0.0.19
NuGet\Install-Package Build.DependencyInjection -Version 1.0.0.19
<PackageReference Include="Build.DependencyInjection" Version="1.0.0.19" />
paket add Build.DependencyInjection --version 1.0.0.19
#r "nuget: Build.DependencyInjection, 1.0.0.19"
// Install Build.DependencyInjection as a Cake Addin #addin nuget:?package=Build.DependencyInjection&version=1.0.0.19 // Install Build.DependencyInjection as a Cake Tool #tool nuget:?package=Build.DependencyInjection&version=1.0.0.19
Welcome to the build wiki!
.NET Core 2.1 Dependency Injection framework
Maintainability
Community
Channels
Repository
Docs
v1.0.0.19
- Added API functions
- All CreateInstance, GetInstance, RegisterType now have the same semantics
- Exposed public Container API to IContainer
Container.CreateInstance(string)
Container.CreateInstance(string, object[])
Container.CreateInstance(string, string[])
Container.CreateInstance(string, System.Type[])
Container.CreateInstance(System.Type)
Container.CreateInstance(System.Type, object[])
Container.CreateInstance(System.Type, string[])
Container.CreateInstance(System.Type, System.Type[])
Container.CreateInstance<T>()
Container.CreateInstance<T>(object[])
Container.CreateInstance<T>(string[])
Container.CreateInstance<T>(System.Type[])
Container.GetInstance(string)
Container.GetInstance(string, object[])
Container.GetInstance(string, string[])
Container.GetInstance(string, System.Type[])
Container.GetInstance(System.Type)
Container.GetInstance(System.Type, object[])
Container.GetInstance(System.Type, string[])
Container.GetInstance(System.Type, System.Type[])
Container.RegisterType(string)
Container.RegisterType(string, object[])
Container.RegisterType(string, string[])
Container.RegisterType(string, System.Type[])
Container.RegisterType(System.Type)
Container.RegisterType(System.Type, object[])
Container.RegisterType(System.Type, string[])
Container.RegisterType(System.Type, System.Type[])
Container.RegisterType<T>()
Container.RegisterType<T>(object[])
Container.RegisterType<T>(string[])
Container.RegisterType<T>(System.Type[])
Features
- Declarative metadata attribute driven initialization
- Lazy type resolution and initialization (supports pure dependency decoupling anti-pattern)
- Circular references detection
- Singleton initialization
- Automated and manual type registration
- Type aliases
- External assembly types
Goal
The goal of development of this framework is to build automation of complex types initialization. Build can use declarative approach to define dependencies between types and their requirements. Constructor injection uses type resolution to resolve devendencies
Continious Integration
Academic papers:
Dependency Injection for Programming by Optimization, Zoltan A. Kocsis and Jerry Swan
- School of Mathematics, University of Manchester, Oxford Road, Manchester M13 9PL, UK. zoltan.kocsis@postgrad.manchester.ac.uk
- Computer Science, University of York, Deramore Lane, York, YO10 5GH, UK.
Links
- Explicit Dependencies Principle
- Inversion of Control Containers and the Dependency Injection pattern
- Dependency injection in ASP.NET Core
- ASP.NET Core Middleware
- Middleware activation with a third-party container in ASP.NET Core.
- Simple Injector sample for ASP.NET
Donate
Please, feel free to donate me 5$ to expand project development (wiki, samples, etc.)
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 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 is compatible. net461 is compatible. net462 is compatible. net463 was computed. net47 is compatible. net471 is compatible. net472 is compatible. 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. |
-
.NETCoreApp 2.1
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.5.1
- No dependencies.
-
.NETFramework 4.5.2
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETFramework 4.6.2
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
-
.NETFramework 4.7.1
- No dependencies.
-
.NETFramework 4.7.2
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Features:
- Added API functions
- All CreateInstance, GetInstance, RegisterType now have the same semantics
- Exposed public Container API to IContainer
Container.CreateInstance(string)
Container.CreateInstance(string, object[])
Container.CreateInstance(string, string[])
Container.CreateInstance(string, System.Type[])
Container.CreateInstance(System.Type)
Container.CreateInstance(System.Type, object[])
Container.CreateInstance(System.Type, string[])
Container.CreateInstance(System.Type, System.Type[])
Container.CreateInstance<T>()
Container.CreateInstance<T>(object[])
Container.CreateInstance<T>(string[])
Container.CreateInstance<T>(System.Type[])
Container.GetInstance(string)
Container.GetInstance(string, object[])
Container.GetInstance(string, string[])
Container.GetInstance(string, System.Type[])
Container.GetInstance(System.Type)
Container.GetInstance(System.Type, object[])
Container.GetInstance(System.Type, string[])
Container.GetInstance(System.Type, System.Type[])
Container.RegisterType(string)
Container.RegisterType(string, object[])
Container.RegisterType(string, string[])
Container.RegisterType(string, System.Type[])
Container.RegisterType(System.Type)
Container.RegisterType(System.Type, object[])
Container.RegisterType(System.Type, string[])
Container.RegisterType(System.Type, System.Type[])
Container.RegisterType<T>()
Container.RegisterType<T>(object[])
Container.RegisterType<T>(string[])
Container.RegisterType<T>(System.Type[])