Microsoft.Extensions.DependencyInjection 9.0.8

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.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications.
1,027
Microsoft.EntityFrameworkCore
Entity Framework Core is a lightweight and extensible version of the popular Entity Framework data access technology. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
170
Microsoft.EntityFrameworkCore
Entity Framework Core is a lightweight and extensible version of the popular Entity Framework data access technology. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
298
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
191
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
195
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
289
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet
566
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
167
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
280
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
306
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
409
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
583
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
764
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging. When using NuGet 3.x this package requires at least version 3.4.
2,264
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies. This package was built from the source code at https://github.com/aspnet/scaffolding/tree/f8f366c1a8149cdec2078f9c241403e56019292d
296
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators. This package was built from the source code at https://github.com/aspnet/scaffolding/tree/f8f366c1a8149cdec2078f9c241403e56019292d
306
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
176
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
463
Serilog.AspNetCore
Serilog support for ASP.NET Core logging
515
Swashbuckle.AspNetCore.Filters
Some additional useful filters for Swashbuckle.AspNetCore. This package replaces Swashbuckle.AspNetCore.Examples.
427

https://go.microsoft.com/fwlink/?LinkID=799421

Version Downloads Last updated
10.0.0-preview.7.25380.108 2 08/16/2025
10.0.0-preview.6.25358.103 4 07/19/2025
10.0.0-preview.5.25277.114 8 06/08/2025
10.0.0-preview.4.25258.110 15 05/19/2025
10.0.0-preview.3.25171.5 18 04/17/2025
10.0.0-preview.2.25163.2 14 04/01/2025
10.0.0-preview.1.25080.5 16 03/07/2025
9.0.8 2 08/09/2025
9.0.7 3 07/18/2025
9.0.6 8 06/14/2025
9.0.5 9 05/17/2025
9.0.4 14 04/16/2025
9.0.3 18 03/14/2025
9.0.2 18 03/07/2025
9.0.1 18 01/20/2025
9.0.0 19 11/24/2024
9.0.0-rc.2.24473.5 20 10/09/2024
9.0.0-rc.1.24431.7 23 09/12/2024
9.0.0-preview.7.24405.7 22 08/18/2024
9.0.0-preview.6.24327.7 19 07/11/2024
9.0.0-preview.5.24306.7 17 06/26/2024
9.0.0-preview.4.24266.19 18 05/28/2024
9.0.0-preview.3.24172.9 19 04/14/2024
9.0.0-preview.2.24128.5 25 03/13/2024
9.0.0-preview.1.24080.9 20 03/13/2024
8.0.1 21 10/13/2024
8.0.0 26 11/16/2023
8.0.0-rc.2.23479.6 31 12/08/2023
8.0.0-rc.1.23419.4 29 02/11/2024
8.0.0-preview.7.23375.6 23 02/11/2024
8.0.0-preview.6.23329.7 23 02/11/2024
8.0.0-preview.5.23280.8 26 02/11/2024
8.0.0-preview.4.23259.5 26 02/11/2024
8.0.0-preview.3.23174.8 25 02/11/2024
8.0.0-preview.2.23128.3 20 02/11/2024
8.0.0-preview.1.23110.8 24 12/05/2023
7.0.0 26 11/23/2022
7.0.0-rc.2.22472.3 26 02/11/2024
7.0.0-rc.1.22426.10 27 01/05/2024
7.0.0-preview.7.22375.6 26 02/11/2024
7.0.0-preview.6.22324.4 22 02/11/2024
7.0.0-preview.5.22301.12 28 02/11/2024
7.0.0-preview.4.22229.4 21 02/11/2024
7.0.0-preview.3.22175.4 23 02/11/2024
7.0.0-preview.2.22152.2 26 02/11/2024
7.0.0-preview.1.22076.8 24 03/10/2022
6.0.2 22 11/24/2024
6.0.2-mauipre.1.22102.15 24 02/11/2024
6.0.2-mauipre.1.22054.8 26 02/11/2024
6.0.1 40 10/27/2022
6.0.0 594 11/19/2021
6.0.0-rc.2.21480.5 27 02/11/2024
6.0.0-rc.1.21451.13 24 02/11/2024
6.0.0-preview.7.21377.19 24 02/11/2024
6.0.0-preview.6.21352.12 25 02/11/2024
6.0.0-preview.5.21301.5 20 02/11/2024
6.0.0-preview.4.21253.7 24 02/11/2024
6.0.0-preview.3.21201.4 23 02/09/2024
6.0.0-preview.2.21154.6 27 02/11/2024
6.0.0-preview.1.21102.12 21 02/11/2024
5.0.2 226 07/13/2021
5.0.1 351 12/10/2020
5.0.0 2,337 11/10/2020
5.0.0-rc.2.20475.5 28 02/11/2024
5.0.0-rc.1.20451.14 26 02/04/2024
5.0.0-preview.8.20407.11 25 02/11/2024
5.0.0-preview.7.20364.11 27 02/11/2024
5.0.0-preview.6.20305.6 25 02/11/2024
5.0.0-preview.5.20278.1 20 02/11/2024
5.0.0-preview.4.20251.6 32 02/11/2024
5.0.0-preview.3.20215.2 23 02/11/2024
5.0.0-preview.2.20160.3 24 02/11/2024
5.0.0-preview.1.20120.4 24 01/03/2024
3.1.32 24 02/11/2024
3.1.31 30 02/11/2024
3.1.30 28 12/05/2023
3.1.29 27 02/11/2024
3.1.28 23 02/11/2024
3.1.27 27 12/14/2023
3.1.26 24 12/28/2023
3.1.25 23 01/23/2024
3.1.24 23 01/14/2024
3.1.23 25 02/11/2024
3.1.22 85 12/14/2021
3.1.21 25 12/06/2023
3.1.20 37 11/08/2023
3.1.19 25 01/04/2022
3.1.18 84 12/14/2021
3.1.17 44 07/13/2021
3.1.16 26 06/08/2021
3.1.15 35 05/11/2021
3.1.14 32 04/06/2021
3.1.13 80 03/09/2021
3.1.12 77 02/09/2021
3.1.11 30 01/25/2021
3.1.10 35 11/10/2020
3.1.9 159 10/21/2020
3.1.8 432 09/11/2020
3.1.7 27 08/24/2020
3.1.6 312 07/21/2020
3.1.5 33 06/09/2020
3.1.4 27 02/11/2024
3.1.3 30 03/28/2020
3.1.2 758 02/27/2020
3.1.1 27 02/10/2020
3.1.0 483 06/21/2020
3.1.0-preview3.19553.2 22 02/11/2024
3.1.0-preview2.19525.4 23 01/25/2024
3.1.0-preview1.19506.1 28 12/22/2023
3.0.3 26 11/08/2023
3.0.2 24 02/11/2024
3.0.1 24 12/13/2023
3.0.0 81 06/21/2020
3.0.0-rc1.19456.10 25 02/11/2024
3.0.0-preview9.19423.4 27 02/11/2024
3.0.0-preview8.19405.4 23 02/11/2024
3.0.0-preview7.19362.4 25 02/11/2024
3.0.0-preview6.19304.6 20 02/11/2024
3.0.0-preview5.19227.9 23 02/11/2024
3.0.0-preview4.19216.2 23 02/11/2024
3.0.0-preview3.19153.1 27 02/11/2024
3.0.0-preview.19074.2 24 02/11/2024
3.0.0-preview.18572.1 22 02/11/2024
2.2.0 359 02/10/2020
2.2.0-preview3-35497 25 02/11/2024
2.2.0-preview2-35157 30 12/26/2023
2.2.0-preview1-35029 28 02/11/2024
2.1.1 3,595 02/11/2020
2.1.0 2,471 01/05/2021
2.1.0-rc1-final 31 01/09/2024
2.1.0-preview2-final 25 02/11/2024
2.1.0-preview1-final 22 02/11/2024
2.0.0 176 02/10/2020
2.0.0-preview2-final 23 01/15/2024
2.0.0-preview1-final 28 01/14/2024
1.1.1 28 02/10/2020
1.1.0 30 02/10/2020
1.1.0-preview1-final 25 02/11/2024
1.0.2 106 02/11/2020
1.0.1 24 01/19/2024
1.0.0 33 02/10/2020
1.0.0-rc2-final 30 02/11/2024
1.0.0-rc1-final 30 12/13/2023