10 references to OutputsByTarget
Microsoft.Build.Engine (10)
Engine\BuildRequest.cs (1)
548this.OutputsByTarget = cachedResult.OutputsByTarget;
Engine\CacheScope.cs (4)
267IDictionary outputsByTargetName = buildResult.OutputsByTarget; 283ErrorUtilities.VerifyThrow(buildResult.OutputsByTarget.Contains(entry.Key), 286BuildItem[] outputItems = (BuildItem[])buildResult.OutputsByTarget[entry.Key]; 298targetOutputs = (BuildItem[])buildResult.OutputsByTarget[entry.Key];
Engine\Engine.cs (2)
2379if (buildResult.OutputsByTarget != null && targetOutputsPerProject[i] != null) 2382foreach (DictionaryEntry de in buildResult.OutputsByTarget)
Engine\EngineCallback.cs (1)
230routingContext.TriggeringBuildRequest.OutputsByTarget = buildResult.OutputsByTarget;
Engine\TaskExecutionModule.cs (2)
264if (buildResultsLocal[i].OutputsByTarget != null && targetOutputsPerProject[i] != null) 266foreach (DictionaryEntry entry in buildResultsLocal[i].OutputsByTarget)