3 writes to OutputAssembly
Microsoft.Build.Tasks.Core (1)
TlbReference.cs (1)
163OutputAssembly = wrapperPath,
Microsoft.Build.Tasks.UnitTests (2)
TlbImp_Tests.cs (2)
166t.OutputAssembly = testParameterValue; 189t.OutputAssembly = testParameterValue;
7 references to OutputAssembly
Microsoft.Build.Tasks.Core (3)
TlbImp.cs (3)
164get => (string)Bag[nameof(OutputAssembly)]; 165set => Bag[nameof(OutputAssembly)] = value; 247commandLine.AppendSwitchIfNotNull("/out:", OutputAssembly);
Microsoft.Build.Tasks.UnitTests (4)
TlbImp_Tests.cs (4)
160Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" 167Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" 183Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" 190Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set"