Microsoft.Extensions.DependencyInjection 9.0.14

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.
14
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
12
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
11
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
11
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
11
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
11
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
11
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
11
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.
11
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.
10
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
10
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
10
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
10
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
10
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
10
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
10
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/dc5e11abdb05b322f4b74b3afbcfb352fe984b2e
10
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/b506e2cb7b6c0fe787305f8cfdee046b7b3f9a53
10
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/8e941eb42f819adb116b881195158b3887a70a1c
10

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