16 references to TargetOutputsPerProject
Microsoft.Build (8)
BackEnd\Components\RequestBuilder\IntrinsicTasks\MSBuild.cs (1)
657IList<IDictionary<string, ITaskItem[]>> targetOutputsPerProject = result.TargetOutputsPerProject;
BackEnd\Components\RequestBuilder\TaskHost.cs (3)
300Assumed.Equal(targetOutputsPerProject.Length, result.TargetOutputsPerProject.Count, $"{targetOutputsPerProject.Length} != {result.TargetOutputsPerProject.Count}"); 306foreach (KeyValuePair<string, ITaskItem[]> output in result.TargetOutputsPerProject[i])
src\msbuild\src\Shared\TaskHostBuildResponse.cs (4)
89if (engineResult.TargetOutputsPerProject is not null && engineResult.TargetOutputsPerProject.Count > 0) 91outputs = new List<Dictionary<string, TaskParameter>>(engineResult.TargetOutputsPerProject.Count); 93foreach (IDictionary<string, ITaskItem[]> projectOutputs in engineResult.TargetOutputsPerProject)
Microsoft.Build.Tasks.Core (1)
MSBuild.cs (1)
599IList<IDictionary<string, ITaskItem[]>> targetOutputsPerProject = result.TargetOutputsPerProject;
MSBuild (7)
OutOfProcTaskHostNode.cs (3)
521if (includeTargetOutputs && result.TargetOutputsPerProject is not null) 523for (int i = 0; i < targetOutputsPerProject.Length && i < result.TargetOutputsPerProject.Count; i++) 527foreach (KeyValuePair<string, ITaskItem[]> output in result.TargetOutputsPerProject[i])
src\msbuild\src\Shared\TaskHostBuildResponse.cs (4)
89if (engineResult.TargetOutputsPerProject is not null && engineResult.TargetOutputsPerProject.Count > 0) 91outputs = new List<Dictionary<string, TaskParameter>>(engineResult.TargetOutputsPerProject.Count); 93foreach (IDictionary<string, ITaskItem[]> projectOutputs in engineResult.TargetOutputsPerProject)