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