New version of UnityConfiguration

July 17th 2011

I just pushed a new release of UnityConfiguration to NuGet.

So what’s new in v1.3?

  • Documented public facing methods
  • Included the xml documentation in the NuGet package
  • Debugging symbols are available on SymbolSource.org
  • Several more overloads for adding assemblies to the scanner
  • One more overload for adding a registry that takes an instance of a UnityRegistry
  • New convention that scans for registries
  • New convention that uses an overridable naming convention for registering a type mapping
  • Added Transient, PerThread, PerResolve, ExternallyControlled and HierarchicalControlled lifetime scope configuration
  • MakeSingleton() and MakeSingleton(string) is marked as obsolete. Use Configure().AsSingleton() or Configure().WithName(name).AsSingleton() instead
  • ConfigureCtorArgsFor(params object[] args) is marked as obsolete. Use Configure().WithConstructorArguments(params object[]) instead

Install using the package manager console in Visual Studio:

PM> Install-Package UnityConfiguration

Hope you enjoy it!

About Me