Microsoft.Extensions.DependencyInjection 10.0.5
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.DefaultServiceProviderFactoryMicrosoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensionsMicrosoft.Extensions.DependencyInjection.ServiceProvider
Additional Documentation
- Conceptual documentation
- API documentation
Related Packages
Microsoft.Extensions.DependencyInjection.AbstractionsMicrosoft.Extensions.HostingMicrosoft.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.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
|
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/432e6a061f28dda696ba16bc5442328d23b25d93
|
9 |
|
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/3b519aa7d1a1b66e1d329d694f814e1d8228dc8c
|
8 |
|
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/55738ff96b832439076e25584cfe0eb3bace9b01
|
8 |
|
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
|
8 |
|
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/f050ae044be8bddc002ab88736e4bf78dc822122
|
8 |
|
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/d504a7b7dab277712646747e9f5cce0d9507245e
|
8 |
|
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/31d685b2d9a86ca1243014d175a3da813f78e428
|
8 |
|
Microsoft.Identity.Web.TokenCache
This package bring token cache serializers for MSAL.NET confidential client applications.
|
8 |
|
Microsoft.AspNetCore.Components.Web
Support for rendering ASP.NET Core components for browsers.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/1dcf7acfacf0fe154adcc23270cb0da11ff44ace
|
7 |
|
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/f6b3a5da75eb405046889a5447ec9b14cc29d285
|
7 |
|
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/bd1e14b7d16b798de8a874189c89afed755a266c
|
7 |
|
Microsoft.AspNetCore.SignalR.Client.Core
Client for ASP.NET Core SignalR
This package was built from the source code at https://github.com/aspnet/SignalR/tree/a9def470e3b8e1480c55d1c311e4b37472140307
|
7 |
|
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/febee99db845fd8766a13bdb391a07c3ee90b4ba
|
7 |
|
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/773e8cc3fbdc2c4ffbd57c1f53f21649ef94c35c
|
7 |
|
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/a5920c6656c9b8cef9e1f769c28062f0ade62f60
|
7 |
|
Microsoft.AspNetCore.Components.Web
Support for rendering ASP.NET Core components for browsers.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/e56abc45c4f8adc518abfc11a59849d616431e2c
|
7 |
|
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/c3acdcac86dad91c3d3fbc3b93ecc6b7ba494bdc
|
7 |
|
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/b7a2ec8c7ed6b48857af0a69688a73e8c14fe6cb
|
7 |
https://go.microsoft.com/fwlink/?LinkID=799421
.NET Framework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.5)
- System.Threading.Tasks.Extensions (>= 4.6.3)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
.NET Standard 2.1
.NET Standard 2.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.5)
- System.Threading.Tasks.Extensions (>= 4.6.3)
.NET 10.0
.NET 8.0
.NET 9.0
| Version | Downloads | Last updated |
|---|---|---|
| 11.0.0-preview.2.26159.112 | 3 | 03/21/2026 |
| 11.0.0-preview.1.26104.118 | 3 | 02/17/2026 |
| 10.0.5 | 3 | 03/21/2026 |
| 10.0.4 | 1 | 03/23/2026 |
| 10.0.3 | 2 | 02/19/2026 |
| 10.0.2 | 2 | 01/17/2026 |
| 10.0.1 | 1 | 12/17/2025 |
| 10.0.0 | 1 | 12/10/2025 |
| 10.0.0-rc.2.25502.107 | 0 | 12/10/2025 |
| 10.0.0-rc.1.25451.107 | 2 | 01/20/2026 |
| 10.0.0-preview.7.25380.108 | 1 | 01/02/2026 |
| 10.0.0-preview.6.25358.103 | 1 | 01/04/2026 |
| 10.0.0-preview.5.25277.114 | 1 | 01/04/2026 |
| 10.0.0-preview.4.25258.110 | 1 | 01/04/2026 |
| 10.0.0-preview.3.25171.5 | 1 | 01/03/2026 |
| 10.0.0-preview.2.25163.2 | 1 | 01/03/2026 |
| 10.0.0-preview.1.25080.5 | 1 | 01/03/2026 |
| 9.0.14 | 2 | 03/25/2026 |
| 9.0.13 | 2 | 02/19/2026 |
| 9.0.12 | 2 | 01/20/2026 |
| 9.0.11 | 3 | 01/19/2026 |
| 9.0.10 | 0 | 12/10/2025 |
| 9.0.9 | 2 | 01/20/2026 |
| 9.0.8 | 2 | 01/20/2026 |
| 9.0.7 | 2 | 01/20/2026 |
| 9.0.6 | 2 | 01/20/2026 |
| 9.0.5 | 2 | 01/20/2026 |
| 9.0.4 | 2 | 01/20/2026 |
| 9.0.3 | 2 | 01/20/2026 |
| 9.0.2 | 2 | 01/18/2026 |
| 9.0.1 | 2 | 01/18/2026 |
| 9.0.0 | 2 | 01/18/2026 |
| 9.0.0-rc.2.24473.5 | 1 | 12/26/2025 |
| 9.0.0-rc.1.24431.7 | 1 | 12/26/2025 |
| 9.0.0-preview.7.24405.7 | 3 | 12/10/2025 |
| 9.0.0-preview.6.24327.7 | 2 | 01/20/2026 |
| 9.0.0-preview.5.24306.7 | 2 | 01/19/2026 |
| 9.0.0-preview.4.24266.19 | 2 | 01/19/2026 |
| 9.0.0-preview.3.24172.9 | 2 | 01/19/2026 |
| 9.0.0-preview.2.24128.5 | 2 | 01/20/2026 |
| 9.0.0-preview.1.24080.9 | 2 | 01/19/2026 |
| 8.0.1 | 2 | 01/19/2026 |
| 8.0.0 | 2 | 01/18/2026 |
| 8.0.0-rc.2.23479.6 | 1 | 01/02/2026 |
| 8.0.0-rc.1.23419.4 | 7 | 12/10/2025 |
| 8.0.0-preview.7.23375.6 | 5 | 12/10/2025 |
| 8.0.0-preview.6.23329.7 | 5 | 12/10/2025 |
| 8.0.0-preview.5.23280.8 | 5 | 01/06/2026 |
| 8.0.0-preview.4.23259.5 | 4 | 12/10/2025 |
| 8.0.0-preview.3.23174.8 | 5 | 12/10/2025 |
| 8.0.0-preview.2.23128.3 | 4 | 12/10/2025 |
| 8.0.0-preview.1.23110.8 | 5 | 12/10/2025 |
| 7.0.0 | 5 | 12/10/2025 |
| 7.0.0-rc.2.22472.3 | 6 | 12/10/2025 |
| 7.0.0-rc.1.22426.10 | 6 | 12/10/2025 |
| 7.0.0-preview.7.22375.6 | 4 | 12/10/2025 |
| 7.0.0-preview.6.22324.4 | 4 | 12/10/2025 |
| 7.0.0-preview.5.22301.12 | 4 | 12/10/2025 |
| 7.0.0-preview.4.22229.4 | 5 | 12/10/2025 |
| 7.0.0-preview.3.22175.4 | 4 | 12/10/2025 |
| 7.0.0-preview.2.22152.2 | 5 | 12/10/2025 |
| 7.0.0-preview.1.22076.8 | 7 | 12/10/2025 |
| 6.0.2 | 4 | 12/10/2025 |
| 6.0.1 | 4 | 12/10/2025 |
| 6.0.0 | 5 | 12/10/2025 |
| 6.0.0-rc.2.21480.5 | 5 | 12/10/2025 |
| 6.0.0-rc.1.21451.13 | 4 | 12/10/2025 |
| 6.0.0-preview.7.21377.19 | 5 | 12/10/2025 |
| 6.0.0-preview.6.21352.12 | 4 | 12/10/2025 |
| 6.0.0-preview.5.21301.5 | 4 | 12/10/2025 |
| 6.0.0-preview.4.21253.7 | 5 | 12/11/2025 |
| 6.0.0-preview.3.21201.4 | 5 | 12/10/2025 |
| 6.0.0-preview.2.21154.6 | 4 | 12/10/2025 |
| 6.0.0-preview.1.21102.12 | 6 | 12/10/2025 |
| 5.0.2 | 4 | 12/10/2025 |
| 5.0.1 | 6 | 12/10/2025 |
| 5.0.0 | 4 | 12/10/2025 |
| 5.0.0-rc.2.20475.5 | 5 | 12/10/2025 |
| 5.0.0-rc.1.20451.14 | 4 | 12/10/2025 |
| 5.0.0-preview.8.20407.11 | 6 | 12/10/2025 |
| 5.0.0-preview.7.20364.11 | 5 | 12/11/2025 |
| 5.0.0-preview.6.20305.6 | 5 | 12/10/2025 |
| 5.0.0-preview.5.20278.1 | 5 | 12/10/2025 |
| 5.0.0-preview.4.20251.6 | 5 | 12/10/2025 |
| 5.0.0-preview.3.20215.2 | 6 | 12/10/2025 |
| 5.0.0-preview.2.20160.3 | 6 | 12/10/2025 |
| 5.0.0-preview.1.20120.4 | 3 | 12/10/2025 |
| 3.1.32 | 5 | 12/10/2025 |
| 3.1.31 | 9 | 12/10/2025 |
| 3.1.30 | 5 | 12/10/2025 |
| 3.1.29 | 6 | 12/10/2025 |
| 3.1.28 | 4 | 12/10/2025 |
| 3.1.27 | 5 | 12/10/2025 |
| 3.1.26 | 6 | 12/10/2025 |
| 3.1.25 | 5 | 12/10/2025 |
| 3.1.24 | 5 | 12/10/2025 |
| 3.1.23 | 7 | 12/10/2025 |
| 3.1.22 | 6 | 12/10/2025 |
| 3.1.21 | 5 | 12/10/2025 |
| 3.1.20 | 5 | 12/10/2025 |
| 3.1.19 | 5 | 12/10/2025 |
| 3.1.18 | 3 | 12/10/2025 |
| 3.1.17 | 4 | 12/10/2025 |
| 3.1.16 | 5 | 12/10/2025 |
| 3.1.15 | 5 | 12/10/2025 |
| 3.1.14 | 6 | 12/10/2025 |
| 3.1.13 | 5 | 12/10/2025 |
| 3.1.12 | 6 | 12/10/2025 |
| 3.1.11 | 6 | 12/10/2025 |
| 3.1.10 | 5 | 12/10/2025 |
| 3.1.9 | 6 | 12/10/2025 |
| 3.1.8 | 6 | 12/10/2025 |
| 3.1.7 | 4 | 12/10/2025 |
| 3.1.6 | 6 | 12/10/2025 |
| 3.1.5 | 4 | 12/10/2025 |
| 3.1.4 | 6 | 12/10/2025 |
| 3.1.3 | 6 | 12/10/2025 |
| 3.1.2 | 5 | 12/10/2025 |
| 3.1.1 | 6 | 12/10/2025 |
| 3.1.0 | 5 | 01/04/2026 |
| 3.1.0-preview3.19553.2 | 4 | 01/20/2026 |
| 3.1.0-preview2.19525.4 | 4 | 01/19/2026 |
| 3.1.0-preview1.19506.1 | 3 | 01/19/2026 |
| 3.0.3 | 4 | 12/10/2025 |
| 3.0.2 | 4 | 12/10/2025 |
| 3.0.1 | 5 | 12/10/2025 |
| 3.0.0 | 6 | 01/18/2026 |
| 3.0.0-rc1.19456.10 | 3 | 01/19/2026 |
| 3.0.0-preview9.19423.4 | 5 | 01/18/2026 |
| 3.0.0-preview8.19405.4 | 3 | 01/19/2026 |
| 3.0.0-preview7.19362.4 | 5 | 01/20/2026 |
| 3.0.0-preview6.19304.6 | 5 | 01/18/2026 |
| 3.0.0-preview5.19227.9 | 4 | 01/20/2026 |
| 3.0.0-preview4.19216.2 | 4 | 01/19/2026 |
| 3.0.0-preview3.19153.1 | 3 | 01/19/2026 |
| 3.0.0-preview.19074.2 | 4 | 01/18/2026 |
| 3.0.0-preview.18572.1 | 7 | 01/19/2026 |
| 2.2.0 | 6 | 01/18/2026 |
| 2.2.0-preview3-35497 | 5 | 01/19/2026 |
| 2.2.0-preview2-35157 | 5 | 01/18/2026 |
| 2.2.0-preview1-35029 | 4 | 01/19/2026 |
| 2.1.1 | 5 | 01/19/2026 |
| 2.1.0 | 6 | 01/19/2026 |
| 2.1.0-rc1-final | 5 | 12/26/2025 |
| 2.1.0-preview2-final | 7 | 12/29/2025 |
| 2.1.0-preview1-final | 5 | 12/29/2025 |
| 2.0.0 | 5 | 01/18/2026 |
| 2.0.0-preview2-final | 7 | 12/29/2025 |
| 2.0.0-preview1-final | 7 | 12/29/2025 |
| 1.1.1 | 5 | 01/18/2026 |
| 1.1.0 | 4 | 01/18/2026 |
| 1.1.0-preview1-final | 6 | 12/29/2025 |
| 1.0.2 | 5 | 01/19/2026 |
| 1.0.1 | 5 | 01/18/2026 |
| 1.0.0 | 5 | 01/19/2026 |
| 1.0.0-rc2-final | 7 | 12/26/2025 |
| 1.0.0-rc1-final | 5 | 12/27/2025 |