9 references to Sections
NuGet.Configuration (9)
Settings\NuGetConfiguration.cs (8)
84
if (
Sections
.TryGetValue(sectionName, out var section))
104
if (
Sections
.ContainsKey(sectionName))
132
if (
Sections
.TryGetValue(sectionName, out var section))
140
if (
Sections
.TryGetValue(sectionName, out var section))
151
foreach (var section in
Sections
)
166
return new NuGetConfiguration(Attributes,
Sections
.Select(s => (SettingSection)s.Value.Clone()));
183
return
Sections
.OrderedEquals(nugetConfiguration.
Sections
, s => s.Key, StringComparer.Ordinal);
Settings\SettingsFile.cs (1)
200
return _rootElement.
Sections
.TryGetValue(sectionName, out section);