Autofac 8.1.1
dotnet add package Autofac --version 8.1.1
NuGet\Install-Package Autofac -Version 8.1.1
<PackageReference Include="Autofac" Version="8.1.1" />
paket add Autofac --version 8.1.1
#r "nuget: Autofac, 8.1.1"
// Install Autofac as a Cake Addin #addin nuget:?package=Autofac&version=8.1.1 // Install Autofac as a Cake Tool #tool nuget:?package=Autofac&version=8.1.1
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.
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.
- Autofac - Core dependency resolution and common functions (this repo).
- Autofac.AspNetCore.Multitenant - Multitenant DI support for ASP.NET Core applications.
- Autofac.Configuration - JSON/XML file-based configuration support.
- Autofac.Diagnostics.DotGraph - Diagnostics support to enable DOT graph visualization of resolve requests.
- Autofac.Extensions.DependencyInjection - .NET Core integration for Autofac.
- Autofac.Extras.AggregateService - Dynamic aggregate service implementation generation.
- Autofac.Extras.AttributeMetadata - Metadata scanning/filtering through attributes.
- Autofac.Extras.CommonServiceLocator - Common Service Locator implementation backed by Autofac.
- Autofac.Extras.DynamicProxy - Decorators and interceptors.
- Autofac.Extras.FakeItEasy - FakeItEasy mocking framework integration.
- Autofac.Extras.Moq - Moq mocking framework integration.
- Autofac.Mef - MEF catalog integration.
- Autofac.Multitenant - Multitenant dependency resolution support.
- Autofac.Multitenant.Wcf - Multitenant WCF service hosting.
- Autofac.Mvc - ASP.NET MVC integration.
- Autofac.Mvc.Owin - OWIN support for ASP.NET MVC.
- Autofac.Owin - Core OWIN support - shared middleware for request lifetime integration.
- Autofac.Pooling - Support for pooled instance lifetime scopes.
- Autofac.ServiceFabric - Application integration for Service Fabric services.
- Autofac.SignalR - Application integration for SignalR.
- Autofac.Wcf - WCF service hosting.
- Autofac.Web - ASP.NET web forms integration.
- Autofac.WebApi - Application integration for Web API.
- Autofac.WebApi.Owin - OWIN support for Web API.
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 | Versions 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. |
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
-
.NETStandard 2.1
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
-
net6.0
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
-
net7.0
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
-
net8.0
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
NuGet packages (2.9K)
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. |
|
Autofac.Extras.DynamicProxy
Autofac extension for enabling AOP in conjunction with Castle. |
|
Autofac.Mvc5
ASP.NET MVC 5 integration for Autofac. |
|
Autofac.Owin
ASP.NET OWIN integration support for Autofac IoC. |
GitHub repositories (297)
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. 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
|
|
jbogard/MediatR
Simple, unambitious mediator implementation in .NET
|
|
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
|
Version | Downloads | Last updated |
---|---|---|
8.1.1 | 292,480 | 10/9/2024 |
8.1.0 | 928,094 | 9/2/2024 |
8.0.0 | 10,130,066 | 1/16/2024 |
7.1.0 | 6,466,605 | 8/11/2023 |
7.0.1 | 4,523,006 | 4/18/2023 |
7.0.0 | 3,158,759 | 3/7/2023 |
6.5.0 | 9,930,106 | 11/16/2022 |
6.4.0 | 26,595,250 | 5/25/2022 |
6.3.0 | 20,658,542 | 10/8/2021 |
6.2.0 | 13,691,067 | 4/21/2021 |
6.1.0 | 10,542,704 | 12/4/2020 |
6.0.0 | 31,165,917 | 9/28/2020 |
5.2.0 | 18,998,903 | 5/11/2020 |
5.1.4 | 1,477,753 | 4/27/2020 |
5.1.3 | 508,752 | 4/23/2020 |
5.1.2 | 6,570,074 | 2/16/2020 |
5.1.1 | 939,710 | 2/13/2020 |
5.1.0 | 1,454,844 | 2/12/2020 |
5.0.0 | 14,132,943 | 1/27/2020 |
4.9.4 | 22,505,069 | 8/15/2019 |
4.9.3 | 1,963,462 | 7/23/2019 |
4.9.2 | 11,631,453 | 3/24/2019 |
4.9.1 | 15,387,795 | 2/18/2019 |
4.9.0 | 798,898 | 2/10/2019 |
4.9.0-beta1 | 176,903 | 8/26/2018 |
4.8.1 | 22,768,558 | 5/9/2018 |
4.8.0 | 1,270,030 | 4/19/2018 |
4.7.1 | 245,540 | 4/17/2018 |
4.7.0 | 396,749 | 4/10/2018 |
4.6.2 | 12,404,134 | 10/16/2017 |
4.6.1 | 8,966,457 | 7/25/2017 |
4.6.0 | 2,945,600 | 5/16/2017 |
4.5.0 | 1,729,041 | 4/5/2017 |
4.4.0 | 1,601,822 | 3/1/2017 |
4.3.0 | 1,387,193 | 1/17/2017 |
4.2.1 | 2,055,249 | 11/23/2016 |
4.2.0 | 6,448,919 | 11/3/2016 |
4.1.1 | 964,407 | 9/22/2016 |
4.1.0 | 865,247 | 8/25/2016 |
4.0.1 | 4,625,524 | 8/24/2016 |
4.0.0 | 7,157,118 | 8/9/2016 |
4.0.0-rc3-316 | 251,197 | 7/18/2016 |
4.0.0-rc3-309 | 53,730 | 7/12/2016 |
4.0.0-rc3-293 | 20,615 | 7/6/2016 |
4.0.0-rc3-286 | 25,210 | 6/29/2016 |
4.0.0-rc3-280 | 44,781 | 6/28/2016 |
4.0.0-rc2-240 | 42,318 | 5/19/2016 |
4.0.0-rc1-177 | 78,856 | 11/19/2015 |
4.0.0-beta8-157 | 21,732 | 10/16/2015 |
4.0.0-beta7-130 | 24,595 | 9/4/2015 |
4.0.0-beta6-110 | 23,658 | 8/5/2015 |
4.0.0-beta5-90 | 17,680 | 7/21/2015 |
4.0.0-alpha2 | 20,656 | 5/4/2015 |
4.0.0-alpha1 | 17,552 | 3/12/2015 |
3.5.2 | 12,169,531 | 8/12/2014 |
3.5.0 | 4,625,400 | 6/16/2014 |
3.4.1 | 85,274 | 6/1/2014 |
3.4.0 | 760,040 | 5/9/2014 |
3.3.1 | 878,606 | 3/27/2014 |
3.3.0 | 422,682 | 12/28/2013 |
3.2.0 | 99,999 | 12/17/2013 |
3.1.5 | 834,922 | 10/29/2013 |
3.1.4 | 16,918 | 10/29/2013 |
3.1.3 | 116,118 | 10/16/2013 |
3.1.1 | 222,930 | 7/15/2013 |
3.1.0 | 384,608 | 7/12/2013 |
3.0.2 | 221,108 | 4/8/2013 |
3.0.1 | 247,487 | 2/8/2013 |
3.0.0 | 909,977 | 1/30/2013 |
3.0.0-beta2 | 21,667 | 12/23/2012 |
3.0.0-beta | 21,073 | 11/1/2012 |
2.6.3.862 | 566,074 | 6/20/2012 |
2.6.2.859 | 34,319 | 6/7/2012 |
2.6.1.841 | 242,477 | 3/5/2012 |
2.5.2.830 | 181,153 | 8/12/2011 |
2.5.1.827 | 27,937 | 7/10/2011 |
2.4.5.724 | 91,205 | 3/12/2011 |
2.4.4.705 | 24,797 | 2/6/2011 |
2.4.3.700 | 20,120 | 1/30/2011 |
2.4.2.696 | 23,954 | 1/24/2011 |
2.3.2.632 | 24,066 | 1/7/2011 |
2.2.4.900 | 237,000 | 1/7/2011 |
Release notes are at https://github.com/autofac/Autofac/releases