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