20 references to TargetOutputsPerProject
Microsoft.Build (8)
BackEnd\Components\RequestBuilder\IntrinsicTasks\MSBuild.cs (1)
672
IList<IDictionary<string, ITaskItem[]>> targetOutputsPerProject = result.
TargetOutputsPerProject
;
BackEnd\Components\RequestBuilder\TaskHost.cs (3)
301
ErrorUtilities.VerifyThrow(targetOutputsPerProject.Length == result.
TargetOutputsPerProject
.Count, "{0} != {1}", targetOutputsPerProject.Length, result.
TargetOutputsPerProject
.Count);
307
foreach (KeyValuePair<string, ITaskItem[]> output in result.
TargetOutputsPerProject
[i])
TaskHostBuildResponse.cs (4)
89
if (engineResult.
TargetOutputsPerProject
is not null && engineResult.
TargetOutputsPerProject
.Count > 0)
91
outputs = new List<Dictionary<string, TaskParameter>>(engineResult.
TargetOutputsPerProject
.Count);
93
foreach (IDictionary<string, ITaskItem[]> projectOutputs in engineResult.
TargetOutputsPerProject
)
Microsoft.Build.Engine.UnitTests (3)
BackEnd\TaskHostCallbackPacket_Tests.cs (3)
178
buildEngineResult.
TargetOutputsPerProject
.Count.ShouldBe(1);
179
buildEngineResult.
TargetOutputsPerProject
[0]["Build"].Length.ShouldBe(1);
180
buildEngineResult.
TargetOutputsPerProject
[0]["Build"][0].ItemSpec.ShouldBe("item1.dll");
Microsoft.Build.Tasks.Core (1)
MSBuild.cs (1)
615
IList<IDictionary<string, ITaskItem[]>> targetOutputsPerProject = result.
TargetOutputsPerProject
;
Microsoft.Build.UnitTests.Shared (1)
MockEngine.cs (1)
297
foreach (KeyValuePair<string, ITaskItem[]> output in result.
TargetOutputsPerProject
[i])
MSBuild (7)
OutOfProcTaskHostNode.cs (3)
525
if (includeTargetOutputs && result.
TargetOutputsPerProject
is not null)
527
for (int i = 0; i < targetOutputsPerProject.Length && i < result.
TargetOutputsPerProject
.Count; i++)
531
foreach (KeyValuePair<string, ITaskItem[]> output in result.
TargetOutputsPerProject
[i])
TaskHostBuildResponse.cs (4)
89
if (engineResult.
TargetOutputsPerProject
is not null && engineResult.
TargetOutputsPerProject
.Count > 0)
91
outputs = new List<Dictionary<string, TaskParameter>>(engineResult.
TargetOutputsPerProject
.Count);
93
foreach (IDictionary<string, ITaskItem[]> projectOutputs in engineResult.
TargetOutputsPerProject
)