Microsoft.Extensions.Hosting 9.0.0-preview.6.24327.7

Prefix Reserved
This is a prerelease version of Microsoft.Extensions.Hosting.
dotnet add package Microsoft.Extensions.Hosting --version 9.0.0-preview.6.24327.7                
NuGet\Install-Package Microsoft.Extensions.Hosting -Version 9.0.0-preview.6.24327.7                
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="9.0.0-preview.6.24327.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Hosting --version 9.0.0-preview.6.24327.7                
#r "nuget: Microsoft.Extensions.Hosting, 9.0.0-preview.6.24327.7"                
#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=9.0.0-preview.6.24327.7&prerelease

// Install Microsoft.Extensions.Hosting as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Hosting&version=9.0.0-preview.6.24327.7&prerelease                

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 was computed.  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 was computed.  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.  net9.0 is compatible. 
.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.1K)

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

Package Downloads
Microsoft.Azure.WebJobs

This package contains the runtime host components of the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.

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/f5084525411d53b81d9950b68616117750b674d4

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.Extensions.Hosting.WindowsServices

.NET hosting infrastructure for Windows Services.

Microsoft.Azure.Functions.Worker.Core

This library provides the core functionality to build an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model.

GitHub repositories (449)

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!
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. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Version Downloads Last updated
9.0.0-preview.6.24327.7 5,111 7/9/2024
9.0.0-preview.5.24306.7 12,518 6/11/2024
9.0.0-preview.4.24266.19 12,659 5/21/2024
9.0.0-preview.3.24172.9 66,762 4/11/2024
9.0.0-preview.2.24128.5 17,453 3/12/2024
9.0.0-preview.1.24080.9 36,967 2/13/2024
8.0.0 32,919,881 11/14/2023
8.0.0-rc.2.23479.6 112,138 10/10/2023
8.0.0-rc.1.23419.4 88,246 9/12/2023
8.0.0-preview.7.23375.6 43,618 8/8/2023
8.0.0-preview.6.23329.7 58,503 7/11/2023
8.0.0-preview.5.23280.8 45,217 6/13/2023
8.0.0-preview.4.23259.5 165,125 5/16/2023
8.0.0-preview.3.23174.8 56,818 4/11/2023
8.0.0-preview.2.23128.3 25,491 3/14/2023
8.0.0-preview.1.23110.8 84,111 2/21/2023
7.0.1 39,120,345 2/14/2023
7.0.0 20,237,071 11/7/2022
7.0.0-rc.2.22472.3 130,567 10/11/2022
7.0.0-rc.1.22426.10 64,862 9/14/2022
7.0.0-preview.7.22375.6 51,144 8/9/2022
7.0.0-preview.6.22324.4 39,838 7/12/2022
7.0.0-preview.5.22301.12 39,423 6/14/2022
7.0.0-preview.4.22229.4 37,069 5/10/2022
7.0.0-preview.3.22175.4 37,935 4/13/2022
7.0.0-preview.2.22152.2 11,049 3/14/2022
7.0.0-preview.1.22076.8 20,111 2/17/2022
6.0.1 103,745,575 2/8/2022
6.0.0 42,885,225 11/8/2021
6.0.0-rc.2.21480.5 355,250 10/12/2021
6.0.0-rc.1.21451.13 250,970 9/14/2021
6.0.0-preview.7.21377.19 118,450 8/10/2021
6.0.0-preview.6.21352.12 42,405 7/14/2021
6.0.0-preview.5.21301.5 27,022 6/15/2021
6.0.0-preview.4.21253.7 15,242 5/24/2021
6.0.0-preview.3.21201.4 31,325 4/8/2021
6.0.0-preview.2.21154.6 21,817 3/11/2021
6.0.0-preview.1.21102.12 26,906 2/12/2021
5.0.0 80,070,345 11/9/2020
5.0.0-rc.2.20475.5 73,838 10/13/2020
5.0.0-rc.1.20451.14 37,735 9/14/2020
5.0.0-preview.8.20407.11 22,640 8/25/2020
5.0.0-preview.7.20364.11 20,564 7/21/2020
5.0.0-preview.6.20305.6 17,651 6/25/2020
5.0.0-preview.5.20278.1 10,755 6/10/2020
5.0.0-preview.4.20251.6 24,716 5/18/2020
5.0.0-preview.3.20215.2 11,239 4/23/2020
5.0.0-preview.2.20160.3 41,298 4/2/2020
5.0.0-preview.1.20120.4 9,584 3/16/2020
3.1.32 1,090,888 12/13/2022
3.1.31 439,070 11/8/2022
3.1.30 725,199 10/11/2022
3.1.29 245,147 9/13/2022
3.1.28 386,608 8/9/2022
3.1.27 272,892 7/12/2022
3.1.26 247,950 6/14/2022
3.1.25 331,736 5/10/2022
3.1.24 305,493 4/11/2022
3.1.23 658,411 3/8/2022
3.1.22 1,725,458 12/14/2021
3.1.21 1,306,842 11/7/2021
3.1.20 709,407 10/11/2021
3.1.19 703,522 9/14/2021
3.1.18 1,556,745 8/10/2021
3.1.17 1,165,937 7/13/2021
3.1.16 1,473,980 6/8/2021
3.1.15 2,063,956 5/11/2021
3.1.14 2,006,490 4/6/2021
3.1.13 2,110,672 3/9/2021
3.1.12 1,855,693 2/9/2021
3.1.11 2,298,427 1/12/2021
3.1.10 5,023,888 11/9/2020
3.1.9 6,082,668 10/13/2020
3.1.8 7,689,655 9/8/2020
3.1.7 5,234,944 8/11/2020
3.1.6 8,172,084 7/14/2020
3.1.5 7,324,000 6/9/2020
3.1.4 4,991,957 5/12/2020
3.1.3 8,465,548 3/24/2020
3.1.2 8,140,830 2/18/2020
3.1.1 6,255,322 1/14/2020
3.1.0 11,583,678 12/3/2019
3.1.0-preview3.19553.2 12,661 11/13/2019
3.1.0-preview2.19525.4 3,999 11/1/2019
3.1.0-preview1.19506.1 7,148 10/15/2019
3.0.3 229,201 2/18/2020
3.0.2 725,728 1/14/2020
3.0.1 767,201 11/18/2019
3.0.0 12,506,894 9/23/2019
3.0.0-rc1.19456.10 17,034 9/16/2019
3.0.0-preview9.19423.4 23,518 9/4/2019
3.0.0-preview8.19405.4 52,190 8/13/2019
3.0.0-preview7.19362.4 25,304 7/23/2019
3.0.0-preview6.19304.6 29,366 6/12/2019
3.0.0-preview5.19227.9 48,766 5/6/2019
3.0.0-preview4.19216.2 8,059 4/18/2019
3.0.0-preview3.19153.1 29,390 3/6/2019
3.0.0-preview.19074.2 3,689 1/29/2019
3.0.0-preview.18572.1 8,469 12/4/2018
2.2.0 19,652,617 12/3/2018
2.2.0-preview3-35497 77,373 10/17/2018
2.2.0-preview2-35157 15,382 9/12/2018
2.2.0-preview1-35029 3,830 8/22/2018
2.1.1 17,123,697 6/18/2018
2.1.0 117,687,869 5/29/2018
2.1.0-rc1-final 25,383 5/6/2018
2.1.0-preview2-final 22,303 4/10/2018
2.1.0-preview1-final 35,198 2/26/2018