Exemple #1
0
 public void Run()
 {
     UpdateService.Cleanup();
     if (Configuration.Updates.EnableAutomaticUpdates)
     {
         UpdateService.CheckForUpdate();
     }
     StatisticsService.Run();
     WebService.RunServer();
 }
Exemple #2
0
 public void Run()
 {
     WebService.Run();
     StatisticsService.Run();
     UpdateService.Cleanup();
     if (Configuration.Updates.EnableAutomaticUpdates)
     {
         UpdateService.Run();
     }
     MainWindow.ShowDialog();
 }