IStation.TopShelf/Program.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,15 @@ // See https://aka.ms/new-console-template for more information using IStation.TopShelf; using Topshelf; HostFactory.Run(x => { x.Service<Service>(); x.RunAsLocalSystem(); x.SetDescription("éè¡æºè½è°åº¦åæç¨åº"); x.SetDisplayName("IStation.Core.Server.CH"); x.SetServiceName("IStation.Core.Server.CH"); x.EnableServiceRecovery(r => r.RestartService(TimeSpan.FromSeconds(120))); x.StartAutomatically(); });