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);
578
ParentTarget = currentTargetEntry.
ParentEntry
?.Target.Name,
628
while ((!_targetsToBuild.IsEmpty) && (_targetsToBuild.Peek() != topEntry.
ParentEntry
) && !_targetsToBuild.Peek().ErrorTarget)
645
if (topEntry.
ParentEntry
!= null && topEntry.
ParentEntry
.State != TargetEntryState.Completed)
647
topEntry.
ParentEntry
.MarkForError();
651
else if (topEntry.
ParentEntry
?.Result?.ResultCode == TargetResultCode.Skipped)
653
topEntry.
ParentEntry
.MarkForStop();
856
currentParent = currentParent.
ParentEntry
;
863
currentParent = currentParent.
ParentEntry
;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
388
ParentTarget =
ParentEntry
?.Target?.Name,
437
if (
ParentEntry
?.Target != null)
439
parentTargetName =
ParentEntry
.Target.Name;