Autofac 8.2.1

dotnet add package Autofac --version 8.2.1
                    
NuGet\Install-Package Autofac -Version 8.2.1
                    
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" Version="8.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Autofac" Version="8.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Autofac" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Autofac --version 8.2.1
                    
#r "nuget: Autofac, 8.2.1"
                    
#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.
#addin nuget:?package=Autofac&version=8.2.1
                    
Install Autofac as a Cake Addin
#tool nuget:?package=Autofac&version=8.2.1
                    
Install Autofac as a Cake Tool

Autofac character Autofac logo

Autofac is an IoC container for Microsoft .NET. It manages the dependencies between classes so that applications stay easy to change as they grow in size and complexity. This is achieved by treating regular .NET classes as components.

Build status codecov NuGet

Autofac on Stack Overflow Join the chat at https://gitter.im/autofac/autofac

Get Packages

You can get Autofac by grabbing the latest NuGet package. There are several application integration and extended functionality packages to choose from. If you're feeling adventurous, continuous integration builds are on MyGet.

Release notes are available on GitHub.

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.

Get Started

Our Getting Started tutorial walks you through integrating Autofac with a simple application and gives you some starting points for learning more.

Super-duper quick start:

Register components with a ContainerBuilder and then build the component container.

var builder = new ContainerBuilder();

builder.Register(c => new TaskController(c.Resolve<ITaskRepository>()));
builder.RegisterType<TaskController>();
builder.RegisterInstance(new TaskController());
builder.RegisterAssemblyTypes(controllerAssembly);

var container = builder.Build();

Resolve services from a lifetime scope - either the container or a nested scope:

var taskController = container.Resolve<TaskController>();

There is a growing number of application integration libraries that make using Autofac with your application a snap. Support for several popular frameworks is also available through the "Extras" packages.

Intrigued? Check out our Getting Started walkthrough!

Project

Autofac is licensed under the MIT license, so you can comfortably use it in commercial applications (we still love contributions though).

File issues in the repo with the associated feature/code.

Sponsors

Autofac is supported by AWS. Thanks for your contribution!

Contributing / Pull Requests

Refer to the Contributor Guide for setting up and building Autofac source.

You can also open this repository right now in VS Code.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.0K)

Showing the top 5 NuGet packages that depend on Autofac:

Package Downloads
Autofac.Extensions.DependencyInjection

Autofac implementation of the interfaces in Microsoft.Extensions.DependencyInjection.Abstractions, the .NET Framework dependency injection abstraction.

Autofac.WebApi2

Autofac integration for ASP.NET WebAPI.

Aspose.Words

Aspose.Words for .NET is a powerful, high-performance document processing library for creating, editing, converting, and rendering Word and PDF files in C#. It supports DOCX, DOC, RTF, ODT, HTML, PDF, Markdown, and over 30 formats. Designed for .NET developers, it enables advanced document automation, mail merge, text extraction, and report generation. Aspose.Words ensures high fidelity in document conversion, seamless API integration, and cross-platform compatibility. Ideal for cloud, web, and desktop applications.

Autofac.Extras.DynamicProxy

Autofac extension for enabling AOP in conjunction with Castle.

Autofac.Mvc5

ASP.NET MVC 5 integration for Autofac.

GitHub repositories (296)

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

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
Jackett/Jackett
API Support for your favorite torrent trackers
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
jbogard/MediatR
Simple, unambitious mediator implementation in .NET
JamesNK/Newtonsoft.Json
Json.NET is a popular high-performance JSON framework for .NET
Version Downloads Last updated
8.2.1 12,592 4/3/2025
8.2.0 1,806,812 12/17/2024
8.1.1 3,144,976 10/9/2024
8.1.0 4,308,770 9/2/2024
8.0.0 17,027,214 1/16/2024
7.1.0 7,983,054 8/11/2023
7.0.1 5,114,355 4/18/2023
7.0.0 3,532,065 3/7/2023
6.5.0 12,304,415 11/16/2022
6.4.0 30,188,706 5/25/2022
6.3.0 22,428,437 10/8/2021
6.2.0 14,857,833 4/21/2021
6.1.0 10,996,413 12/4/2020
6.0.0 33,538,739 9/28/2020
5.2.0 20,681,615 5/11/2020
5.1.4 1,544,755 4/27/2020
5.1.3 544,986 4/23/2020
5.1.2 6,856,627 2/16/2020
5.1.1 985,592 2/13/2020
5.1.0 1,526,690 2/12/2020
5.0.0 15,135,144 1/27/2020
4.9.4 23,889,644 8/15/2019
4.9.3 2,050,285 7/23/2019
4.9.2 11,976,668 3/24/2019
4.9.1 17,890,364 2/18/2019
4.9.0 828,609 2/10/2019
4.9.0-beta1 179,925 8/26/2018
4.8.1 24,350,312 5/9/2018
4.8.0 1,327,217 4/19/2018
4.7.1 259,020 4/17/2018
4.7.0 410,720 4/10/2018
4.6.2 12,969,795 10/16/2017
4.6.1 9,445,318 7/25/2017
4.6.0 3,064,046 5/16/2017
4.5.0 1,995,070 4/5/2017
4.4.0 1,683,935 3/1/2017
4.3.0 1,434,145 1/17/2017
4.2.1 2,139,930 11/23/2016
4.2.0 6,742,138 11/3/2016
4.1.1 994,296 9/22/2016
4.1.0 896,347 8/25/2016
4.0.1 4,843,358 8/24/2016
4.0.0 7,618,906 8/9/2016
4.0.0-rc3-316 268,803 7/18/2016
4.0.0-rc3-309 54,421 7/12/2016
4.0.0-rc3-293 20,966 7/6/2016
4.0.0-rc3-286 25,357 6/29/2016
4.0.0-rc3-280 44,958 6/28/2016
4.0.0-rc2-240 43,288 5/19/2016
4.0.0-rc1-177 81,069 11/19/2015
4.0.0-beta8-157 21,879 10/16/2015
4.0.0-beta7-130 24,768 9/4/2015
4.0.0-beta6-110 23,794 8/5/2015
4.0.0-beta5-90 17,838 7/21/2015
4.0.0-alpha2 20,800 5/4/2015
4.0.0-alpha1 17,694 3/12/2015
3.5.2 12,632,677 8/12/2014
3.5.0 4,935,522 6/16/2014
3.4.1 88,094 6/1/2014
3.4.0 800,729 5/9/2014
3.3.1 945,902 3/27/2014
3.3.0 429,108 12/28/2013
3.2.0 104,463 12/17/2013
3.1.5 842,324 10/29/2013
3.1.4 17,113 10/29/2013
3.1.3 132,341 10/16/2013
3.1.1 229,412 7/15/2013
3.1.0 408,288 7/12/2013
3.0.2 228,210 4/8/2013
3.0.1 252,515 2/8/2013
3.0.0 961,810 1/30/2013
3.0.0-beta2 21,820 12/23/2012
3.0.0-beta 21,447 11/1/2012
2.6.3.862 585,591 6/20/2012
2.6.2.859 35,016 6/7/2012
2.6.1.841 244,858 3/5/2012
2.5.2.830 186,237 8/12/2011
2.5.1.827 28,244 7/10/2011
2.4.5.724 92,533 3/12/2011
2.4.4.705 25,164 2/6/2011
2.4.3.700 20,302 1/30/2011
2.4.2.696 24,271 1/24/2011
2.3.2.632 24,312 1/7/2011
2.2.4.900 262,207 1/7/2011