Esempio n. 1
0
        static void Main(string[] args)
        {
            var isDebug = false;

            if (isDebug)
            {
                ServiceBoot.StartAsync().Wait();
                Console.WriteLine("服务启动");
                Console.ReadLine();
                ServiceBoot.StopAsync().Wait();
            }
            else
            {
                ServiceBase.Run(new HostService());
            }
        }
Esempio n. 2
0
 protected override void OnStop()
 {
     ServiceBoot.StopAsync().Wait();
 }
Esempio n. 3
0
 protected override void OnStart(string[] args)
 {
     ServiceBoot.StartAsync().Wait();
 }