1 write to TouchedFilesPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1621TouchedFilesPath = touchedFilesPath,
8 references to TouchedFilesPath
Microsoft.CodeAnalysis (6)
CommandLine\CommandLineArguments.cs (2)
275/// One with path <see cref="TouchedFilesPath"/> and extension ".read" logging the files read, 276/// and second with path <see cref="TouchedFilesPath"/> and extension ".write" logging the files written to during compilation.
CommandLine\CommonCompiler.cs (4)
917var touchedFilesLogger = (Arguments.TouchedFilesPath != null) ? new TouchedFileLogger() : null; 1578if (Arguments.TouchedFilesPath != null) 1587string readFilesPath = Arguments.TouchedFilesPath + ".read"; 1588string writtenFilesPath = Arguments.TouchedFilesPath + ".write";
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCompiler.cs (1)
116if (Arguments.TouchedFilesPath != null)
Microsoft.CodeAnalysis.Scripting (1)
Hosting\CommandLine\CommandLineRunner.cs (1)
152var touchedFilesLoggerOpt = (arguments.TouchedFilesPath != null) ? new TouchedFileLogger() : null;