// See https://aka.ms/new-console-template for more information using Topshelf; using IStation.ChEr.WebApi; HostFactory.Run(x => { x.Service(); x.RunAsLocalSystem(); x.SetDescription("陈行二取水量预测"); x.SetDisplayName("IStation.Core.Server.PredictWater.ChEr"); x.SetServiceName("IStation.Core.Server.PredictWater.ChEr"); x.EnableServiceRecovery(r => r.RestartService(TimeSpan.FromSeconds(120))); x.StartAutomatically(); });