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); 574ParentTarget = currentTargetEntry.ParentEntry?.Target.Name, 624while ((_targetsToBuild.Any()) && (_targetsToBuild.Peek() != topEntry.ParentEntry) && !_targetsToBuild.Peek().ErrorTarget) 641if (topEntry.ParentEntry != null && topEntry.ParentEntry.State != TargetEntryState.Completed) 643topEntry.ParentEntry.MarkForError(); 647else if (topEntry.ParentEntry?.Result?.ResultCode == TargetResultCode.Skipped) 649topEntry.ParentEntry.MarkForStop(); 852currentParent = currentParent.ParentEntry; 859currentParent = currentParent.ParentEntry;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
391ParentTarget = ParentEntry?.Target?.Name, 440if (ParentEntry?.Target != null) 442parentTargetName = ParentEntry.Target.Name;