private static void RunInReleaseMode() { AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException; try { var bootstrapper = new AgentBootstrapper(); bootstrapper.Run(); } catch (Exception ex) { HandleException(ex); } }
private static void RunInDebugMode() { var bootstrapper = new AgentBootstrapper(); bootstrapper.Run(); }