Microsoft.Extensions.Hosting 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Hosting --version 8.0.0
NuGet\Install-Package Microsoft.Extensions.Hosting -Version 8.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Hosting --version 8.0.0
#r "nuget: Microsoft.Extensions.Hosting, 8.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

  • 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 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-browser 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2.0K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Hosting:

Package Downloads
Microsoft.Azure.WebJobs The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Support for writing functional tests for MVC applications. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/e1ad9117a4dac3b0f5f2a7e2b10b43b7016379b9

Microsoft.Identity.Web The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 (413)

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
9.0.0-preview.2.24128.5 1,776 3/12/2024
9.0.0-preview.1.24080.9 18,442 2/13/2024
8.0.0 9,238,760 11/14/2023
8.0.0-rc.2.23479.6 98,883 10/10/2023
8.0.0-rc.1.23419.4 75,219 9/12/2023
8.0.0-preview.7.23375.6 39,394 8/8/2023
8.0.0-preview.6.23329.7 51,523 7/11/2023
8.0.0-preview.5.23280.8 37,708 6/13/2023
8.0.0-preview.4.23259.5 108,524 5/16/2023
8.0.0-preview.3.23174.8 44,845 4/11/2023
8.0.0-preview.2.23128.3 22,313 3/14/2023
8.0.0-preview.1.23110.8 79,511 2/21/2023
7.0.1 31,806,932 2/14/2023
7.0.0 17,186,440 11/7/2022
7.0.0-rc.2.22472.3 122,005 10/11/2022
7.0.0-rc.1.22426.10 59,984 9/14/2022
7.0.0-preview.7.22375.6 48,373 8/9/2022
7.0.0-preview.6.22324.4 34,346 7/12/2022
7.0.0-preview.5.22301.12 36,839 6/14/2022
7.0.0-preview.4.22229.4 34,951 5/10/2022
7.0.0-preview.3.22175.4 32,784 4/13/2022
7.0.0-preview.2.22152.2 10,882 3/14/2022
7.0.0-preview.1.22076.8 19,194 2/17/2022
6.0.2-mauipre.1.22102.15 29,515 2/15/2022
6.0.2-mauipre.1.22054.8 56,165 1/19/2022
6.0.1 89,306,933 2/8/2022
6.0.0 37,283,384 11/8/2021
6.0.0-rc.2.21480.5 343,907 10/12/2021
6.0.0-rc.1.21451.13 243,435 9/14/2021
6.0.0-preview.7.21377.19 116,333 8/10/2021
6.0.0-preview.6.21352.12 41,297 7/14/2021
6.0.0-preview.5.21301.5 26,245 6/15/2021
6.0.0-preview.4.21253.7 14,626 5/24/2021
6.0.0-preview.3.21201.4 29,637 4/8/2021
6.0.0-preview.2.21154.6 21,596 3/11/2021
6.0.0-preview.1.21102.12 25,730 2/12/2021
5.0.0 71,279,509 11/9/2020
5.0.0-rc.2.20475.5 68,314 10/13/2020
5.0.0-rc.1.20451.14 37,515 9/14/2020
5.0.0-preview.8.20407.11 22,030 8/25/2020
5.0.0-preview.7.20364.11 20,382 7/21/2020
5.0.0-preview.6.20305.6 17,561 6/25/2020
5.0.0-preview.5.20278.1 10,598 6/10/2020
5.0.0-preview.4.20251.6 24,435 5/18/2020
5.0.0-preview.3.20215.2 10,948 4/23/2020
5.0.0-preview.2.20160.3 40,656 4/2/2020
5.0.0-preview.1.20120.4 9,433 3/16/2020
3.1.32 771,245 12/13/2022
3.1.31 381,389 11/8/2022
3.1.30 602,773 10/11/2022
3.1.29 203,057 9/13/2022
3.1.28 334,329 8/9/2022
3.1.27 259,815 7/12/2022
3.1.26 232,275 6/14/2022
3.1.25 302,334 5/10/2022
3.1.24 288,145 4/11/2022
3.1.23 609,862 3/8/2022
3.1.22 1,578,496 12/14/2021
3.1.21 1,256,072 11/7/2021
3.1.20 667,638 10/11/2021
3.1.19 673,816 9/14/2021
3.1.18 1,480,140 8/10/2021
3.1.17 1,121,215 7/13/2021
3.1.16 1,428,533 6/8/2021
3.1.15 1,960,934 5/11/2021
3.1.14 1,943,060 4/6/2021
3.1.13 2,039,389 3/9/2021
3.1.12 1,772,628 2/9/2021
3.1.11 2,176,628 1/12/2021
3.1.10 4,894,685 11/9/2020
3.1.9 5,878,239 10/13/2020
3.1.8 7,508,097 9/8/2020
3.1.7 5,031,578 8/11/2020
3.1.6 7,755,716 7/14/2020
3.1.5 7,109,257 6/9/2020
3.1.4 4,819,291 5/12/2020
3.1.3 8,166,163 3/24/2020
3.1.2 7,870,812 2/18/2020
3.1.1 5,988,803 1/14/2020
3.1.0 11,002,997 12/3/2019
3.1.0-preview3.19553.2 12,433 11/13/2019
3.1.0-preview2.19525.4 3,967 11/1/2019
3.1.0-preview1.19506.1 6,867 10/15/2019
3.0.3 225,083 2/18/2020
3.0.2 723,802 1/14/2020
3.0.1 745,437 11/18/2019
3.0.0 11,796,475 9/23/2019
3.0.0-rc1.19456.10 16,940 9/16/2019
3.0.0-preview9.19423.4 23,405 9/4/2019
3.0.0-preview8.19405.4 51,625 8/13/2019
3.0.0-preview7.19362.4 24,725 7/23/2019
3.0.0-preview6.19304.6 29,089 6/12/2019
3.0.0-preview5.19227.9 48,364 5/6/2019
3.0.0-preview4.19216.2 7,924 4/18/2019
3.0.0-preview3.19153.1 28,220 3/6/2019
3.0.0-preview.19074.2 3,596 1/29/2019
3.0.0-preview.18572.1 8,301 12/4/2018
2.2.0 18,945,967 12/3/2018
2.2.0-preview3-35497 76,611 10/17/2018
2.2.0-preview2-35157 15,207 9/12/2018
2.2.0-preview1-35029 3,705 8/22/2018
2.1.1 16,271,171 6/18/2018
2.1.0 104,237,285 5/29/2018
2.1.0-rc1-final 25,201 5/6/2018
2.1.0-preview2-final 21,935 4/10/2018
2.1.0-preview1-final 34,288 2/26/2018