Search code examples
c#dependency-injectionunity-container

Unity 5.x: Where's the RegisterType<TFrom, TTo>?


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?


Solution

  • It's in the namespace Unity in the Unity.Abstractions package, so

    using Unity;
    

    should suffice.