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