13 references to ParentEntry
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (10)
438bool didPushTargets = await PushTargets(afterTargets, currentTargetEntry.ParentEntry, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, currentTargetEntry.StopProcessingOnCompletion, TargetBuiltReason.AfterTargets); 578ParentTarget = currentTargetEntry.ParentEntry?.Target.Name, 628while ((!_targetsToBuild.IsEmpty) && (_targetsToBuild.Peek() != topEntry.ParentEntry) && !_targetsToBuild.Peek().ErrorTarget) 645if (topEntry.ParentEntry != null && topEntry.ParentEntry.State != TargetEntryState.Completed) 647topEntry.ParentEntry.MarkForError(); 651else if (topEntry.ParentEntry?.Result?.ResultCode == TargetResultCode.Skipped) 653topEntry.ParentEntry.MarkForStop(); 856currentParent = currentParent.ParentEntry; 863currentParent = currentParent.ParentEntry;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
388ParentTarget = ParentEntry?.Target?.Name, 437if (ParentEntry?.Target != null) 439parentTargetName = ParentEntry.Target.Name;