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

            bootstrapper.Run();
        }
Esempio n. 4
0
 private static void RunInDebugMode()
 {
     RinaBootstrapper bootstrapper = new RinaBootstrapper();
     bootstrapper.Run();
 }