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