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)
1867
if ((sdkResult.
PropertiesToAdd
?.Any() == true) ||
1895
if (sdkResult.
PropertiesToAdd
!= null)
1897
foreach (var property in sdkResult.
PropertiesToAdd
)
1940
if (sdkResult.
PropertiesToAdd
?.Any() == true)
1943
foreach (var propertyNameAndValue in sdkResult.
PropertiesToAdd
)
Microsoft.Build.Engine.UnitTests (5)
BackEnd\SdkResolverService_Tests.cs (3)
404
result.
PropertiesToAdd
.Count.ShouldBe(1);
405
result.
PropertiesToAdd
["PropertyFromSdkResolver"].ShouldBe("ValueFromSdkResolver");
415
result.
PropertiesToAdd
.ShouldBeNull();
InternalEngineHelpers.cs (2)
125
sdkResult.
PropertiesToAdd
== null ? null : new Dictionary<string, string>(sdkResult.
PropertiesToAdd
, StringComparer.OrdinalIgnoreCase),