1 write to _globalProperties
Microsoft.Build (1)
Instance\ImmutableProjectCollections\ImmutableGlobalPropertiesCollectionConverter.cs (1)
39_globalProperties = globalProperties;
17 references to _globalProperties
Microsoft.Build (17)
Instance\ImmutableProjectCollections\ImmutableGlobalPropertiesCollectionConverter.cs (17)
49if (_globalProperties.ContainsKey(key)) 58public int Count => _globalProperties.Count; 62public ICollection<string> Keys => _globalProperties.Keys; 78public bool ContainsKey(string key) => _globalProperties.ContainsKey(key); 88ErrorUtilities.VerifyCollectionCopyToArguments(array, nameof(array), arrayIndex, nameof(arrayIndex), _globalProperties.Count); 91foreach (var itemKey in _globalProperties.Keys) 113if (actualProperty != null && _globalProperties.ContainsKey(actualProperty.Name)) 133public IDictionary<string, string> ToReadOnlyDictionary() => new System.Collections.ObjectModel.ReadOnlyDictionary<string, string>(_globalProperties); 139public bool TryGetEscapedValue(string key, out string escapedValue) => _globalProperties.TryGetValue(key, out escapedValue); 152foreach (var itemKey in _globalProperties.Keys) 173public int Count => _parent._globalProperties.Count; 185if (!_parent._globalProperties.ContainsKey(item.Name)) 202CopyTo(array, arrayIndex, _parent._globalProperties.Count); 207ErrorUtilities.VerifyCollectionCopyToArguments(array, nameof(array), arrayIndex, nameof(arrayIndex), _parent._globalProperties.Count); 211foreach (var itemKey in _parent._globalProperties.Keys) 230foreach (var itemKey in _parent._globalProperties.Keys) 242foreach (var itemKey in _parent._globalProperties.Keys)