2 writes to SourceFiles
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1598SourceFiles = sourceFiles.AsImmutable(),
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1511.SourceFiles = sourceFiles.AsImmutable(),
8 references to SourceFiles
Microsoft.CodeAnalysis (4)
CommandLine\CommandLineArguments.cs (1)
29/// Drop to an interactive loop. If a script is specified in <see cref="SourceFiles"/> executes the script first.
CommandLine\CommonCompiler.cs (3)
490set.IntersectWith(arguments.SourceFiles.Select(f => f.Path)); 925sourceFileAnalyzerConfigOptions = Arguments.SourceFiles.SelectAsArray(f => analyzerConfigSet.GetOptionsForSourcePath(f.Path)); 1159var generatedSyntaxTrees = compilation.SyntaxTrees.Skip(Arguments.SourceFiles.Length).ToList();
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCompiler.cs (1)
53var sourceFiles = Arguments.SourceFiles;
Microsoft.CodeAnalysis.Scripting (1)
Hosting\CommandLine\CommandLineRunner.cs (1)
78var sourceFiles = Compiler.Arguments.SourceFiles;
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCompiler.vb (1)
100Dim sourceFiles As ImmutableArray(Of CommandLineSourceFile) = Arguments.SourceFiles
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\CommandLineProject.cs (1)
135documents: CreateDocuments(commandLineArguments.SourceFiles),