1 instantiation of Section
Microsoft.Build (1)
BuildCheck\Infrastructure\EditorConfig\EditorConfigFile.cs (1)
134var previousSection = new Section(activeSectionName, activeSectionProperties.ToImmutable());
11 references to Section
Microsoft.Build (9)
BuildCheck\Infrastructure\EditorConfig\EditorConfigFile.cs (7)
50internal Section GlobalSection { get; } 52internal ImmutableArray<Section> NamedSections { get; } 60Section globalSection, 61ImmutableArray<Section> namedSections) 73Section? globalSection = null; 74var namedSectionBuilder = ImmutableArray.CreateBuilder<Section>(); 134var previousSection = new Section(activeSectionName, activeSectionProperties.ToImmutable());
BuildCheck\Infrastructure\EditorConfig\EditorConfigGlobsMatcher.cs (1)
71/// Takes a <see cref="EditorConfigFile.Section.Name"/> and creates a matcher that
BuildCheck\Infrastructure\EditorConfig\EditorConfigParser.cs (1)
84foreach (var section in editorConfigFiles[i].NamedSections)
Microsoft.Build.BuildCheck.UnitTests (2)
EditorConfigParser_Tests.cs (2)
135var csSection = result.NamedSections.FirstOrDefault(s => s.Name == "*.cs"); 141var mdSection = result.NamedSections.FirstOrDefault(s => s.Name == "*.md");