7 references to DebugDumpPath
Microsoft.Build (5)
BackEnd\BuildManager\BuildManager.cs (2)
2521
loggingService?.LogError(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.
DebugDumpPath
, exception);
2530
loggingService?.LogError(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.
DebugDumpPath
, shutdownPacket.Exception.ToString());
ExceptionHandling.cs (3)
352
Directory.CreateDirectory(
DebugDumpPath
);
356
s_dumpFileName = Path.Combine(
DebugDumpPath
, $"MSBuild_pid-{pid}_{guid:n}.failure.txt");
390
IEnumerable<string> files = FileSystems.Default.EnumerateFiles(
DebugDumpPath
, "MSBuild*failure.txt");
Microsoft.Build.Engine.UnitTests (2)
BackEnd\DebugUtils_tests.cs (2)
20
var exceptionFilesBefore = Directory.GetFiles(ExceptionHandling.
DebugDumpPath
, "MSBuild_*failure.txt");
27
exceptionFiles = Directory.GetFiles(ExceptionHandling.
DebugDumpPath
, "MSBuild_*failure.txt");