Microsoft.Extensions.DependencyInjection 9.0.16

About

Supports the dependency injection (DI) software design pattern which is a technique for achieving Inversion of Control (IoC) between classes and their dependencies.

Key Features

Provides an implementation of the DI interfaces found in the Microsoft.Extensions.DependencyInjection.Abstractions package.

How to Use

ServiceCollection services = new ();
services.AddSingleton<IMessageWriter, MessageWriter>();
using ServiceProvider provider = services.BuildServiceProvider();

// The code below, following the IoC pattern, is typically only aware of the IMessageWriter interface, not the implementation.
IMessageWriter messageWriter = provider.GetService<IMessageWriter>()!;
messageWriter.Write("Hello");

public interface IMessageWriter
{
    void Write(string message);
}

internal class MessageWriter : IMessageWriter
{
    public void Write(string message)
    {
        Console.WriteLine($"MessageWriter.Write(message: \"{message}\")");
    }
}

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.DependencyInjection.DefaultServiceProviderFactory
  • Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions
  • Microsoft.Extensions.DependencyInjection.ServiceProvider

Additional Documentation

  • Microsoft.Extensions.DependencyInjection.Abstractions
  • Microsoft.Extensions.Hosting
  • Microsoft.Extensions.Options

Feedback & Contributing

Microsoft.Extensions.DependencyInjection is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on Microsoft.Extensions.DependencyInjection.

Packages Downloads
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
16
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/e3187077455f953200e3c930430808a30f48b82e
14
Microsoft.CodeAnalysis.Workspaces.MSBuild
.NET Compiler Platform ("Roslyn") support for analyzing MSBuild projects and solutions. This should be used with at least one of the following packages to add the appropriate language support: - Microsoft.CodeAnalysis.CSharp.Workspaces - Microsoft.CodeAnalysis.VisualBasic.Workspaces More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/5e3a11e2e7f952da93f9d35bd63a2fa181c0608b.
14
Microsoft.AspNetCore.Mvc.Core
ASP.NET Core MVC core components. Contains common action result types, attribute routing, application model conventions, API explorer, application parts, filters, formatters, model binding, and more. Commonly used types: Microsoft.AspNetCore.Mvc.AreaAttribute Microsoft.AspNetCore.Mvc.BindAttribute Microsoft.AspNetCore.Mvc.ControllerBase Microsoft.AspNetCore.Mvc.FromBodyAttribute Microsoft.AspNetCore.Mvc.FromFormAttribute Microsoft.AspNetCore.Mvc.RequireHttpsAttribute Microsoft.AspNetCore.Mvc.RouteAttribute This package was built from the source code at https://github.com/aspnet/Mvc/tree/a6199bbfbab05583f987bae322fb04566841aaea
13
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
13
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/f0f9de5692adf1c0576de062f93c6ab7b176433f
13
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/bb01bbf4433e27289b99001b7de6a582879d1835
13
Microsoft.AspNetCore.Mvc.Core
ASP.NET Core MVC core components. Contains common action result types, attribute routing, application model conventions, API explorer, application parts, filters, formatters, model binding, and more. Commonly used types: Microsoft.AspNetCore.Mvc.AreaAttribute Microsoft.AspNetCore.Mvc.BindAttribute Microsoft.AspNetCore.Mvc.ControllerBase Microsoft.AspNetCore.Mvc.FromBodyAttribute Microsoft.AspNetCore.Mvc.FromFormAttribute Microsoft.AspNetCore.Mvc.RequireHttpsAttribute Microsoft.AspNetCore.Mvc.RouteAttribute
13
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
13
DevExpress.Xpo
eXpress Persistent Objects (XPO) is an Object-Relational Mapping (ORM) tool that handles all aspects of database creation and object persistence, allowing you to concentrate on your application's business logic. XPO supports more than a dozen database management systems and implements a common high-level API. Whether using MS SQL Server, PostgreSQL, MySQL, Oracle, or others, you will use the same code to implement data access and management operations. Should you decide to move your storage to a different database system, you’ll only need to change the connection string. For more information, see https://DevExpress.com/XPO.
13
DevExpress.Xpo
eXpress Persistent Objects (XPO) is an Object-Relational Mapping (ORM) tool that handles all aspects of database creation and object persistence, allowing you to concentrate on your application's business logic. XPO supports more than a dozen database management systems and implements a common high-level API. Whether using MS SQL Server, PostgreSQL, MySQL, Oracle, or others, you will use the same code to implement data access and management operations. Should you decide to move your storage to a different database system, you’ll only need to change the connection string. For more information, see https://DevExpress.com/XPO.
12
Microsoft.AspNetCore.Mvc.Localization
ASP.NET Core MVC features that enable globalization and localization of applications. Commonly used types: Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer<TResource> Microsoft.AspNetCore.Mvc.Localization.IViewLocalizer
12
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/954f61dd38b33caa2b736c73530bd5a294174437
12
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
12
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/5a4c82ec57fadddef9ce841d608de5c7c8c74446
12
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/bc25dd5d39fd057f7cb28acb5ad4d9e925a375de
12
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/cd9340856ed85215a911c97c44d52373f6cba2f9
12
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b8139c5ee58f1708b0e3368a1b241400edd6cbc4
12

