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