16 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, $"{targetOutputsPerProject.Length} != {result.
TargetOutputsPerProject
.Count}");
307
foreach (KeyValuePair<string, ITaskItem[]> output in result.
TargetOutputsPerProject
[i])
src\msbuild\src\Shared\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.Tasks.Core (1)
MSBuild.cs (1)
615
IList<IDictionary<string, ITaskItem[]>> targetOutputsPerProject = result.
TargetOutputsPerProject
;
MSBuild (7)
OutOfProcTaskHostNode.cs (3)
523
if (includeTargetOutputs && result.
TargetOutputsPerProject
is not null)
525
for (int i = 0; i < targetOutputsPerProject.Length && i < result.
TargetOutputsPerProject
.Count; i++)
529
foreach (KeyValuePair<string, ITaskItem[]> output in result.
TargetOutputsPerProject
[i])
src\msbuild\src\Shared\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
)