Microsoft.Extensions.Hosting 10.0.10
About
Contains the .NET Generic Host HostBuilder which layers on the Microsoft.Extensions.Hosting.Abstractions package.
Key Features
- Contains the .NET Generic Host
HostBuilder.
How to Use
For a console app project:
using (IHost host = new HostBuilder().Build())
{
var lifetime = host.Services.GetRequiredService<IHostApplicationLifetime>();
lifetime.ApplicationStarted.Register(() =>
{
Console.WriteLine("Started");
});
lifetime.ApplicationStopping.Register(() =>
{
Console.WriteLine("Stopping firing");
Console.WriteLine("Stopping end");
});
lifetime.ApplicationStopped.Register(() =>
{
Console.WriteLine("Stopped firing");
Console.WriteLine("Stopped end");
});
host.Start();
// Listens for Ctrl+C.
host.WaitForShutdown();
}
Main Types
The main types provided by this library are:
Microsoft.Extensions.Host.Microsoft.Extensions.Hosting.HostApplicationBuilderMicrosoft.Extensions.Hosting.HostBuilderMicrosoft.Extensions.Hosting.IHostedServiceMicrosoft.Extensions.Hosting.IHostedLifecycleService
Additional Documentation
- Generic host
- API documentation
Related Packages
Microsoft.Extensions.ConfigurationMicrosoft.Extensions.DependencyInjectionMicrosoft.Extensions.Hosting.AbstractionsMicrosoft.Extensions.LoggingMicrosoft.Extensions.Options
Feedback & Contributing
Microsoft.Extensions.Hosting 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.Hosting.
| Packages | Downloads |
|---|---|
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/3dfc6fda80a10797b8c8fda1970e7b377fd8ed8d
|
5 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/844a82e37cae48af2ab2ee4f39b41283e6bb4f0e
|
5 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/ee417479933278bb5aadc5944706a96b5ef74a5d
|
5 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d504a7b7dab277712646747e9f5cce0d9507245e
|
5 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/c9e3996173cec136bc2e9f3b4ec45f2a323b1d63
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b7a2ec8c7ed6b48857af0a69688a73e8c14fe6cb
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/bb01bbf4433e27289b99001b7de6a582879d1835
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/2670c128d522473e146ff9f8159bfffdfe694cd9
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/773e8cc3fbdc2c4ffbd57c1f53f21649ef94c35c
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/2f1db20456007c9515068a35a65afdf99af70bc6
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/4e7d976438b0fc17f435804e801d5d68d193ec33
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/215a587e52efa710de84138b0a3374b860b924d8
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/e5f183b656a0e8bc087108130a5a9b54ae94494e
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/febee99db845fd8766a13bdb391a07c3ee90b4ba
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/af22effae4069a5dfb9b0735859de48820104f5b
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/d827c653b787c07de908240b7746ce34d3e6271e
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/67acc3d331454956fc06d6de2218a625e3e596f8
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/da7e9894ce22ef8cc02e5acc56e95a6f8cf8f644
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/379bfc7b2559e7cc9f42f997a497b2f2dd8e12d2
|
4 |
|
Microsoft.AspNetCore.Mvc.Testing
Support for writing functional tests for MVC applications.
This package was built from the source code at https://github.com/aspnet/AspNetCore/tree/1bf292d47ac2a0ebda07d8a3f00355dd01915ad5
|
4 |
.NET Framework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.10)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
- System.Threading.Tasks.Extensions (>= 4.6.3)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
.NET 9.0
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
.NET 10.0
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
.NET Standard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 10.0.10)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
- System.Threading.Tasks.Extensions (>= 4.6.3)
.NET Standard 2.1
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.10)
- Microsoft.Extensions.Configuration.CommandLine (>= 10.0.10)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 10.0.10)
- Microsoft.Extensions.Configuration.FileExtensions (>= 10.0.10)
- Microsoft.Extensions.Configuration.Json (>= 10.0.10)
- Microsoft.Extensions.Configuration.UserSecrets (>= 10.0.10)
- Microsoft.Extensions.Configuration (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.10)
- Microsoft.Extensions.DependencyInjection (>= 10.0.10)
- Microsoft.Extensions.Diagnostics (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Abstractions (>= 10.0.10)
- Microsoft.Extensions.FileProviders.Physical (>= 10.0.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.10)
- Microsoft.Extensions.Logging.Configuration (>= 10.0.10)
- Microsoft.Extensions.Logging.Console (>= 10.0.10)
- Microsoft.Extensions.Logging.Debug (>= 10.0.10)
- Microsoft.Extensions.Logging.EventLog (>= 10.0.10)
- Microsoft.Extensions.Logging.EventSource (>= 10.0.10)
- Microsoft.Extensions.Logging (>= 10.0.10)
- Microsoft.Extensions.Options (>= 10.0.10)
| Version | Downloads | Last updated |
|---|---|---|
| 11.0.0-preview.6.26359.118 | 2 | 07/27/2026 |
| 11.0.0-preview.5.26302.115 | 2 | 06/14/2026 |
| 11.0.0-preview.4.26230.115 | 2 | 06/15/2026 |
| 11.0.0-preview.3.26207.106 | 2 | 06/15/2026 |
| 11.0.0-preview.2.26159.112 | 3 | 03/22/2026 |
| 11.0.0-preview.1.26104.118 | 2 | 02/20/2026 |
| 10.0.10 | 1 | 07/27/2026 |
| 10.0.9 | 3 | 06/15/2026 |
| 10.0.8 | 2 | 06/15/2026 |
| 10.0.7 | 1 | 07/27/2026 |
| 10.0.6 | 2 | 06/16/2026 |
| 10.0.5 | 3 | 03/23/2026 |
| 10.0.4 | 3 | 03/23/2026 |
| 10.0.3 | 3 | 02/20/2026 |
| 10.0.2 | 2 | 02/10/2026 |
| 10.0.1 | 2 | 03/23/2026 |
| 10.0.0 | 3 | 02/10/2026 |
| 10.0.0-rc.2.25502.107 | 2 | 03/22/2026 |
| 10.0.0-rc.1.25451.107 | 2 | 03/22/2026 |
| 10.0.0-preview.7.25380.108 | 2 | 03/23/2026 |
| 10.0.0-preview.6.25358.103 | 2 | 03/23/2026 |
| 10.0.0-preview.5.25277.114 | 2 | 03/23/2026 |
| 10.0.0-preview.4.25258.110 | 2 | 03/23/2026 |
| 10.0.0-preview.3.25171.5 | 2 | 02/10/2026 |
| 10.0.0-preview.2.25163.2 | 2 | 03/23/2026 |
| 10.0.0-preview.1.25080.5 | 1 | 03/23/2026 |
| 9.0.18 | 1 | 07/27/2026 |
| 9.0.17 | 3 | 06/16/2026 |
| 9.0.16 | 2 | 06/15/2026 |
| 9.0.15 | 2 | 06/15/2026 |
| 9.0.14 | 3 | 03/23/2026 |
| 9.0.13 | 3 | 02/20/2026 |
| 9.0.12 | 2 | 03/23/2026 |
| 9.0.11 | 2 | 03/23/2026 |
| 9.0.10 | 2 | 03/23/2026 |
| 9.0.9 | 3 | 02/03/2026 |
| 9.0.8 | 3 | 02/03/2026 |
| 9.0.7 | 3 | 02/03/2026 |
| 9.0.6 | 3 | 02/03/2026 |
| 9.0.5 | 2 | 02/03/2026 |
| 9.0.4 | 2 | 02/03/2026 |
| 9.0.3 | 3 | 02/03/2026 |
| 9.0.2 | 3 | 02/03/2026 |
| 9.0.1 | 3 | 02/03/2026 |
| 9.0.0 | 3 | 02/03/2026 |
| 9.0.0-rc.2.24473.5 | 1 | 07/01/2026 |
| 9.0.0-rc.1.24431.7 | 5 | 03/15/2026 |
| 9.0.0-preview.7.24405.7 | 1 | 07/01/2026 |
| 9.0.0-preview.6.24327.7 | 1 | 07/01/2026 |
| 9.0.0-preview.5.24306.7 | 1 | 07/27/2026 |
| 9.0.0-preview.4.24266.19 | 1 | 07/01/2026 |
| 9.0.0-preview.3.24172.9 | 1 | 07/01/2026 |
| 9.0.0-preview.2.24128.5 | 1 | 07/01/2026 |
| 9.0.0-preview.1.24080.9 | 2 | 03/23/2026 |
| 8.0.1 | 1 | 07/27/2026 |
| 8.0.0 | 2 | 02/03/2026 |
| 8.0.0-rc.2.23479.6 | 0 | 10/10/2023 |
| 8.0.0-rc.1.23419.4 | 1 | 07/01/2026 |
| 8.0.0-preview.7.23375.6 | 1 | 07/01/2026 |
| 8.0.0-preview.6.23329.7 | 1 | 07/01/2026 |
| 8.0.0-preview.5.23280.8 | 2 | 02/10/2026 |
| 8.0.0-preview.4.23259.5 | 1 | 07/01/2026 |
| 8.0.0-preview.3.23174.8 | 0 | 04/11/2023 |
| 8.0.0-preview.2.23128.3 | 2 | 02/10/2026 |
| 8.0.0-preview.1.23110.8 | 2 | 03/23/2026 |
| 7.0.1 | 1 | 07/27/2026 |
| 7.0.0 | 3 | 02/03/2026 |
| 7.0.0-rc.2.22472.3 | 1 | 07/01/2026 |
| 7.0.0-rc.1.22426.10 | 0 | 09/14/2022 |
| 7.0.0-preview.7.22375.6 | 2 | 03/23/2026 |
| 7.0.0-preview.6.22324.4 | 2 | 03/23/2026 |
| 7.0.0-preview.5.22301.12 | 2 | 03/23/2026 |
| 7.0.0-preview.4.22229.4 | 2 | 02/10/2026 |
| 7.0.0-preview.3.22175.4 | 1 | 07/01/2026 |
| 7.0.0-preview.2.22152.2 | 2 | 03/23/2026 |
| 7.0.0-preview.1.22076.8 | 1 | 07/01/2026 |
| 6.0.1 | 3 | 02/03/2026 |
| 6.0.0 | 3 | 02/03/2026 |
| 6.0.0-rc.2.21480.5 | 1 | 07/01/2026 |
| 6.0.0-rc.1.21451.13 | 0 | 09/14/2021 |
| 6.0.0-preview.7.21377.19 | 1 | 07/27/2026 |
| 6.0.0-preview.6.21352.12 | 1 | 07/01/2026 |
| 6.0.0-preview.5.21301.5 | 2 | 03/23/2026 |
| 6.0.0-preview.4.21253.7 | 1 | 07/27/2026 |
| 6.0.0-preview.3.21201.4 | 2 | 02/10/2026 |
| 6.0.0-preview.2.21154.6 | 1 | 07/01/2026 |
| 6.0.0-preview.1.21102.12 | 2 | 03/23/2026 |
| 5.0.0 | 2 | 02/03/2026 |
| 5.0.0-rc.2.20475.5 | 1 | 07/27/2026 |
| 5.0.0-rc.1.20451.14 | 0 | 09/14/2020 |
| 5.0.0-preview.8.20407.11 | 1 | 07/27/2026 |
| 5.0.0-preview.7.20364.11 | 1 | 07/27/2026 |
| 5.0.0-preview.6.20305.6 | 2 | 03/23/2026 |
| 5.0.0-preview.5.20278.1 | 1 | 07/01/2026 |
| 5.0.0-preview.4.20251.6 | 1 | 07/01/2026 |
| 5.0.0-preview.3.20215.2 | 2 | 02/10/2026 |
| 5.0.0-preview.2.20160.3 | 2 | 03/23/2026 |
| 5.0.0-preview.1.20120.4 | 2 | 03/23/2026 |
| 3.1.32 | 2 | 03/23/2026 |
| 3.1.31 | 2 | 03/23/2026 |
| 3.1.30 | 3 | 02/10/2026 |
| 3.1.29 | 1 | 03/23/2026 |
| 3.1.28 | 1 | 07/01/2026 |
| 3.1.27 | 2 | 03/23/2026 |
| 3.1.26 | 2 | 03/23/2026 |
| 3.1.25 | 1 | 03/23/2026 |
| 3.1.24 | 2 | 03/23/2026 |
| 3.1.23 | 2 | 03/23/2026 |
| 3.1.22 | 2 | 03/23/2026 |
| 3.1.21 | 2 | 03/23/2026 |
| 3.1.20 | 2 | 03/23/2026 |
| 3.1.19 | 2 | 03/23/2026 |
| 3.1.18 | 2 | 03/23/2026 |
| 3.1.17 | 1 | 03/23/2026 |
| 3.1.16 | 2 | 03/23/2026 |
| 3.1.15 | 2 | 03/23/2026 |
| 3.1.14 | 2 | 03/23/2026 |
| 3.1.13 | 2 | 03/23/2026 |
| 3.1.12 | 2 | 03/23/2026 |
| 3.1.11 | 1 | 03/23/2026 |
| 3.1.10 | 2 | 03/23/2026 |
| 3.1.9 | 2 | 02/03/2026 |
| 3.1.8 | 2 | 02/03/2026 |
| 3.1.7 | 3 | 02/03/2026 |
| 3.1.6 | 3 | 02/03/2026 |
| 3.1.5 | 2 | 02/03/2026 |
| 3.1.4 | 2 | 02/03/2026 |
| 3.1.3 | 2 | 02/03/2026 |
| 3.1.2 | 3 | 02/03/2026 |
| 3.1.1 | 2 | 02/03/2026 |
| 3.1.0 | 3 | 02/03/2026 |
| 3.1.0-preview3.19553.2 | 2 | 03/23/2026 |
| 3.1.0-preview2.19525.4 | 0 | 11/01/2019 |
| 3.1.0-preview1.19506.1 | 2 | 03/23/2026 |
| 3.0.3 | 2 | 02/03/2026 |
| 3.0.2 | 1 | 07/27/2026 |
| 3.0.1 | 2 | 02/03/2026 |
| 3.0.0 | 2 | 03/22/2026 |
| 3.0.0-rc1.19456.10 | 2 | 03/23/2026 |
| 3.0.0-preview9.19423.4 | 1 | 03/23/2026 |
| 3.0.0-preview8.19405.4 | 0 | 08/13/2019 |
| 3.0.0-preview7.19362.4 | 1 | 07/27/2026 |
| 3.0.0-preview6.19304.6 | 2 | 03/23/2026 |
| 3.0.0-preview5.19227.9 | 0 | 05/06/2019 |
| 3.0.0-preview4.19216.2 | 0 | 04/18/2019 |
| 3.0.0-preview3.19153.1 | 2 | 03/23/2026 |
| 3.0.0-preview.19074.2 | 2 | 02/10/2026 |
| 3.0.0-preview.18572.1 | 0 | 12/04/2018 |
| 2.2.0 | 2 | 02/03/2026 |
| 2.2.0-preview3-35497 | 2 | 03/30/2026 |
| 2.2.0-preview2-35157 | 1 | 07/02/2026 |
| 2.2.0-preview1-35029 | 1 | 07/01/2026 |
| 2.1.1 | 2 | 02/03/2026 |
| 2.1.0 | 2 | 02/03/2026 |
| 2.1.0-rc1-final | 1 | 03/22/2026 |
| 2.1.0-preview2-final | 2 | 03/23/2026 |
| 2.1.0-preview1-final | 2 | 03/23/2026 |