Autofac 8.0.0

dotnet add package Autofac --version 8.0.0
NuGet\Install-Package Autofac -Version 8.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" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Autofac --version 8.0.0
#r "nuget: Autofac, 8.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 as a Cake Addin
#addin nuget:?package=Autofac&version=8.0.0

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

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. 
.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 (2.8K)

Showing the top 5 NuGet packages that depend on Autofac:

Package Downloads
Autofac.Extensions.DependencyInjection The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

Autofac.WebApi2 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Autofac integration for ASP.NET WebAPI.

Autofac.Extras.DynamicProxy The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Autofac extension for enabling AOP in conjunction with Castle.

Autofac.Mvc5 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

ASP.NET MVC 5 integration for Autofac.

Autofac.Owin The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

ASP.NET OWIN integration support for Autofac IoC.

GitHub repositories (293)

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

Repository Stars
ardalis/CleanArchitecture
Clean Architecture Solution Template: A starting point for Clean Architecture with ASP.NET Core
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 and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
Jackett/Jackett
API Support for your favorite torrent trackers
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.0.0 947,949 1/16/2024
7.1.0 3,449,416 8/11/2023
7.0.1 3,326,287 4/18/2023
7.0.0 2,323,167 3/7/2023
6.5.0 6,897,265 11/16/2022
6.4.0 20,621,327 5/25/2022
6.3.0 17,835,185 10/8/2021
6.2.0 11,986,390 4/21/2021
6.1.0 9,649,835 12/4/2020
6.0.0 26,880,517 9/28/2020
5.2.0 16,738,006 5/11/2020
5.1.4 1,333,713 4/27/2020
5.1.3 462,232 4/23/2020
5.1.2 6,098,524 2/16/2020
5.1.1 861,337 2/13/2020
5.1.0 1,328,168 2/12/2020
5.0.0 12,565,456 1/27/2020
4.9.4 20,250,850 8/15/2019
4.9.3 1,830,762 7/23/2019
4.9.2 10,965,690 3/24/2019
4.9.1 12,994,316 2/18/2019
4.9.0 750,532 2/10/2019
4.9.0-beta1 173,309 8/26/2018
4.8.1 20,342,141 5/9/2018
4.8.0 1,178,775 4/19/2018
4.7.1 219,693 4/17/2018
4.7.0 366,060 4/10/2018
4.6.2 11,407,530 10/16/2017
4.6.1 8,226,476 7/25/2017
4.6.0 2,736,351 5/16/2017
4.5.0 1,553,071 4/5/2017
4.4.0 1,468,828 3/1/2017
4.3.0 1,305,294 1/17/2017
4.2.1 1,921,452 11/23/2016
4.2.0 6,033,661 11/3/2016
4.1.1 870,683 9/22/2016
4.1.0 816,613 8/25/2016
4.0.1 4,303,361 8/24/2016
4.0.0 6,494,446 8/9/2016
4.0.0-rc3-316 229,760 7/18/2016
4.0.0-rc3-309 52,948 7/12/2016
4.0.0-rc3-293 20,079 7/6/2016
4.0.0-rc3-286 24,741 6/29/2016
4.0.0-rc3-280 44,279 6/28/2016
4.0.0-rc2-240 41,447 5/19/2016
4.0.0-rc1-177 76,522 11/19/2015
4.0.0-beta8-157 21,539 10/16/2015
4.0.0-beta7-130 24,417 9/4/2015
4.0.0-beta6-110 23,469 8/5/2015
4.0.0-beta5-90 17,479 7/21/2015
4.0.0-alpha2 20,450 5/4/2015
4.0.0-alpha1 17,361 3/12/2015
3.5.2 11,305,108 8/12/2014
3.5.0 4,223,838 6/16/2014
3.4.1 82,280 6/1/2014
3.4.0 699,289 5/9/2014
3.3.1 812,621 3/27/2014
3.3.0 406,785 12/28/2013
3.2.0 91,825 12/17/2013
3.1.5 793,163 10/29/2013
3.1.4 16,716 10/29/2013
3.1.3 96,253 10/16/2013
3.1.1 215,307 7/15/2013
3.1.0 347,338 7/12/2013
3.0.2 213,815 4/8/2013
3.0.1 231,004 2/8/2013
3.0.0 851,740 1/30/2013
3.0.0-beta2 21,237 12/23/2012
3.0.0-beta 20,348 11/1/2012
2.6.3.862 532,206 6/20/2012
2.6.2.859 33,453 6/7/2012
2.6.1.841 221,339 3/5/2012
2.5.2.830 173,551 8/12/2011
2.5.1.827 27,398 7/10/2011
2.4.5.724 88,286 3/12/2011
2.4.4.705 24,032 2/6/2011
2.4.3.700 19,754 1/30/2011
2.4.2.696 23,533 1/24/2011
2.3.2.632 23,595 1/7/2011
2.2.4.900 206,903 1/7/2011