7 writes to Machine
Microsoft.Build.Tasks.Core (6)
TlbReference.cs (6)
186tlbImp.Machine = "Agnostic"; 189tlbImp.Machine = "X64"; 192tlbImp.Machine = "Itanium"; 195tlbImp.Machine = "X86"; 198tlbImp.Machine = "ARM"; 204tlbImp.Machine = _targetProcessorArchitecture;
Microsoft.Build.Tasks.UnitTests (1)
TlbImp_Tests.cs (1)
24t.Machine = "Agnostic";
5 references to Machine
Microsoft.Build.Tasks.Core (3)
TlbImp.cs (3)
146get => (string)Bag[nameof(Machine)]; 147set => Bag[nameof(Machine)] = value; 244commandLine.AppendSwitchIfNotNull("/machine:", Machine);
Microsoft.Build.Tasks.UnitTests (2)
TlbImp_Tests.cs (2)
22Assert.Null(t.Machine); // "Machine should be null by default" 25Assert.Equal("Agnostic", t.Machine); // "New TypeLibName value should be set");