ATZ.DependencyInjection 2.0.1.64

There is a newer version of this package available.
See the version list below for details.
dotnet add package ATZ.DependencyInjection --version 2.0.1.64
                    
NuGet\Install-Package ATZ.DependencyInjection -Version 2.0.1.64
                    
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="ATZ.DependencyInjection" Version="2.0.1.64" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ATZ.DependencyInjection" Version="2.0.1.64" />
                    
Directory.Packages.props
<PackageReference Include="ATZ.DependencyInjection" />
                    
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 ATZ.DependencyInjection --version 2.0.1.64
                    
#r "nuget: ATZ.DependencyInjection, 2.0.1.64"
                    
#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.
#:package ATZ.DependencyInjection@2.0.1.64
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ATZ.DependencyInjection&version=2.0.1.64
                    
Install as a Cake Addin
#tool nuget:?package=ATZ.DependencyInjection&version=2.0.1.64
                    
Install as a Cake Tool

DependencyResolver static class for holding the IKernel instance of Ninject and providing additional useful features.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on ATZ.DependencyInjection:

Package Downloads
ATZ.MVVM

Base library for MVVM architecture.

ATZ.DependencyInjection.System

ATZ.DependencyResolver extension package for providing bindings to System static classes.

ATZ.Commands

ATZ.Commands contains interesting ICommand implementations that are reusable between different software codes.

ATZ.DependencyInjection.System.Windows

ATZ.DependencyResolver extension package for providing bindings to System.Windows static classes.

ATZ.DependencyInjection.NinjectKernel.Net45

ATZ.DependencyResolver.NinjectKernel.Net45 extension package for providing a Kernel implementation based on Ninject targeting .NET Framework 4.5.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.0.103 3,434 7/1/2017
2.2.0.73 2,280 3/26/2017
2.1.1.66 1,659 1/8/2017
2.1.0.65 1,658 1/8/2017
2.0.1.64 1,642 1/8/2017
2.0.0.63 2,090 1/8/2017
1.3.4.56 1,732 12/31/2016
1.3.3.51 1,586 12/18/2016
1.3.2.49 2,146 12/17/2016
1.3.1.11715 1,680 12/13/2016
1.3.0.11004 1,710 12/13/2016
1.2.2.14255 1,632 11/24/2016
1.2.1.34886 1,604 11/19/2016
1.2.0.27094 2,652 11/11/2016
1.1.1.14616 1,991 11/2/2016
1.1.0.13185 1,527 10/31/2016
1.0.0.35039 2,103 10/29/2016

2.0.1:
- Fixing problem with installation of the ATZ.DependencyInjection.System module.
     
2.0.0:
- For when trying to get contravariant interface for a non-generic interface, now ArgumentOutOfRange exception is shown instead of ArgumentException.
- Eliminating possibilities for null reference exceptions and adding annotations for ReSharper.

1.3.4:
- In some tricky cases the object activated through the Kernel could not be casted to the expected return type, but the underlying problem is a missing implementation in the client code. Now this condition is properly detected and also signalled with ActivationException. Previously this returned null, which caused NullReferenceException in the client code, while the compiler detected the code to be correct.
     
1.3.3:
- Excluding unintentionally delivered DLLs from the NuGet package.

1.3.2:
- Fixing 4th version number to be the number of the build instead some time dependent number indicated by *, as in case of time dependency different target frameworks got different numbers.

1.3.1:
- Missing .NET 4.5 files corrected.
     
1.3.0:
- Supporting .NET 4.5 target framework.
     
1.2.2:
- Documented what happens when trying to get a contravariant interface from a non-generic interface parameter.
     
1.2.1:
- As ATZ.Reflection.TypeExtensions introduced GenericTypeParameterCount in version 1.1 of the API the NuGet package should require at least that version, since it is using it.
     
1.2.0:
- Added SystemDebug and IDebug, so TDD method can be used to verify that certain messages has been placed into the debug message stack.
     
1.1.1:
- Fixing missing documentation of public API.
- Fixed a bug that allowed the previous singleton instance of the Ninject kernel on reinitialization to stay in the memory, causing memory leaks.
     
1.1:
- Added DependencyResolver.GetInterface(this IKernel, Type, Type) to support contravariant interface resolution without casting of the return type. This helps debug casting issues.

1.0:
- Initial NuGet Packaging.