예제 #1
0
파일: App.xaml.cs 프로젝트: Crash0/LetsTalk
        private static void RunInReleaseMode()
        {
            AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;

            try
            {
                var bootstrapper = new AgentBootstrapper();
                bootstrapper.Run();
            }
            catch (Exception ex)
            {
                HandleException(ex);
            }
        }
예제 #2
0
파일: App.xaml.cs 프로젝트: Crash0/LetsTalk
        private static void RunInDebugMode()
        {
            var bootstrapper = new AgentBootstrapper();

            bootstrapper.Run();
        }