// See https://aka.ms/new-console-template for more information using IStation.TopShelf; using Topshelf; HostFactory.Run(x => { x.Service(); x.RunAsLocalSystem(); x.SetDescription("智慧泵站苏州金庭肯特对接程序"); x.SetDisplayName("IStation.Core.Server.SZJTKT"); x.SetServiceName("IStation.Core.Server.SZJTKT"); x.EnableServiceRecovery(r => r.RestartService(TimeSpan.FromSeconds(300))); x.StartAutomatically(); });