Autofac.Mvc5 6.1.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Autofac.Mvc5 --version 6.1.0
NuGet\Install-Package Autofac.Mvc5 -Version 6.1.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.Mvc5" Version="6.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Autofac.Mvc5 --version 6.1.0
#r "nuget: Autofac.Mvc5, 6.1.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.Mvc5 as a Cake Addin
#addin nuget:?package=Autofac.Mvc5&version=6.1.0

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

Autofac.Mvc

ASP.NET MVC integration for Autofac.

Build status

Please file issues and pull requests for this package in this repository rather than in the Autofac core repo.

If you're working with ASP.NET Core, you want Autofac.Extensions.DependencyInjection, not this package.

Quick Start

To get Autofac integrated with MVC you need to reference this MVC integration NuGet package, register your controllers, and set the dependency resolver. You can optionally enable other features as well.

protected void Application_Start()
{
  var builder = new ContainerBuilder();

  // Register your MVC controllers. (MvcApplication is the name of
  // the class in Global.asax.)
  builder.RegisterControllers(typeof(MvcApplication).Assembly);

  // OPTIONAL: Register model binders that require DI.
  builder.RegisterModelBinders(typeof(MvcApplication).Assembly);
  builder.RegisterModelBinderProvider();

  // OPTIONAL: Register web abstractions like HttpContextBase.
  builder.RegisterModule<AutofacWebTypesModule>();

  // OPTIONAL: Enable property injection in view pages.
  builder.RegisterSource(new ViewRegistrationSource());

  // OPTIONAL: Enable property injection into action filters.
  builder.RegisterFilterProvider();

  // OPTIONAL: Enable action method parameter injection (RARE).
  builder.InjectActionInvoker();

  // Set the dependency resolver to be Autofac.
  var container = builder.Build();
  DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
}

If you are using MVC as part of an OWIN application, you may be interested in the ASP.NET MVC OWIN integration.

Check out the Autofac ASP.NET MVC integration documentation for more information.

Get Help

Need help with Autofac? We have a documentation site as well as API documentation. We're ready to answer your questions on Stack Overflow or check out the discussion forum.

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

NuGet packages (77)

Showing the top 5 NuGet packages that depend on Autofac.Mvc5:

Package Downloads
Bnsights.Mvc

Bnsights.Mvc is RAD Helper DLL for MVC Projects in Bnsights DMCC. Also known as Bnsights Business Solutions Framework (BBSF).

Vault.MVC.V

Part of Vault libraries set designed to enhance usability of ASP.NET MVC 5+.

TouchConvert.Tenant.Api.V1.Dtos

Data transfer objects for TouchConvert version one APIs.

TouchConvert.Tenant.Api.V2.Dtos

Data transfer objects for TouchConvert version two APIs.

Bnsights.Mvc2

Bnsights.Mvc is RAD Helper DLL for MVC Projects in Bnsights DMCC. Also known as Bnsights Business Solutions Framework (BBSF).

GitHub repositories (26)

Showing the top 5 popular GitHub repositories that depend on Autofac.Mvc5:

Repository Stars
openiddict/openiddict-core
Flexible and versatile OAuth 2.0/OpenID Connect stack for .NET
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
NuGet/NuGetGallery
NuGet Gallery is a package repository that powers https://www.nuget.org. Use this repo for reporting NuGet.org issues.
fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat
可能是全网最完整的 C# 版微信 SDK,封装全部已知的微信 API,包含微信公众平台(订阅号+服务号+小程序+小游戏+小商店+视频号)、微信开放平台、微信商户平台(微信支付+微企付)、企业微信、微信广告平台、微信智能对话开放平台等模块,可跨平台。持续随官方更新,欢迎 Star/Fork/PR。QQ 交流群 875580418【满】、930461548。
Varorbc/PaySharp
PaySharp是一个支持多商户多种支付方式的跨平台网关处理类库,使用PaySharp可以简化订单的创建、查询、退款和接收网关返回的支付通知等操作。
Version Downloads Last updated
6.1.0 686,268 8/23/2022
6.0.0 2,529,498 9/28/2020
5.0.0 1,701,767 1/28/2020
4.0.2 8,132,143 4/10/2017
4.0.1 449,820 2/8/2017
4.0.0 1,510,294 8/10/2016
4.0.0-rc3-222 2,727 7/18/2016
4.0.0-rc3-219 4,163 7/1/2016
3.3.4 2,547,777 4/30/2015
3.3.3 611,031 9/4/2014
3.3.2 120,829 7/17/2014
3.3.1 103,944 7/2/2014
3.3.0 55,919 5/9/2014
3.2.1 33,811 3/27/2014
3.2.0 47,890 1/28/2014
3.1.0 50,049 12/28/2013
3.0.0 87,311 10/24/2013
3.0.0-rc1 5,301 9/3/2013