示例#1
0
文件: App.xaml.cs 项目: bionte/bionte
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         Bootstrapper bootstrapper = new Bootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
示例#2
0
文件: App.xaml.cs 项目: bionte/bionte
 private static void RunInDebugMode()
 {
     Bootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }