2 writes to PropertiesToAdd
Microsoft.Build (2)
BackEnd\Components\SdkResolution\SdkResult.cs (2)
41
PropertiesToAdd
= propertiesToAdd;
70
PropertiesToAdd
= propertiesToAdd;
10 references to PropertiesToAdd
Microsoft.Build (5)
Evaluation\Evaluator.cs (5)
1853
if ((sdkResult.
PropertiesToAdd
?.Any() == true) ||
1883
if (sdkResult.
PropertiesToAdd
!= null)
1885
foreach (var property in sdkResult.
PropertiesToAdd
)
1923
if (sdkResult.
PropertiesToAdd
?.Any() == true)
1926
foreach (var propertyNameAndValue in sdkResult.
PropertiesToAdd
)
Microsoft.Build.Engine.UnitTests (5)
BackEnd\SdkResolverService_Tests.cs (3)
351
result.
PropertiesToAdd
.Count.ShouldBe(1);
352
result.
PropertiesToAdd
["PropertyFromSdkResolver"].ShouldBe("ValueFromSdkResolver");
362
result.
PropertiesToAdd
.ShouldBeNull();
InternalEngineHelpers.cs (2)
125
sdkResult.
PropertiesToAdd
== null ? null : new Dictionary<string, string>(sdkResult.
PropertiesToAdd
, StringComparer.OrdinalIgnoreCase),