You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rebuilt to address dotnet/core#3388 - 5.0.0 package didn't have proper dates on assemblies, causing some date-related operations on assemblies to fail.
Added AutofacChildScopeServiceProviderFactory to address ASP.NET Core 3.0 / .NET Core generic hosting when using a child lifetime scope as the "root" of the app.
Added AutofacServiceProvider.LifetimeScope property to allow retrieving the root container / scope from the provider.
Added IServiceProvider.GetAutofacRoot() extension method for more conveniently and safely accessing the AutofacServiceProvider.LifetimeScope property.
Added AutofacChildScopeServiceProviderFactory to address ASP.NET Core 3.0 / .NET Core generic hosting when using a child lifetime scope as the "root" of the app.
Added AutofacServiceProvider.LifetimeScope property to allow retrieving the root container / scope from the provider.
Added IServiceProvider.GetAutofacRoot() extension method for more conveniently and safely accessing the AutofacServiceProvider.LifetimeScope property.
Resolved #32: Updated minimum Autofac version to 4.6.1 to ensure an IServiceProvider built on a child lifetime scope can properly resolve things like IOptions<T>.
Added support for specifying a child lifetime scope tag to serve as the service provider "root" - an advanced option that allows you more control over isolating things registered using the Microsoft.Extensions.DependencyInjection interfaces.