1 instantiation of AnalyzerConfigSet
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfigSet.cs (1)
133return new AnalyzerConfigSet(sortedAnalyzerConfigs.ToImmutableAndFree(), globalConfig);
14 references to AnalyzerConfigSet
Microsoft.CodeAnalysis (11)
CommandLine\AnalyzerConfigOptionsResult.cs (1)
13/// Holds results from <see cref="AnalyzerConfigSet.GetOptionsForSourcePath(string)"/>.
CommandLine\AnalyzerConfigSet.cs (3)
121public static AnalyzerConfigSet Create<TList>(TList analyzerConfigs) where TList : IReadOnlyCollection<AnalyzerConfig> 126public static AnalyzerConfigSet Create<TList>(TList analyzerConfigs, out ImmutableArray<Diagnostic> diagnostics) where TList : IReadOnlyCollection<AnalyzerConfig> 640/// However, when viewing the configs as an <see cref="AnalyzerConfigSet"/> if multiple files have the
CommandLine\CommonCompiler.cs (5)
287[NotNullWhen(true)] out AnalyzerConfigSet? analyzerConfigSet) 333analyzerConfigSet = AnalyzerConfigSet.Create(configs, out var setDiagnostics); 911AnalyzerConfigSet? analyzerConfigSet = null; 1062AnalyzerConfigSet? analyzerConfigSet, 1105AnalyzerConfigSet? analyzerConfigSet,
DiagnosticAnalyzer\AnalyzerOptionsExtensions.cs (2)
71AnalyzerConfigSet.TryParseSeverity(value, out severity)) 83AnalyzerConfigSet.TryParseSeverity(value, out severity))
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\ProjectState.AnalyzerConfigOptionsCache.cs (3)
24public readonly struct Value(AnalyzerConfigSet configSet, StructuredAnalyzerConfigOptions fallbackOptions) 46return new Value(AnalyzerConfigSet.Create(analyzerConfigs), fallbackOptions); 52return new Value(AnalyzerConfigSet.Create(analyzerConfigs), fallbackOptions);