UnityConfiguration
UnityConfiguration copied to clipboard
Convention based configuration API for the Unity IoC container.
Hi When I install this package via NuGet I get the version built/modified on Sunday, 18 December 2011, 7:43:46 pm. If I try and run this with Unity 5.11.10 I...
Adding Unity 5 to projects. Does this support the newer releases?
Hi, is used in an old project and on container.Configure(c => c.AddRegistry(new ApplicationRegistry())) i get - Cannot convert lambda expression to type 'Type' because it is not a delegate type...
UnityContainer has the ability to Register Object instances as well as implementation types against interfaces. It would be nice to extend UnityRegistry to do the same
Support registrations with interception behaviors: ``` container.RegisterType( new Interceptor(), new InterceptionBehavior()); ``` This can be supported by making `RegistrationExpression.WithInjectionMembers()` public (instead of internal)
The issue here is that UnityContainer will replace a registration if there is an existing registration for the from type and name. This is a problem because convention registrations shouldn't...
This is similar to roryprimrose's pull request, but also takes into account the FactoryRegistrationExpression.
Hey there, I am using Unity 2.1 and UnityConfiguration in order to realize convention-based configuration. I am using the SetAllPropertiesConvention in order to inject an implementation of ILogger into many...
I'm using a combination of registration via configuration and convention. I've added in the FirstInterfaceConvention but it is wiping out the registrations that already exist in the container. I would...