I am trying to do something like
Container.RegisterType<ISettingsService, SettingsService>(new ContainerControlledLifetimeManager());
Before v5 I was using using Microsoft.Practices.Unity;
for this.
Does the generic method still exists in v5?
It's in the namespace Unity
in the Unity.Abstractions
package, so
using Unity;
should suffice.