1 write to TouchedFilesPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1621
TouchedFilesPath
= 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)
917
var touchedFilesLogger = (Arguments.
TouchedFilesPath
!= null) ? new TouchedFileLogger() : null;
1578
if (Arguments.
TouchedFilesPath
!= null)
1587
string readFilesPath = Arguments.
TouchedFilesPath
+ ".read";
1588
string writtenFilesPath = Arguments.
TouchedFilesPath
+ ".write";
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCompiler.cs (1)
116
if (Arguments.
TouchedFilesPath
!= null)
Microsoft.CodeAnalysis.Scripting (1)
Hosting\CommandLine\CommandLineRunner.cs (1)
152
var touchedFilesLoggerOpt = (arguments.
TouchedFilesPath
!= null) ? new TouchedFileLogger() : null;