13 references to ParentEntry
Microsoft.Build (13)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (10)
432bool didPushTargets = await PushTargets(afterTargets, currentTargetEntry.ParentEntry, currentTargetEntry.Lookup, currentTargetEntry.ErrorTarget, currentTargetEntry.StopProcessingOnCompletion, TargetBuiltReason.AfterTargets); 564ParentTarget = currentTargetEntry.ParentEntry?.Target.Name, 614while ((_targetsToBuild.Any()) && (_targetsToBuild.Peek() != topEntry.ParentEntry) && !_targetsToBuild.Peek().ErrorTarget) 631if (topEntry.ParentEntry != null && topEntry.ParentEntry.State != TargetEntryState.Completed) 633topEntry.ParentEntry.MarkForError(); 637else if (topEntry.ParentEntry?.Result?.ResultCode == TargetResultCode.Skipped) 639topEntry.ParentEntry.MarkForStop(); 840currentParent = currentParent.ParentEntry; 847currentParent = currentParent.ParentEntry;
BackEnd\Components\RequestBuilder\TargetEntry.cs (3)
383ParentTarget = ParentEntry?.Target?.Name, 432if (ParentEntry?.Target != null) 434parentTargetName = ParentEntry.Target.Name;