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