DependencyResolver.NET 1.0.34

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package DependencyResolver.NET --version 1.0.34
NuGet\Install-Package DependencyResolver.NET -Version 1.0.34
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="DependencyResolver.NET" Version="1.0.34" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DependencyResolver.NET --version 1.0.34
#r "nuget: DependencyResolver.NET, 1.0.34"
#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 DependencyResolver.NET as a Cake Addin
#addin nuget:?package=DependencyResolver.NET&version=1.0.34

// Install DependencyResolver.NET as a Cake Tool
#tool nuget:?package=DependencyResolver.NET&version=1.0.34

DependencyResolver

A simple dependency injection framework to demonstrate the core functionality such as registration and resolving of dependency trees.

Download and Install DependencyResolver

This library is available on NuGet: https://www.nuget.org/packages/DependencyResolver.NET Use the following command to install DependencyResolver.NET using NuGet package manager console:

PM> Install-Package DependencyResolver.NET

You can use this library in any .NET project which is compatible to .NET Framework 4.5, .NET Standard 2.0 and higher.

How it use DependencyResolver

The DependencyResolver provides two basic methods: Register and Resolve. Register allows to map abstractions to implementations at bootstrap time of an application. These registrations are sometimes also called services, service mappings or dependencies. Later, at runtime of the application, the Resolve method is used to create instances for the registered services.

// Create a new dependency injection container
var resolver = new Resolver();

// Register dependencies
resolver.Register<ILogger, ConsoleLogger>();
resolver.Register<IPaymentService, PaymentService>();
resolver.Register<IPaymentServiceConfiguration, PaymentServiceConfiguration>();

// Resolve dependencies
var paymentService = resolver.Resolve<IPaymentService>();
paymentService.Charge(99m, new MasterCard());

Disclaimer

Do not use DependencyResolver in production code!<br/>Use one of the well-known DI frameworks instead: Autofac, Unity, Ninject.

Original Source & Credits<br/> http://www.pashov.net/code/dependency-injection-hood/

Autofac<br/> https://autofac.org/

Unity Container<br/> https://github.com/unitycontainer

Ninject<br/> http://www.ninject.org/

Dependency Injection in ASP.NET Core<br/> https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-2.2

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 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 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.42-pre 79 4/1/2024
1.0.41-pre 69 3/1/2024
1.0.40-pre 72 2/1/2024
1.0.39-pre 116 1/1/2024
1.0.38-pre 103 12/1/2023
1.0.37-pre 96 11/1/2023
1.0.35-pre 75 10/1/2023
1.0.34 156 9/17/2023
1.0.32-pre 83 9/17/2023
1.0.30-pre 80 9/5/2023
1.0.25 457 9/22/2022
1.0.23-pre 163 9/16/2022
1.0.22-pre 156 9/16/2022
1.0.21 399 9/8/2022
1.0.19-pre 146 9/8/2022
1.0.17-pre 153 9/8/2022
1.0.15-pre 180 1/9/2022
1.0.14-pre 168 1/9/2022
1.0.13 18,498 11/24/2021
1.0.11-pre 5,090 11/24/2021
1.0.9-pre 4,877 11/24/2021
1.0.8-pre 4,914 11/24/2021
1.0.7 5,640 11/23/2021
1.0.5-pre 5,559 11/23/2021
1.0.4-pre 168 11/23/2021

1.0.0
- Initial release