6 references to GetOptionsForSourcePath
Microsoft.CodeAnalysis (5)
CommandLine\AnalyzerConfigOptionsResult.cs (1)
13
/// Holds results from <see cref="AnalyzerConfigSet.
GetOptionsForSourcePath
(string)"/>.
CommandLine\CommonCompiler.cs (4)
933
sourceFileAnalyzerConfigOptions = Arguments.SourceFiles.SelectAsArray(f => analyzerConfigSet.
GetOptionsForSourcePath
(f.Path));
1080
analyzerConfigProvider = analyzerConfigProvider.WithGlobalOptions(new DictionaryAnalyzerConfigOptions(analyzerConfigSet.
GetOptionsForSourcePath
(string.Empty).AnalyzerOptions));
1085
additionalTextFiles.SelectAsArray(f => analyzerConfigSet.
GetOptionsForSourcePath
(f.Path));
1183
analyzerOptionsBuilder.Add(analyzerConfigSet!.
GetOptionsForSourcePath
(tree.FilePath));
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectState.AnalyzerConfigOptionsCache.cs (1)
27
private readonly Func<string, AnalyzerConfigData> _computeFunction = path => new AnalyzerConfigData(configSet.
GetOptionsForSourcePath
(path), fallbackOptions);