AspNetCore.Docs/aspnetcore/host-and-deploy/windows-service.md

5.7 KiB

title author description manager ms.author ms.custom ms.date ms.prod ms.technology ms.topic uid
Host ASP.NET Core in a Windows Service tdykstra Learn how to host an ASP.NET Core app in a Windows Service. wpickett tdykstra mvc 01/30/2018 aspnet-core aspnet article host-and-deploy/windows-service

Host ASP.NET Core in a Windows Service

By Tom Dykstra

The recommended way to host an ASP.NET Core app on Windows without using IIS is to run it in a Windows Service. When hosted as a Windows Service, the app can automatically start after reboots and crashes without requiring human intervention.

View or download sample code (how to download). For instructions on how to run the sample app, see the sample's README.md file.

Prerequisites

  • The app must run on the .NET Framework runtime. In the .csproj file, specify appropriate values for TargetFramework and RuntimeIdentifier. Here's an example:

    [!code-xml]

    When creating a project in Visual Studio, use the ASP.NET Core Application (.NET Framework) template.

  • If the app receives requests from the Internet (not just from an internal network), it must use the HTTP.sys web server (formerly known as WebListener for ASP.NET Core 1.x apps) rather than Kestrel. IIS is recommended for use as a reverse proxy server with Kestrel for edge deployments. For more information, see When to use Kestrel with a reverse proxy.

Get started

This section explains the minimum changes required to set up an existing ASP.NET Core project to run in a service.

  1. Install the NuGet package Microsoft.AspNetCore.Hosting.WindowsServices.

  2. Make the following changes in Program.Main:

    • Call host.RunAsService instead of host.Run.

    • If the code calls UseContentRoot, use a path to the publish location instead of Directory.GetCurrentDirectory().

    ASP.NET Core 2.x

    [!code-csharp]

    ASP.NET Core 1.x

    [!code-csharp]


  3. Publish the app to a folder. Use dotnet publish or a Visual Studio publish profile that publishes to a folder.

  4. Test by creating and starting the service.

    Open a command shell with administrative privileges to use the sc.exe command-line tool to create and start a service. If the service is named MyService, published to c:\svc, and named AspNetCoreService, the commands are:

    sc create MyService binPath="c:\svc\aspnetcoreservice.exe"
    sc start MyService
    

    The binPath value is the path to the app's executable, which includes the executable file name.

    Console window create and start example

    When these commands finish, browse to the same path as when running as a console app (by default, http://localhost:5000):

    Running in a service

Provide a way to run outside of a service

It's easier to test and debug when running outside of a service, so it's customary to add code that calls RunAsService only under certain conditions. For example, the app can run as a console app with a --console command-line argument or if the debugger is attached:

ASP.NET Core 2.x

[!code-csharp]

ASP.NET Core 1.x

[!code-csharp]


Handle stopping and starting events

To handle OnStarting, OnStarted, and OnStopping events, make the following additional changes:

  1. Create a class that derives from WebHostService:

    [!code-csharp]

  2. Create an extension method for IWebHost that passes the custom WebHostService to ServiceBase.Run:

    [!code-csharp]

  3. In Program.Main, call the new extension method, RunAsCustomService, instead of RunAsService:

    ASP.NET Core 2.x

    [!code-csharp]

    ASP.NET Core 1.x

    [!code-csharp]


If the custom WebHostService code requires a service from dependency injection (such as a logger), obtain it from the Services property of IWebHost:

[!code-csharp]

Acknowledgments

This article was written with the help of published sources: