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