2 writes to MutableAttributes
NuGet.Configuration (2)
Settings\SettingElement.cs (2)
73
MutableAttributes
= new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
105
MutableAttributes
= new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
7 references to MutableAttributes
NuGet.Configuration (7)
Settings\SettingElement.cs (6)
53
internal IReadOnlyDictionary<string, string> Attributes =>
MutableAttributes
;
85
MutableAttributes
.Add(attribute.Key, attribute.Value);
109
MutableAttributes
.Add(existingAttribute.Name.LocalName, existingAttribute.Value);
157
MutableAttributes
.Remove(attributeName);
161
MutableAttributes
[attributeName] = newValue;
186
MutableAttributes
[attributeName] = value;
Settings\SettingItem.cs (1)
66
var attributesImmutable = new Dictionary<string, string>(
MutableAttributes
);