Version Downloads Last updated
11.0.0-preview.5.26302.115 0 06/09/2026
11.0.0-preview.4.26230.115 1 05/20/2026
11.0.0-preview.3.26207.106 2 04/28/2026
11.0.0-preview.2.26159.112 4 03/13/2026
11.0.0-preview.1.26104.118 3 03/21/2026
10.0.9 0 06/09/2026
10.0.8 1 05/20/2026
10.0.7 2 04/24/2026
10.0.6 2 04/27/2026
10.0.5 4 03/13/2026
10.0.4 4 03/13/2026
10.0.3 4 02/23/2026
10.0.2 5 01/16/2026
10.0.1 5 01/16/2026
10.0.0 5 01/16/2026
10.0.0-rc.2.25502.107 6 11/11/2025
10.0.0-rc.1.25451.107 7 09/14/2025
10.0.0-preview.7.25380.108 6 09/15/2025
10.0.0-preview.6.25358.103 6 09/15/2025
10.0.0-preview.5.25277.114 7 06/24/2025
10.0.0-preview.4.25258.110 7 05/29/2025
10.0.0-preview.3.25171.5 7 05/28/2025
10.0.0-preview.2.25163.2 9 03/21/2025
10.0.0-preview.1.25080.5 10 02/27/2025
9.0.17 0 06/09/2026
9.0.16 1 05/20/2026
9.0.15 2 04/27/2026
9.0.14 4 03/13/2026
9.0.13 4 02/23/2026
9.0.12 5 01/16/2026
9.0.11 5 01/16/2026
9.0.10 5 11/11/2025
9.0.9 7 09/14/2025
9.0.8 7 09/14/2025
9.0.7 7 09/14/2025
9.0.6 8 06/23/2025
9.0.5 8 05/26/2025
9.0.4 8 05/26/2025
9.0.3 10 03/11/2025
9.0.2 11 02/18/2025
9.0.1 11 02/18/2025
9.0.0 11 02/18/2025
9.0.0-rc.2.24473.5 10 02/27/2025
9.0.0-rc.1.24431.7 10 02/27/2025
9.0.0-preview.7.24405.7 9 02/18/2025
9.0.0-preview.6.24327.7 10 02/18/2025
9.0.0-preview.5.24306.7 6 05/30/2025
9.0.0-preview.4.24266.19 8 02/18/2025
9.0.0-preview.3.24172.9 8 02/18/2025
9.0.0-preview.2.24128.5 8 02/18/2025
9.0.0-preview.1.24080.9 6 05/29/2025
8.0.1 11 02/18/2025
8.0.0 16 01/24/2025
8.0.0-rc.2.23479.6 8 05/28/2025
8.0.0-rc.1.23419.4 8 05/28/2025
8.0.0-preview.7.23375.6 9 02/18/2025
8.0.0-preview.6.23329.7 8 02/18/2025
8.0.0-preview.5.23280.8 6 05/29/2025
8.0.0-preview.4.23259.5 8 02/18/2025
8.0.0-preview.3.23174.8 8 02/18/2025
8.0.0-preview.2.23128.3 8 02/27/2025
8.0.0-preview.1.23110.8 6 05/29/2025
7.0.0 11 02/18/2025
7.0.0-rc.2.22472.3 8 05/28/2025
7.0.0-rc.1.22426.10 8 05/28/2025
7.0.0-preview.7.22375.6 8 03/11/2025
7.0.0-preview.6.22324.4 6 05/29/2025
7.0.0-preview.5.22301.12 6 05/30/2025
7.0.0-preview.4.22229.4 6 05/29/2025
7.0.0-preview.3.22175.4 8 02/18/2025
7.0.0-preview.2.22152.2 6 05/29/2025
7.0.0-preview.1.22076.8 11 02/18/2025
6.0.2 12 02/18/2025
6.0.1 11 02/18/2025
6.0.0 15 02/18/2025
6.0.0-rc.2.21480.5 8 05/28/2025
6.0.0-rc.1.21451.13 8 05/28/2025
6.0.0-preview.7.21377.19 8 02/18/2025
6.0.0-preview.6.21352.12 5 05/30/2025
6.0.0-preview.5.21301.5 6 05/29/2025
6.0.0-preview.4.21253.7 6 05/30/2025
6.0.0-preview.3.21201.4 6 05/29/2025
6.0.0-preview.2.21154.6 9 02/18/2025
6.0.0-preview.1.21102.12 5 05/30/2025
5.0.2 11 02/18/2025
5.0.1 12 02/18/2025
5.0.0 12 02/18/2025
5.0.0-rc.2.20475.5 10 03/11/2025
5.0.0-rc.1.20451.14 8 05/28/2025
5.0.0-preview.8.20407.11 8 02/18/2025
5.0.0-preview.7.20364.11 6 05/31/2025
5.0.0-preview.6.20305.6 6 05/29/2025
5.0.0-preview.5.20278.1 8 02/18/2025
5.0.0-preview.4.20251.6 8 02/18/2025
5.0.0-preview.3.20215.2 7 05/29/2025
5.0.0-preview.2.20160.3 6 05/29/2025
5.0.0-preview.1.20120.4 8 02/27/2025
3.1.32 11 02/18/2025
3.1.31 11 02/18/2025
3.1.30 11 02/18/2025
3.1.29 12 02/18/2025
3.1.28 11 02/18/2025
3.1.27 11 02/18/2025
3.1.26 10 02/18/2025
3.1.25 12 02/18/2025
3.1.24 11 02/18/2025
3.1.23 11 02/18/2025
3.1.22 11 02/18/2025
3.1.21 11 02/18/2025
3.1.20 11 02/18/2025
3.1.19 11 02/18/2025
3.1.18 12 02/18/2025
3.1.17 12 02/18/2025
3.1.16 11 02/18/2025
3.1.15 11 02/18/2025
3.1.14 11 02/18/2025
3.1.13 11 02/18/2025
3.1.12 12 02/18/2025
3.1.11 11 02/18/2025
3.1.10 11 02/18/2025
3.1.9 11 02/18/2025
3.1.8 11 02/18/2025
3.1.7 11 02/18/2025
3.1.6 11 02/18/2025
3.1.5 11 02/18/2025
3.1.4 11 02/18/2025
3.1.3 11 02/18/2025
3.1.2 11 02/18/2025
3.1.1 11 02/18/2025
3.1.0 11 02/18/2025
3.1.0-preview3.19553.2 6 05/29/2025
3.1.0-preview2.19525.4 5 05/30/2025
3.1.0-preview1.19506.1 6 05/29/2025
3.0.3 11 02/18/2025
3.0.2 11 02/18/2025
3.0.1 11 02/18/2025
3.0.0 11 02/18/2025
3.0.0-rc1.19456.10 6 05/29/2025
3.0.0-preview9.19423.4 8 02/18/2025
3.0.0-preview8.19405.4 8 02/18/2025
3.0.0-preview7.19362.4 5 05/30/2025
3.0.0-preview6.19304.6 5 05/29/2025
3.0.0-preview5.19227.9 5 05/30/2025
3.0.0-preview4.19216.2 5 05/30/2025
3.0.0-preview3.19153.1 6 05/29/2025
3.0.0-preview.19074.2 8 02/18/2025
3.0.0-preview.18572.1 8 02/18/2025
2.2.0 12 02/18/2025
2.2.0-preview3-35497 5 05/30/2025
2.2.0-preview2-35157 9 02/18/2025
2.2.0-preview1-35029 8 02/18/2025
2.1.1 11 02/18/2025
2.1.0 11 02/18/2025
2.1.0-rc1-final 11 02/18/2025
2.1.0-preview2-final 11 02/18/2025
2.1.0-preview1-final 11 02/18/2025
2.0.0 12 02/18/2025
2.0.0-preview2-final 11 02/18/2025
2.0.0-preview1-final 11 02/18/2025
1.1.1 10 02/18/2025
1.1.0 11 02/18/2025
1.1.0-preview1-final 12 02/18/2025
1.0.2 11 02/18/2025
1.0.1 11 02/18/2025
1.0.0 11 02/18/2025
1.0.0-rc2-final 12 02/18/2025
1.0.0-rc1-final 11 02/18/2025