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

            bootstrapper.Run();
        }