22 references to TargetEntryState
Microsoft.Build (22)
BackEnd\Components\RequestBuilder\TargetBuilder.cs (5)
417
case
TargetEntryState
.Dependencies:
471
case
TargetEntryState
.Execution:
495
case
TargetEntryState
.ErrorExecution:
515
case
TargetEntryState
.Completed:
642
if (topEntry.ParentEntry != null && topEntry.ParentEntry.State !=
TargetEntryState
.Completed)
BackEnd\Components\RequestBuilder\TargetEntry.cs (17)
99
private
TargetEntryState
_state;
185
_state =
TargetEntryState
.Dependencies;
233
internal
TargetEntryState
State
335
VerifyState(_state,
TargetEntryState
.Dependencies);
369
_state =
TargetEntryState
.Completed;
409
_state =
TargetEntryState
.Execution;
421
VerifyState(_state,
TargetEntryState
.Execution);
679
_state =
TargetEntryState
.ErrorExecution;
683
_state =
TargetEntryState
.Completed;
699
VerifyState(_state,
TargetEntryState
.ErrorExecution);
735
_state =
TargetEntryState
.Completed;
746
VerifyState(_state,
TargetEntryState
.Completed);
772
Assumed.NotEqual(_state,
TargetEntryState
.Completed, $"State must not be Completed. State is {_state}.");
773
_state =
TargetEntryState
.ErrorExecution;
783
Assumed.Equal(_state,
TargetEntryState
.Completed, $"State must be Completed. State is {_state}.");
887
private void VerifyState(
TargetEntryState
actual,
TargetEntryState
expected)