17 lines
401 B
C#
17 lines
401 B
C#
|
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
|
|||
|
}
|