// See https://aka.ms/new-console-template for more information using IStation.TopShelf; using Topshelf; HostFactory.Run(x => { x.Service(); x.RunAsLocalSystem(); x.SetDescription("上海原水Core版数据提供程序"); x.SetDisplayName("IStation.Core.DataProvider.SHYS"); x.SetServiceName("IStation.Core.DataProvider.SHYS"); x.EnableServiceRecovery(r => r.RestartService(TimeSpan.FromSeconds(120))); x.StartAutomatically(); });