Implemented interface member:
property
Platform
Microsoft.Build.Tasks.IALTaskContract.Platform
7 writes to Platform
Microsoft.Build.Tasks.UnitTests (7)
Al_Tests.cs (7)
370
t.
Platform
= "x86";
396
t.
Platform
= "anycpu";
399
t.
Platform
= "anycpu";
403
t.
Platform
= "anycpu";
411
t.
Platform
= "x86";
414
t.
Platform
= "x86";
418
t.
Platform
= "x86";
8 references to Platform
Microsoft.Build.Tasks.Core (6)
Al.cs (6)
176
set => Bag[nameof(
Platform
)] = value;
177
get => (string)Bag[nameof(
Platform
)];
187
string platform =
Platform
;
317
string 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)
369
Assert.Null(t.
Platform
); // "Default value"
371
Assert.Equal("x86", t.
Platform
); // "New value"