1 instantiation of RuleSetInclude
Microsoft.CodeAnalysis (1)
RuleSet\RuleSetProcessor.cs (1)
196
return new
RuleSetInclude
(includePath, action);
8 references to RuleSetInclude
Microsoft.CodeAnalysis (8)
RuleSet\RuleSet.cs (6)
47
private readonly ImmutableArray<
RuleSetInclude
> _includes;
51
public ImmutableArray<
RuleSetInclude
> Includes
59
public RuleSet(string filePath, ReportDiagnostic generalOption, ImmutableDictionary<string, ReportDiagnostic> specificOptions, ImmutableArray<
RuleSetInclude
> includes)
116
foreach (
var
ruleSetInclude in _includes)
185
return new RuleSet(_filePath, effectiveGeneralOption, effectiveSpecificOptions.ToImmutableDictionary(), ImmutableArray<
RuleSetInclude
>.Empty);
204
foreach (
var
ruleSetInclude in _includes)
RuleSet\RuleSetProcessor.cs (2)
100
var includes = ImmutableArray.CreateBuilder<
RuleSetInclude
>();
191
private static
RuleSetInclude
ReadRuleSetInclude(XElement includeNode)