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:
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.
-
Install the NuGet package Microsoft.AspNetCore.Hosting.WindowsServices.
-
Make the following changes in
Program.Main
:-
Call
host.RunAsService
instead ofhost.Run
. -
If the code calls
UseContentRoot
, use a path to the publish location instead ofDirectory.GetCurrentDirectory()
.
ASP.NET Core 2.x
ASP.NET Core 1.x
-
-
Publish the app to a folder. Use dotnet publish or a Visual Studio publish profile that publishes to a folder.
-
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.When these commands finish, browse to the same path as when running as a console app (by default,
http://localhost:5000
):
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
ASP.NET Core 1.x
Handle stopping and starting events
To handle OnStarting
, OnStarted
, and OnStopping
events, make the following additional changes:
-
Create a class that derives from
WebHostService
: -
Create an extension method for
IWebHost
that passes the customWebHostService
toServiceBase.Run
: -
In
Program.Main
, call the new extension method,RunAsCustomService
, instead ofRunAsService
:ASP.NET Core 2.x
ASP.NET Core 1.x
If the custom WebHostService
code requires a service from dependency injection (such as a logger), obtain it from the Services
property of IWebHost
:
Acknowledgments
This article was written with the help of published sources: