2 writes to _debugDumpPath
Microsoft.Build (2)
BackEnd\Components\Scheduler\Scheduler.cs (2)
215_debugDumpPath = DebugUtils.DebugPath; 258_debugDumpPath = FileUtilities.TempFileDirectory;
8 references to _debugDumpPath
Microsoft.Build (8)
BackEnd\Components\Scheduler\Scheduler.cs (8)
256if (String.IsNullOrEmpty(_debugDumpPath)) 2677FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2679using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerTrace_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2702FileUtilities.EnsureDirectoryExists(_debugDumpPath); 2707shouldWriteHeader = !FileSystems.Default.FileExists(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId)); 2710using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2834using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true); 2874using StreamWriter file = FileUtilities.OpenWrite(string.Format(CultureInfo.CurrentCulture, Path.Combine(_debugDumpPath, "SchedulerState_{0}.txt"), EnvironmentUtilities.CurrentProcessId), append: true);