1 instantiation of AnalyzerConfigSet
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfigSet.cs (1)
133
return 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)
121
public static
AnalyzerConfigSet
Create<TList>(TList analyzerConfigs) where TList : IReadOnlyCollection<AnalyzerConfig>
126
public 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)
333
analyzerConfigSet =
AnalyzerConfigSet
.Create(configs, out var setDiagnostics);
911
AnalyzerConfigSet
? analyzerConfigSet = null;
1062
AnalyzerConfigSet
? analyzerConfigSet,
1105
AnalyzerConfigSet
? analyzerConfigSet,
DiagnosticAnalyzer\AnalyzerOptionsExtensions.cs (2)
71
AnalyzerConfigSet
.TryParseSeverity(value, out severity))
83
AnalyzerConfigSet
.TryParseSeverity(value, out severity))
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\ProjectState.AnalyzerConfigOptionsCache.cs (3)
24
public readonly struct Value(
AnalyzerConfigSet
configSet, StructuredAnalyzerConfigOptions fallbackOptions)
46
return new Value(
AnalyzerConfigSet
.Create(analyzerConfigs), fallbackOptions);
52
return new Value(
AnalyzerConfigSet
.Create(analyzerConfigs), fallbackOptions);