AspNetCore.Docs/aspnetcore/hosting/windows-service/sample/WebHostServiceExtensions.cs

17 lines
401 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Hosting;
using System.ServiceProcess;
namespace AspNetCoreService
{
#region ExtensionsClass
public static class WebHostServiceExtensions
{
public static void RunAsCustomService(this IWebHost host)
{
var webHostService = new CustomWebHostService(host);
ServiceBase.Run(webHostService);
}
}
#endregion
}