Microsoft.Extensions.Hosting
8.0.0
dotnet add package Microsoft.Extensions.Hosting --version 8.0.0
NuGet\Install-Package Microsoft.Extensions.Hosting -Version 8.0.0
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
paket add Microsoft.Extensions.Hosting --version 8.0.0
#r "nuget: Microsoft.Extensions.Hosting, 8.0.0"
// Install Microsoft.Extensions.Hosting as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Hosting&version=8.0.0
// Install Microsoft.Extensions.Hosting as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Hosting&version=8.0.0
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.HostApplicationBuilder
Microsoft.Extensions.Hosting.HostBuilder
Microsoft.Extensions.Hosting.IHostedService
Microsoft.Extensions.Hosting.IHostedLifecycleService
Additional Documentation
- Generic host
- API documentation
Related Packages
Microsoft.Extensions.Configuration
Microsoft.Extensions.DependencyInjection
Microsoft.Extensions.Hosting.Abstractions
Microsoft.Extensions.Logging
Microsoft.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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
-
net6.0
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
-
net7.0
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
-
net8.0
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Diagnostics (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Abstractions (>= 8.0.0)
- Microsoft.Extensions.FileProviders.Physical (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Configuration (>= 8.0.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Logging.Debug (>= 8.0.0)
- Microsoft.Extensions.Logging.EventLog (>= 8.0.0)
- Microsoft.Extensions.Logging.EventSource (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
NuGet packages (1.8K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Hosting:
Package | Downloads |
---|---|
Microsoft.Azure.WebJobs
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Host. It also adds rich diagnostics capabilities which makes it easier to monitor the WebJobs in the dashboard. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=320971 |
|
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/3f1acb59718cadf111a0a796681e3d3509bb3381 |
|
Microsoft.Identity.Web
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). This package is specifically used for web applications, which sign-in users, and protected web APIs, which optionally call downstream web APIs. |
|
Microsoft.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download. |
|
Microsoft.AspNetCore.All
Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download. |
GitHub repositories (390)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Hosting:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
files-community/Files
Building the best file manager for Windows
|
|
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
|
|
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
|
|
abpframework/abp
Open Source Web Application Framework for ASP.NET Core. Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
|
Version | Downloads | Last updated | |
---|---|---|---|
8.0.0 | 647,565 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 79,898 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 59,302 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 32,568 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 42,860 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 28,271 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 71,522 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 36,470 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 19,559 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 73,826 | 2/21/2023 | |
7.0.1 | 23,179,586 | 2/14/2023 | |
7.0.0 | 14,155,925 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 109,965 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 50,231 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 45,836 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 31,183 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 34,189 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 32,527 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 29,517 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 10,641 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 18,407 | 2/17/2022 | |
6.0.2-mauipre.1.22102.15 | 27,300 | 2/15/2022 | |
6.0.2-mauipre.1.22054.8 | 53,781 | 1/19/2022 | |
6.0.1 | 76,071,582 | 2/8/2022 | |
6.0.0 | 32,501,950 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 328,117 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 235,575 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 110,014 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 39,233 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 25,687 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 14,250 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 27,622 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 21,296 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 24,986 | 2/12/2021 | |
5.0.0 | 65,005,824 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 64,321 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 37,297 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 21,586 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 20,117 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 17,475 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 10,400 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 24,205 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 10,672 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 39,978 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 9,220 | 3/16/2020 | |
3.1.32 | 544,390 | 12/13/2022 | |
3.1.31 | 325,598 | 11/8/2022 | |
3.1.30 | 483,302 | 10/11/2022 | |
3.1.29 | 175,341 | 9/13/2022 | |
3.1.28 | 295,897 | 8/9/2022 | |
3.1.27 | 246,369 | 7/12/2022 | |
3.1.26 | 213,487 | 6/14/2022 | |
3.1.25 | 272,489 | 5/10/2022 | |
3.1.24 | 271,243 | 4/11/2022 | |
3.1.23 | 577,373 | 3/8/2022 | |
3.1.22 | 1,458,270 | 12/14/2021 | |
3.1.21 | 1,210,105 | 11/7/2021 | |
3.1.20 | 631,520 | 10/11/2021 | |
3.1.19 | 647,134 | 9/14/2021 | |
3.1.18 | 1,416,823 | 8/10/2021 | |
3.1.17 | 1,073,837 | 7/13/2021 | |
3.1.16 | 1,385,719 | 6/8/2021 | |
3.1.15 | 1,866,013 | 5/11/2021 | |
3.1.14 | 1,885,425 | 4/6/2021 | |
3.1.13 | 1,964,489 | 3/9/2021 | |
3.1.12 | 1,695,847 | 2/9/2021 | |
3.1.11 | 2,090,233 | 1/12/2021 | |
3.1.10 | 4,741,733 | 11/9/2020 | |
3.1.9 | 5,698,018 | 10/13/2020 | |
3.1.8 | 7,309,209 | 9/8/2020 | |
3.1.7 | 4,826,922 | 8/11/2020 | |
3.1.6 | 7,352,110 | 7/14/2020 | |
3.1.5 | 6,896,873 | 6/9/2020 | |
3.1.4 | 4,625,761 | 5/12/2020 | |
3.1.3 | 7,855,228 | 3/24/2020 | |
3.1.2 | 7,618,963 | 2/18/2020 | |
3.1.1 | 5,792,305 | 1/14/2020 | |
3.1.0 | 10,319,278 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 12,146 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 3,908 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 6,659 | 10/15/2019 | |
3.0.3 | 221,191 | 2/18/2020 | |
3.0.2 | 721,429 | 1/14/2020 | |
3.0.1 | 718,272 | 11/18/2019 | |
3.0.0 | 11,061,526 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 16,768 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 23,234 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 51,217 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 24,392 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 28,723 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 47,900 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 7,829 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 24,549 | 3/6/2019 | |
3.0.0-preview.19074.2 | 3,359 | 1/29/2019 | |
3.0.0-preview.18572.1 | 8,010 | 12/4/2018 | |
2.2.0 | 18,165,397 | 12/3/2018 | |
2.2.0-preview3-35497 | 74,936 | 10/17/2018 | |
2.2.0-preview2-35157 | 14,769 | 9/12/2018 | |
2.2.0-preview1-35029 | 3,274 | 8/22/2018 | |
2.1.1 | 15,484,704 | 6/18/2018 | |
2.1.0 | 93,827,956 | 5/29/2018 | |
2.1.0-rc1-final | 24,754 | 5/6/2018 | |
2.1.0-preview2-final | 21,381 | 4/10/2018 | |
2.1.0-preview1-final | 33,788 | 2/26/2018 |