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