Implemented interface member:
property
OutputAssembly
Microsoft.Build.Tasks.IALTaskContract.OutputAssembly
1 write to OutputAssembly
Microsoft.Build.Tasks.UnitTests (1)
Al_Tests.cs (1)
354
t.
OutputAssembly
= new TaskItem("foo.dll");
6 references to OutputAssembly
Microsoft.Build.Tasks.Core (4)
Al.cs (4)
170
set => Bag[nameof(
OutputAssembly
)] = value;
171
get => (ITaskItem)Bag[nameof(
OutputAssembly
)];
347
commandLine.AppendSwitchIfNotNull("/out:",
OutputAssembly
?.ItemSpec);
389
OutputAssembly
?.SetMetadata("Culture", Culture);
Microsoft.Build.Tasks.UnitTests (2)
Al_Tests.cs (2)
353
Assert.Null(t.
OutputAssembly
); // "Default value"
355
Assert.Equal("foo.dll", t.
OutputAssembly
.ItemSpec); // "New value"