Ejemplo n.º 1
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
      try
      {
     HealthTrackerBootstrapper bootstrapper = new HealthTrackerBootstrapper();
     bootstrapper.Run();
      }
      catch (Exception ex)
      {
     HandleException( ex );
      }
 }
Ejemplo n.º 2
0
 private static void RunInDebugMode()
 {
     HealthTrackerBootstrapper bootstrapper = new HealthTrackerBootstrapper();
      bootstrapper.Run();
 }