1 write to TouchedFilesPath
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1516.TouchedFilesPath = touchedFilesPath,
9 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)
913var touchedFilesLogger = (Arguments.TouchedFilesPath != null) ? new TouchedFileLogger() : null; 1552if (Arguments.TouchedFilesPath != null) 1561string readFilesPath = Arguments.TouchedFilesPath + ".read"; 1562string 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)
154var touchedFilesLoggerOpt = (arguments.TouchedFilesPath != null) ? new TouchedFileLogger() : null;
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCompiler.vb (1)
135If Arguments.TouchedFilesPath IsNot Nothing Then