コード例 #1
0
ファイル: Program.cs プロジェクト: kamilion/WISP
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     if (args.Length == 0 || args[0].ToLower().Trim() != "standalone")
     {
         ServiceBase[] ServicesToRun;
         ServicesToRun = new ServiceBase[] 	{ new Zeus() };
         Log1.Logger("Server").Info("Starting server. Please wait...");
         ServiceBase.Run(ServicesToRun);
     }
     else
     {
         // you will have to manually kill the process either through the
         // debugger or the task manager
         Zeus service = new Zeus();
         service.Setup();
         System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
     }
 }