| | |
| | | // See https://aka.ms/new-console-template for more information |
| | | using Yw.TopShelf; |
| | | using IStation.TopShelf; |
| | | using Topshelf; |
| | | |
| | | HostFactory.Run(x => |
| | | { |
| | | x.Service<Service>(); |
| | | x.RunAsLocalSystem(); |
| | | x.SetDescription("智慧泵站健康评价程序(PHM)"); |
| | | x.SetDisplayName("IStation.Core.Server.Health.PHM"); |
| | | x.SetServiceName("IStation.Core.Server.Health.PHM"); |
| | | x.SetDescription("陈行智能调度分析程序"); |
| | | x.SetDisplayName("IStation.Core.Server.CH"); |
| | | x.SetServiceName("IStation.Core.Server.CH"); |
| | | x.EnableServiceRecovery(r => r.RestartService(TimeSpan.FromSeconds(120))); |
| | | x.StartAutomatically(); |
| | | |
| | | |
| | | }); |