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