Skip to content

Instantly share code, notes, and snippets.

@mahizsas
Forked from 3nth/AutofacConfig
Last active August 29, 2015 14:14
Show Gist options
  • Save mahizsas/3a1285c94d03fede72a8 to your computer and use it in GitHub Desktop.
Save mahizsas/3a1285c94d03fede72a8 to your computer and use it in GitHub Desktop.
public class AutofacConfig
{
public static void Configure()
{
var builder = new ContainerBuilder();
builder.RegisterType<ApplicationDbContext>().AsSelf().InstancePerLifetimeScope();
builder.RegisterType<ApplicationUserStore>().As<IUserStore<PortalUser>>().InstancePerLifetimeScope();
builder.RegisterType<ApplicationUserManager>().AsSelf().InstancePerLifetimeScope();
builder.RegisterType<ApplicationSignInManager>().AsSelf().InstancePerLifetimeScope();
builder.Register<IAuthenticationManager>(c => HttpContext.Current.GetOwinContext().Authentication);
builder.RegisterModule(new AutofacWebTypesModule());
builder.RegisterFilterProvider();
builder.RegisterControllers(Assembly.GetExecutingAssembly());
IContainer container = builder.Build();
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment