Beispiel #1
0
 static void Main()
 {
     if (!Environment.UserInteractive)
     {
         ServiceBase.Run(new Service1());
     }
     else
     {
         Bootstrap.Initialize();
         Bootstrap.Start();
         Console.WriteLine("Press Enter to exit...");
         Console.ReadLine();
     }
 }
Beispiel #2
0
 protected override void OnStart(string[] args)
 {
     Bootstrap.Start();
 }