1 write to Properties
Microsoft.CodeAnalysis (1)
CommandLine\AnalyzerConfig.cs (1)
322
Properties
= properties;
7 references to Properties
Microsoft.CodeAnalysis (7)
CommandLine\AnalyzerConfig.cs (4)
114
internal bool IsRoot => GlobalSection.
Properties
.TryGetValue("root", out string? val) && val == "true";
119
internal bool IsGlobal => _hasGlobalFileName || GlobalSection.
Properties
.ContainsKey(GlobalKey);
142
if (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)
400
foreach (var (key, value) in section.
Properties
)
497
var unescapedSection = new Section(UnescapeSectionName(section.Name), section.
Properties
);
573
foreach ((var key, var value) in section.
Properties
)