• Stars
    star
    4,256
  • Rank 9,641 (Top 0.2 %)
  • Language
    C#
  • License
    MIT License
  • Created over 10 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An addictive .NET IoC container

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.

More Repositories

1

Examples

Example projects that consume and demonstrate Autofac IoC functionality and integration
C#
379
star
2

Autofac.Extensions.DependencyInjection

Autofac implementation of the interfaces in Microsoft.Extensions.DependencyInjection.Abstractions, the .NET Core dependency injection abstraction.
C#
171
star
3

Autofac.Extras.DynamicProxy

Interceptor and decorator support for Autofac IoC via Castle DynamicProxy
C#
102
star
4

Autofac.AspNetCore.Multitenant

Enables multitenant dependency injection support for ASP.NET Core.
C#
101
star
5

Documentation

Usage and API documentation for Autofac and integration libraries
JavaScript
66
star
6

Autofac.Mvc

ASP.NET MVC integration for Autofac
C#
47
star
7

Autofac.Configuration

Configuration support for Autofac IoC
C#
36
star
8

Autofac.Extras.Moq

Moq auto mocking integration for Autofac IoC
C#
35
star
9

Autofac.Multitenant

Multitenant application support for Autofac IoC
C#
35
star
10

Autofac.WebApi

ASP.NET Web API integration for Autofac
C#
35
star
11

Autofac.ServiceFabric

Autofac integration for Azure Service Fabric. Provides service factory implementations for Actors, Stateful Services and Stateless Services.
C#
25
star
12

Autofac.Owin

OWIN integration for Autofac
C#
22
star
13

Autofac.Wcf

Windows Communication Foundation (WCF) integration for Autofac IoC
C#
20
star
14

Autofac.Mef

Managed Extensibility Framework (MEF) integration for Autofac IoC
C#
19
star
15

Autofac.Web

ASP.NET WebForms integration for Autofac
C#
10
star
16

Autofac.SignalR

SignalR integration for Autofac IoC
PowerShell
10
star
17

Autofac.AspNetCore

Autofac extensions and helpers for ASP.NET Core
PowerShell
9
star
18

Autofac.WebApi.Owin

OWIN support for the ASP.NET Web API integration for Autofac
C#
8
star
19

Autofac.Extras.CommonServiceLocator

Common Service Locator implementation for Autofac IoC
PowerShell
7
star
20

Autofac.Extras.FakeItEasy

FakeItEasy auto mocking integration for Autofac IoC
C#
7
star
21

Autofac.Extras.NHibernate

Autofac implementation of the NHibernate factories
C#
6
star
22

Autofac.Extras.MvvmCross

MvvmCross integration for Autofac IoC
C#
5
star
23

Autofac.Extras.AggregateService

Dynamic aggregate service implementation generation for Autofac IoC
C#
4
star
24

Autofac.Multitenant.Wcf

Multitenant Windows Communication Foundation (WCF) enhancements for Autofac IoC
C#
3
star
25

Autofac.Pooling

Support for pooled instance lifetime scopes in Autofac dependency injection.
C#
3
star
26

Autofac.Extras.AttributeMetadata

Attribute metadata support for Autofac IoC
C#
3
star
27

Autofac.Bot.Api

Handlers for Autofac Bot commands that can be used to execute various Autofac tasks like running benchmarks.
C#
2
star
28

Autofac.Extensions.Hosting

Fluent configuration of Autofac with the Microsoft.Extensions.Hosting package
PowerShell
2
star
29

Autofac.Mvc.Owin

OWIN support for the ASP.NET MVC integration for Autofac
PowerShell
2
star
30

Autofac.Diagnostics.DotGraph

Autofac diagnostics support to enable DOT graph visualization of resolve requests.
C#
2
star
31

autofac-bot

GitHub application based on Probot for executing common Autofac-based tasks.
TypeScript
1
star
32

Autofac.Analyzers

Roslyn code analyzers to help with Autofac usage.
C#
1
star
33

Autofac.Extras.DomainServices

Autofac Domain Service Factory for RIA Services
C#
1
star