DependencyResolver.NET 1.0.58-pre

This is a prerelease version of DependencyResolver.NET.
There is a newer version of this package available.
See the version list below for details.
dotnet add package DependencyResolver.NET --version 1.0.58-pre
                    
NuGet\Install-Package DependencyResolver.NET -Version 1.0.58-pre
                    
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.58-pre" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DependencyResolver.NET" Version="1.0.58-pre" />
                    
Directory.Packages.props
<PackageReference Include="DependencyResolver.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DependencyResolver.NET --version 1.0.58-pre
                    
#r "nuget: DependencyResolver.NET, 1.0.58-pre"
                    
#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.
#addin nuget:?package=DependencyResolver.NET&version=1.0.58-pre&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DependencyResolver.NET&version=1.0.58-pre&prerelease
                    
Install as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.65-pre 86 6/1/2025
1.0.64-pre 132 5/1/2025
1.0.63-pre 155 4/1/2025
1.0.62-pre 126 3/16/2025
1.0.60 112 3/1/2025
1.0.58-pre 84 3/1/2025
1.0.51-pre 93 1/1/2025
1.0.50-pre 87 12/1/2024
1.0.49-pre 85 11/1/2024
1.0.48-pre 87 10/1/2024
1.0.47-pre 101 9/1/2024
1.0.46-pre 95 8/1/2024
1.0.45-pre 112 7/1/2024
1.0.44-pre 101 6/1/2024
1.0.43-pre 111 5/1/2024
1.0.42-pre 118 4/1/2024
1.0.41-pre 125 3/1/2024
1.0.40-pre 131 2/1/2024
1.0.39-pre 173 1/1/2024
1.0.38-pre 155 12/1/2023
1.0.37-pre 136 11/1/2023
1.0.35-pre 111 10/1/2023
1.0.34 220 9/17/2023
1.0.32-pre 131 9/17/2023
1.0.30-pre 118 9/5/2023
1.0.25 518 9/22/2022
1.0.23-pre 214 9/16/2022
1.0.22-pre 203 9/16/2022
1.0.21 454 9/8/2022
1.0.19-pre 202 9/8/2022
1.0.17-pre 208 9/8/2022
1.0.15-pre 238 1/9/2022
1.0.14-pre 237 1/9/2022
1.0.13 18,576 11/24/2021
1.0.11-pre 5,151 11/24/2021
1.0.9-pre 4,938 11/24/2021
1.0.8-pre 4,970 11/24/2021
1.0.7 5,704 11/23/2021
1.0.5-pre 5,620 11/23/2021
1.0.4-pre 237 11/23/2021

1.0.0
- Initial release