private static void DoRun() { AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException; Current.DispatcherUnhandledException += Current_DispatcherUnhandledException; try { var bootstrapper = new Bootstrapper(); bootstrapper.Run(); } catch (Exception ex) { HandleException(ex); } }
private static void DoRun() { var bootstrapper = new Bootstrapper(); bootstrapper.Run(); }