1 write to _targetsToBuild
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
127
_targetsToBuild
= new ConcurrentStack<TargetEntry>();
18 references to _targetsToBuild
Microsoft.Build (18)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (18)
178
foreach (TargetEntry target in
_targetsToBuild
)
263
TargetEntry currentTargetEntry =
_targetsToBuild
.Peek();
310
while (!Object.ReferenceEquals(
_targetsToBuild
.Peek(), currentTargetEntry))
312
_targetsToBuild
.Pop();
415
!
_targetsToBuild
.IsEmpty)
417
TargetEntry currentTargetEntry =
_targetsToBuild
.Peek();
434
_targetsToBuild
.Pop();
448
_targetsToBuild
.Push(currentTargetEntry);
537
TargetEntry topEntry =
_targetsToBuild
.Pop();
594
_targetsToBuild
.Peek().LeaveLegacyCallTargetScopes();
595
_targetsToBuild
.Pop();
599
TargetEntry topEntry =
_targetsToBuild
.Pop();
628
while ((!
_targetsToBuild
.IsEmpty) && (
_targetsToBuild
.Peek() != topEntry.ParentEntry) && !
_targetsToBuild
.Peek().ErrorTarget)
630
TargetEntry entry =
_targetsToBuild
.Pop();
733
foreach (TargetEntry entry in
_targetsToBuild
)
765
_targetsToBuild
.Push(targetToPush);