3 writes to OutputAssembly
Microsoft.Build.Tasks.CodeAnalysis (1)
ManagedCompiler.cs (1)
844
OutputAssembly
= new TaskItem(Path.GetFileNameWithoutExtension(Sources[0].ItemSpec));
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (2)
CscTests.cs (1)
177
csc.
OutputAssembly
= MSBuildUtil.CreateTaskItem("x.exe");
VbcTests.cs (1)
173
vbc.
OutputAssembly
= MSBuildUtil.CreateTaskItem("x.exe");
10 references to OutputAssembly
Microsoft.Build.Tasks.CodeAnalysis (10)
ManagedCompiler.cs (7)
271
set { _store[nameof(
OutputAssembly
)] = value; }
272
get { return (ITaskItem?)_store[nameof(
OutputAssembly
)]; }
836
(
OutputAssembly
== null) &&
852
OutputAssembly
.ItemSpec += ".dll";
856
OutputAssembly
.ItemSpec += ".netmodule";
860
OutputAssembly
.ItemSpec += ".exe";
890
commandLine.AppendSwitchIfNotNull("/out:",
OutputAssembly
);
Vbc.cs (3)
279
MovePdbFileIfNecessary(
OutputAssembly
?.ItemSpec);
854
CheckHostObjectSupport(param = nameof(
OutputAssembly
), vbcHostObject.SetOutputAssembly(
OutputAssembly
?.ItemSpec));