ATZ.DependencyInjection 3.0.0.103

dotnet add package ATZ.DependencyInjection --version 3.0.0.103
NuGet\Install-Package ATZ.DependencyInjection -Version 3.0.0.103
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="3.0.0.103" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ATZ.DependencyInjection --version 3.0.0.103
#r "nuget: ATZ.DependencyInjection, 3.0.0.103"
#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 ATZ.DependencyInjection as a Cake Addin
#addin nuget:?package=ATZ.DependencyInjection&version=3.0.0.103

// Install ATZ.DependencyInjection as a Cake Tool
#tool nuget:?package=ATZ.DependencyInjection&version=3.0.0.103

DependencyResolver static class for holding a dependency injection container and providing additional useful features.

There are no supported framework assets in this 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.DependencyInjection.System

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

ATZ.MVVM

Base library for MVVM architecture.

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,023 7/1/2017
2.2.0.73 1,973 3/26/2017
2.1.1.66 1,374 1/8/2017
2.1.0.65 1,374 1/8/2017
2.0.1.64 1,366 1/8/2017
2.0.0.63 1,774 1/8/2017
1.3.4.56 1,440 12/31/2016
1.3.3.51 1,289 12/18/2016
1.3.2.49 1,829 12/17/2016
1.3.1.11715 1,376 12/13/2016
1.3.0.11004 1,421 12/13/2016
1.2.2.14255 1,348 11/24/2016
1.2.1.34886 1,322 11/19/2016
1.2.0.27094 2,300 11/11/2016
1.1.1.14616 1,584 11/2/2016
1.1.0.13185 1,256 10/31/2016
1.0.0.35039 1,796 10/29/2016

3.0.0:
- PCL 259.
- Because Ninject caused me a lot of headache with its internal trickery around PCL, removed dependency on its interfaces. This also allows the library to be IoC system independent.
     
2.2.0:
- Introducing ATZ.DependencyInjection.System.Windows.
- Adding ATZ.DependencyInjection.System.Windows.IMessageBox
     
2.1.0:
- Retaining JetBrains.Annotations symbols on the API.
     
2.0.1:
- Fixing problem with installation of the ATZ.DependencyInjection.System module.
     
2.0.0:
- For when trying to get contra-variant 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.