7 references to ListSections
Microsoft.NET.ProjectData.Tasks (7)
ProjectDataMerger.cs (7)
184
var allLists = slices.Select(s => s.
ListSections
.TryGetValue(section, out List<string>? v) ? v : []).ToList();
246
List<string> sliceLines = slices[i].
ListSections
.TryGetValue(section, out List<string>? v) ? v : [];
296
if (slice.
ListSections
.TryGetValue(section, out List<string>? lines) && lines.Count > 0)
412
data.
ListSections
[currentSection] = currentList;
502
if (sharedData.
ListSections
.TryGetValue(section, out List<string>? sharedLines))
504
if (sliceDiff.
ListSections
.TryGetValue(section, out List<string>? diffLines))
507
combined.
ListSections
[section] = lines;