1 write to Properties
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.cs (1)
322Properties = properties;
7 references to Properties
Microsoft.CodeAnalysis (7)
CommandLine\AnalyzerConfig.cs (4)
114internal bool IsRoot => GlobalSection.Properties.TryGetValue("root", out string? val) && val == "true"; 119internal bool IsGlobal => _hasGlobalFileName || GlobalSection.Properties.ContainsKey(GlobalKey); 142if (GlobalSection.Properties.TryGetValue(GlobalLevelKey, out string? val) && int.TryParse(val, out int level)) 314/// Used to compare keys in <see cref="Properties"/>. The editorconfig spec defines property
CommandLine\AnalyzerConfigSet.cs (3)
400foreach (var (key, value) in section.Properties) 497var unescapedSection = new Section(UnescapeSectionName(section.Name), section.Properties); 573foreach ((var key, var value) in section.Properties)