dependency_injection_build 1.0.0.3
See the version list below for details.
dotnet add package dependency_injection_build --version 1.0.0.3
NuGet\Install-Package dependency_injection_build -Version 1.0.0.3
<PackageReference Include="dependency_injection_build" Version="1.0.0.3" />
paket add dependency_injection_build --version 1.0.0.3
#r "nuget: dependency_injection_build, 1.0.0.3"
// Install dependency_injection_build as a Cake Addin #addin nuget:?package=dependency_injection_build&version=1.0.0.3 // Install dependency_injection_build as a Cake Tool #tool nuget:?package=dependency_injection_build&version=1.0.0.3
Welcome to the build wiki!
.NET Core 2.1 Dependency Injection framework
Repository
Docs
Continious Integration
v1.0.0.3
Added support for automatic type resolution (type dependency resolution)
Examples
Automatic type dependency resolution
Usage:
// ServiceDataRepository depends upon SqlDataRepository
container.RegisterType<ServiceDataRepository>();
var sql = (ServiceDataRepository)container.CreateInstance("Build.Tests.TestSet16.ServiceDataRepository(Build.Tests.TestSet16.SqlDataRepository)");
Assert.NotNull(sql.Repository);
Definition:
public class SqlDataRepository : IPersonRepository
{
[Dependency(RuntimeInstance.Singleton)]
public SqlDataRepository(int repositoryId) => RepositoryId = repositoryId;
public int RepositoryId { get; }
public Person GetPerson(int personId)
{
// get the data from SQL DB and return Person instance.
return new Person(this);
}
}
public class ServiceDataRepository : IPersonRepository
{
public ServiceDataRepository(int repositoryId) => RepositoryId = repositoryId;
public ServiceDataRepository([Injection(typeof(SqlDataRepository), 2018)]IPersonRepository repository)
{
Repository = repository;
}
public IPersonRepository Repository { get; }
public int RepositoryId { get; }
public Person GetPerson(int personId)
{
// get the data from Web service and return Person instance.
return new Person(this);
}
}
Description
- Interface first-class support (instantiation, strong typing, external assembly)
- Circular references detection in type registration
- Automatic type resolution for all supported types
- Pure type instantiation (weak coupling)
- Declarative metadata attribute driven initialization
- Lazy type resolution and initialization (supports pure dependency injection decoupling anti-pattern)
- Singleton initialization support
- Automated and manual type registration
- Types aliases (user-friendly type identification)
- External assembly types support
v1.0.0.0
- Elimination of overlapped attribute specificators (removes violation of the SOLID principles)
- Circular references detection phase moved to type registration rather instantiation
- Automatic type resolution for all supported types if used in type instantiation
- Pure type instantiation as descriptive string with particular constructor and passing corresponding parameters
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
Links
Dependency injection in ASP.NET Core
Inversion of Control Containers and the Dependency Injection pattern
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.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.1
- 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.
Version | Downloads | Last updated |
---|---|---|
1.0.0.31 | 539 | 7/31/2020 |
1.0.0.28 | 435 | 7/31/2020 |
1.0.0.27 | 594 | 3/2/2019 |
1.0.0.19 | 857 | 7/15/2018 |
1.0.0.18 | 927 | 7/11/2018 |
1.0.0.17 | 881 | 7/11/2018 |
1.0.0.16 | 774 | 7/2/2018 |
1.0.0.15 | 906 | 6/23/2018 |
1.0.0.14 | 913 | 6/21/2018 |
1.0.0.13 | 894 | 6/18/2018 |
1.0.0.12 | 889 | 6/17/2018 |
1.0.0.11 | 880 | 6/16/2018 |
1.0.0.10 | 922 | 6/16/2018 |
1.0.0.9 | 878 | 6/16/2018 |
1.0.0.8 | 877 | 6/16/2018 |
1.0.0.7 | 946 | 6/1/2018 |
1.0.0.6 | 916 | 6/1/2018 |
1.0.0.5 | 921 | 5/24/2018 |
1.0.0.4 | 931 | 5/13/2018 |
1.0.0.3 | 897 | 5/12/2018 |
1.0.0.2 | 927 | 5/12/2018 |
1.0.0.1 | 976 | 4/29/2018 |
1.0.0 | 949 | 4/17/2018 |
Features:
- Added support for automatic type resolution (type dependency resolution)