3 implementations of LegacyCallTarget
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
244async Task<ITargetResult[]> ITargetBuilderCallback.LegacyCallTarget(string[] targets, bool continueOnError, ElementLocation taskLocation)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\TargetEntry_Tests.cs (1)
925Task<ITargetResult[]> ITargetBuilderCallback.LegacyCallTarget(string[] targets, bool continueOnError, ElementLocation referenceLocation)
BackEnd\TaskBuilder_Tests.cs (1)
877Task<ITargetResult[]> ITargetBuilderCallback.LegacyCallTarget(string[] targets, bool continueOnError, ElementLocation referenceLocation)
4 references to LegacyCallTarget
Microsoft.Build (3)
BackEnd\Components\RequestBuilder\TaskHost.cs (2)
979ITargetResult[] results = await _targetBuilderCallback.LegacyCallTarget(targetNames, ContinueOnError, _taskLocation); 1156ITargetResult[] results = await _targetBuilderCallback.LegacyCallTarget(targetNames, ContinueOnError, _taskLocation);
BackEnd\Shared\TargetResult.cs (1)
63/// * in <see cref="ITargetBuilderCallback.LegacyCallTarget"/> when Cancellation was requested
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockTaskBuilder.cs (1)
112targetBuilderCallback.LegacyCallTarget(taskInstance.GetParameter("Targets").Split(MSBuildConstants.SemicolonChar), false, taskInstance.Location);