13 references to ParentEntry
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (10)
435
bool didPushTargets = await PushTargets(afterTargets, currentTargetEntry.
ParentEntry
, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, currentTargetEntry.StopProcessingOnCompletion, TargetBuiltReason.AfterTargets);
575
ParentTarget = currentTargetEntry.
ParentEntry
?.Target.Name,
625
while ((!_targetsToBuild.IsEmpty) && (_targetsToBuild.Peek() != topEntry.
ParentEntry
) && !_targetsToBuild.Peek().ErrorTarget)
642
if (topEntry.
ParentEntry
!= null && topEntry.
ParentEntry
.State != TargetEntryState.Completed)
644
topEntry.
ParentEntry
.MarkForError();
648
else if (topEntry.
ParentEntry
?.Result?.ResultCode == TargetResultCode.Skipped)
650
topEntry.
ParentEntry
.MarkForStop();
853
currentParent = currentParent.
ParentEntry
;
860
currentParent = currentParent.
ParentEntry
;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
388
ParentTarget =
ParentEntry
?.Target?.Name,
437
if (
ParentEntry
?.Target != null)
439
parentTargetName =
ParentEntry
.Target.Name;