I develop Prism 6 application with multiple modules and I need to define an instance of IUnityContainer in the class of each module. For example:
[Module(ModuleName = "AuthorizationModule", OnDemand = false)]
public class AuthorizationModule : IModule
{
IRegionManager _regionManager;
private readonly IUnityContainer container;
. . . . .
}
but there are no assembly references referensing to IUnityContainer in the module. Should I add a reference to "Prism.Unity 6.2.0" assembly or I can restrict by adding of reference to "Microsoft.Practices.Unity" assembly to get IUnityContainer available?