Autofac
sealed partial class App : Application
{
ApplicationBootstrapper bootstrapper;
public App()
{
this.bootstrapper = new AutofacApplicationBootstrapper<Presentation.MainView>();
}
}public class DefaultModule : IAutofacModule
{
public void Configure( ContainerBuilder builder, BootstrapConventions conventions, IEnumerable<Assembly> assemblies )
{
//register your components here.
}
}Last updated