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