13 references to ParentEntry
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (10)
438
bool didPushTargets = await PushTargets(afterTargets, currentTargetEntry.
ParentEntry
, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, currentTargetEntry.StopProcessingOnCompletion, TargetBuiltReason.AfterTargets);
574
ParentTarget = currentTargetEntry.
ParentEntry
?.Target.Name,
624
while ((_targetsToBuild.Any()) && (_targetsToBuild.Peek() != topEntry.
ParentEntry
) && !_targetsToBuild.Peek().ErrorTarget)
641
if (topEntry.
ParentEntry
!= null && topEntry.
ParentEntry
.State != TargetEntryState.Completed)
643
topEntry.
ParentEntry
.MarkForError();
647
else if (topEntry.
ParentEntry
?.Result?.ResultCode == TargetResultCode.Skipped)
649
topEntry.
ParentEntry
.MarkForStop();
852
currentParent = currentParent.
ParentEntry
;
859
currentParent = currentParent.
ParentEntry
;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
391
ParentTarget =
ParentEntry
?.Target?.Name,
440
if (
ParentEntry
?.Target != null)
442
parentTargetName =
ParentEntry
.Target.Name;