BackEnd\BuildManager\BuildManager.cs (12)
41using ExceptionHandling = Microsoft.Build.Shared.ExceptionHandling;
1389catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1496catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1507catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1643ExceptionHandling.DumpExceptionToFile(e);
1865catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1938return !ExceptionHandling.IsCriticalException(e) && !ExceptionHandling.NotExpectedException(e) && e is not BuildAbortedException;
2542string exception = ExceptionHandling.ReadAnyExceptionFromFile(_instantiationTimeUtc);
2543loggingService?.LogError(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, exception);
2552loggingService?.LogError(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, shutdownPacket.Exception.ToString());
3053catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))