Exemplo n.º 1
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         UnityBootstrapper bootstrapper = new Bootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
Exemplo n.º 2
0
 private static void RunInDebugMode()
 {
     UnityBootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }