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