Autofac.Engine 3.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Autofac.Engine --version 3.0.0
NuGet\Install-Package Autofac.Engine -Version 3.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Autofac.Engine" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Autofac.Engine --version 3.0.0
#r "nuget: Autofac.Engine, 3.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Autofac.Engine as a Cake Addin
#addin nuget:?package=Autofac.Engine&version=3.0.0

// Install Autofac.Engine as a Cake Tool
#tool nuget:?package=Autofac.Engine&version=3.0.0

Code : {
   Init:  EngineContext.Initialize(false,ScopeTag.None);
   WebMvc SetResolver:  DependencyResolver.SetResolver(new AutofacDependencyResolver(EngineContext.Scope));
   WebApi SetResolver:  GlobalConfiguration.Configuration.DependencyResolver = new AutofacWebApiDependencyResolver(EngineContext.Scope);
   Registrar:  IDependencyRegistrar:  { builder.RegisterType<Service>().As<IService>().InstancePerLifetimeScope(); }
   Resolve: EngineContext.Resolve<IService>();
}

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0.2 1,035 9/23/2022
5.0.0.1 4,395 8/18/2020
4.7.5 2,487 12/30/2019
4.7.1 1,452 12/5/2019
4.7.0 1,387 12/2/2019
4.6.0 1,395 9/25/2019
4.5.0 39,766 4/23/2019
4.3.0 2,143 10/18/2018
4.2.3 2,697 8/13/2018
4.2.0-beta 1,378 8/9/2018
3.0.2 25,637 12/22/2016
3.0.1 1,763 12/22/2016
3.0.0 2,142 12/22/2016

Autofac.Engine
http://git.oschina.net/Lycan80/Autofac.Engine
该类库只是针对Autofac进行应用封装,主要目标是使开发者在应用时更为简单。
参考:NopCommerce,Autofac,Autofac.Integration.Mvc,已应用在多个项目经验