Implemented interface member:
property
Platform
Microsoft.Build.Tasks.IALTaskContract.Platform
7 writes to Platform
Microsoft.Build.Tasks.UnitTests (7)
Al_Tests.cs (7)
370t.Platform = "x86"; 396t.Platform = "anycpu"; 399t.Platform = "anycpu"; 403t.Platform = "anycpu"; 411t.Platform = "x86"; 414t.Platform = "x86"; 418t.Platform = "x86";
8 references to Platform
Microsoft.Build.Tasks.Core (6)
Al.cs (6)
176set => Bag[nameof(Platform)] = value; 177get => (string)Bag[nameof(Platform)]; 187string platform = Platform; 317string archToLookFor = "x86".Equals(Platform, StringComparison.OrdinalIgnoreCase) ? Platform : 318"x64".Equals(Platform, StringComparison.OrdinalIgnoreCase) ? ProcessorArchitecture.AMD64 : // x64 maps to AMD64 in GeneratePathToTool
Microsoft.Build.Tasks.UnitTests (2)
Al_Tests.cs (2)
369Assert.Null(t.Platform); // "Default value" 371Assert.Equal("x86", t.Platform); // "New value"