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