2 writes to _propertiesToAdd
Microsoft.Build (1)
BackEnd\Components\SdkResolution\SdkResult.cs (1)
90translator.TranslateDictionary(ref _propertiesToAdd, count => new Dictionary<string, string>(count, StringComparer.OrdinalIgnoreCase));
Microsoft.Build.Framework (1)
Sdk\SdkResult.cs (1)
63public virtual IDictionary<string, string> PropertiesToAdd { get => _propertiesToAdd; protected set => _propertiesToAdd = value; }
9 references to _propertiesToAdd
Microsoft.Build (8)
BackEnd\Components\SdkResolution\SdkResult.cs (8)
113_propertiesToAdd?.Count == result._propertiesToAdd?.Count && 114_itemsToAdd?.Count == result._propertiesToAdd?.Count && 128if (_propertiesToAdd != null) 130foreach (var propertyToAdd in _propertiesToAdd) 132if (result._propertiesToAdd[propertyToAdd.Key] != propertyToAdd.Value) 172if (_propertiesToAdd != null) 174foreach (var propertyToAdd in _propertiesToAdd)
Microsoft.Build.Framework (1)
Sdk\SdkResult.cs (1)
63public virtual IDictionary<string, string> PropertiesToAdd { get => _propertiesToAdd; protected set => _propertiesToAdd = value; }