1 write to _computedSections
NuGet.Configuration (1)
Settings\Settings.cs (1)
231_computedSections = computedSections;
10 references to _computedSections
NuGet.Configuration (10)
Settings\Settings.cs (10)
48if (_computedSections.TryGetValue(sectionName, out var section)) 56public IEnumerable<string> GetAllSettingSections() { return _computedSections.Keys; } 71if (_computedSections.TryGetValue(sectionName, out var section) && section.Items.Contains(item)) 128if (_computedSections.TryGetValue(sectionName, out var section)) 138_computedSections.Add(sectionName, 153if (_computedSections.TryGetValue(sectionName, out _)) 156_computedSections[sectionName] = new VirtualSettingSection(settingFileSection!); 160_computedSections.Add(sectionName, new VirtualSettingSection(settingFileSection)); 176if (!_computedSections.TryGetValue(sectionName, out var section)) 190_computedSections.Remove(sectionName);