2 writes to _debugDumpPath
Microsoft.Build (2)
BackEnd\Components\Scheduler\Scheduler.cs (2)
184_debugDumpPath = DebugUtils.DebugPath; 227_debugDumpPath = FileUtilities.TempFileDirectory;
7 references to _debugDumpPath
Microsoft.Build (7)
BackEnd\Components\Scheduler\Scheduler.cs (7)
225if (String.IsNullOrEmpty(_debugDumpPath)) 2567FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2569using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerTrace_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2592FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2593using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2707using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2747using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true);