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