public static void RunAsCustomService(this IWebHost host)
        {
            var webHostService = new CustomWebHostService(host);

            ServiceBase.Run(webHostService);
        }
示例#2
0
 public static void Main(string[] args)
 {
     CustomWebHostService.Launch(args, 59001);
 }