1 instantiation of TargetEntry
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
752
TargetEntry newEntry = new
TargetEntry
(_requestEntry, this as ITargetBuilderCallback, targetSpecification, baseLookup, parentTargetEntry, entryReason, _componentHost, _projectLoggingContext, stopProcessingOnCompletion);
23 references to TargetEntry
Microsoft.Build (23)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (18)
51
private ConcurrentStack<
TargetEntry
> _targetsToBuild;
127
_targetsToBuild = new ConcurrentStack<
TargetEntry
>();
178
foreach (
TargetEntry
target in _targetsToBuild)
263
TargetEntry
currentTargetEntry = _targetsToBuild.Peek();
414
TargetEntry
currentTargetEntry = _targetsToBuild.Peek();
534
TargetEntry
topEntry = _targetsToBuild.Pop();
555
private bool CheckSkipTarget(ref bool stopProcessingStack,
TargetEntry
currentTargetEntry)
596
TargetEntry
topEntry = _targetsToBuild.Pop();
618
private void PopDependencyTargetsOnTargetFailure(
TargetEntry
topEntry, TargetResult targetResult, ref bool stopProcessingStack)
627
TargetEntry
entry = _targetsToBuild.Pop();
666
private async Task<bool> PushTargets(IList<TargetSpecification> targets,
TargetEntry
parentTargetEntry, Lookup baseLookup, bool addAsErrorTarget, bool stopProcessingOnCompletion, TargetBuiltReason buildReason)
668
List<
TargetEntry
> targetsToPush = new List<
TargetEntry
>(targets.Count);
730
foreach (
TargetEntry
entry in _targetsToBuild)
752
TargetEntry
newEntry = new TargetEntry(_requestEntry, this as ITargetBuilderCallback, targetSpecification, baseLookup, parentTargetEntry, entryReason, _componentHost, _projectLoggingContext, stopProcessingOnCompletion);
760
foreach (
TargetEntry
targetToPush in targetsToPush)
834
private bool HasCircularDependenceInTargets(
TargetEntry
parentTargetEntry, TargetSpecification targetSpecification, out List<string> circularDependenceChain)
836
TargetEntry
currentParent = parentTargetEntry;
BackEnd\Components\RequestBuilder\TargetEntry.cs (5)
74
internal class TargetEntry : IEquatable<
TargetEntry
>
109
private
TargetEntry
_parentTarget;
167
Lookup baseLookup,
TargetEntry
parentTarget,
294
internal
TargetEntry
ParentEntry
321
public bool Equals(
TargetEntry
other)