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