コード例 #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();
 }