2 writes to _debugDumpPath
Microsoft.Build (2)
BackEnd\Components\Scheduler\Scheduler.cs (2)
214_debugDumpPath = FrameworkDebugUtils.DebugPath; 257_debugDumpPath = FileUtilities.TempFileDirectory;
8 references to _debugDumpPath
Microsoft.Build (8)
BackEnd\Components\Scheduler\Scheduler.cs (8)
255if (String.IsNullOrEmpty(_debugDumpPath)) 2676FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2678using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerTrace_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2701FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2706shouldWriteHeader = !FileSystems.Default.FileExists(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId)); 2709using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2833using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2873using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true);