3 writes to OutputAssembly
Microsoft.Build.Tasks.Core (1)
AxReference.cs (1)
92axImp.OutputAssembly = Path.Combine(OutputDirectory, GetWrapperFileName());
Microsoft.Build.Tasks.UnitTests (2)
AxImp_Tests.cs (2)
99t.OutputAssembly = testParameterValue; 122t.OutputAssembly = testParameterValue;
7 references to OutputAssembly
Microsoft.Build.Tasks.Core (3)
AxImp.cs (3)
80get => (string)Bag[nameof(OutputAssembly)]; 81set => Bag[nameof(OutputAssembly)] = value; 132commandLine.AppendSwitchIfNotNull("/out:", OutputAssembly);
Microsoft.Build.Tasks.UnitTests (4)
AxImp_Tests.cs (4)
93Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" 100Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" 116Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" 123Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set"