Microsoft.Extensions.DependencyInjection 8.0.0-rc.2.23479.6

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
DevExpress.AspNetCore.Reporting
This package implements the functionality related to the DevExpress Report Designer and Report Viewer ASP.NET Core controls.
16
DevExpress.Web.Reporting.Common.Services
This package provides common services related to DevExpress Web Reporting controls.
12
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/aspnet/AspNetCore/tree/8ca3954ca335343ce6dd1d14d8d1c6c3369710b7
8
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
8
Microsoft.AspNetCore.Mvc
ASP.NET Core MVC is a web framework that gives you a powerful, patterns-based way to build dynamic websites and web APIs. ASP.NET Core MVC enables a clean separation of concerns and gives you full control over markup.
7
Microsoft.AspNetCore.Hosting
ASP.NET Core hosting infrastructure and startup logic for web applications. This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/be0a4a7f4cf06cbd6ec714bd1d9afee6bdb040a8
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/ae1a6cbe225b99c0bf38b7e31bf60cb653b73a52
7
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
7
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
7
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
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/bb01bbf4433e27289b99001b7de6a582879d1835
6
HotChocolate.Execution
Package Description
6
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.
6
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/d9ba962869d1b1c410ea476b02de2f8e27eec762
6
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.
5
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
5
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/50b7e9c661453874aa7a54a3985d5120564bb2e5
5
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/68bb6fb08f8f85bb3cf08953a0d2f4a254eaccff
5
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/e5f183b656a0e8bc087108130a5a9b54ae94494e
5

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

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