1 instantiation of Section
Microsoft.NET.ProjectData.Tasks (1)
ForwardCompat.cs (1)
692 current = new Section { Name = name, HeaderLineIndex = i };
15 references to Section
Microsoft.NET.ProjectData.Tasks (15)
ForwardCompat.cs (15)
426 var candidateSectionsByName = new Dictionary<string, Section>(StringComparer.Ordinal); 427 foreach (Section section in candidate.Sections) 435 foreach (Section section in existing.Sections) 455 && candidateSectionsByName.TryGetValue(section.Name, out Section? candidateSection)) 470 private static int LineBeforeSectionWithOptionalLeadingBlank(Segment candidate, Section section) 479 foreach (Section candidateSection in candidate.Sections) 501 Section? existingProps = existing.Sections.FirstOrDefault(s => s.Name == CacheFormat.Sections.Properties); 516 Section? candidateProps = candidate.Sections.FirstOrDefault(s => s.Name == CacheFormat.Sections.Properties); 521 Section? anchorSection = candidate.Sections.FirstOrDefault(s => s.Name == CacheFormat.Sections.SliceDimensions) 572 foreach (Section existingSection in existing.Sections) 594 Section? candidateSection = candidate.Sections.FirstOrDefault(s => s.Name == existingSection.Name); 670 Section? current = null; 727 private static List<Leaf> ExpandLeaves(Section section) 897 public List<Section> Sections { get; } = new List<Section>();