Beispiel #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main()
 {
     if (Environment.UserInteractive)
     {
         var service = new WatchDogService();
         service.Start();
         Console.ReadLine();
     }
     else
     {
         ServiceBase[] ServicesToRun;
         ServicesToRun = new ServiceBase[]
         {
             new WatchDogService()
         };
         ServiceBase.Run(ServicesToRun);
     }
 }
Beispiel #2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main()
 {
     if (Environment.UserInteractive)
     {
         var service = new WatchDogService();
         service.Start();
         Console.ReadLine();
     }
     else
     {
         ServiceBase[] ServicesToRun;
         ServicesToRun = new ServiceBase[]
         {
         new WatchDogService()
         };
         ServiceBase.Run(ServicesToRun);
     }
 }