7 writes to _state
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
185_state = TargetEntryState.Dependencies; 368_state = TargetEntryState.Completed; 407_state = TargetEntryState.Execution; 674_state = TargetEntryState.ErrorExecution; 678_state = TargetEntryState.Completed; 730_state = TargetEntryState.Completed; 768_state = TargetEntryState.ErrorExecution;
11 references to _state
Microsoft.Build (11)
BackEnd\Components\RequestBuilder\TargetEntry.cs (11)
237return _state; 335VerifyState(_state, TargetEntryState.Dependencies); 419VerifyState(_state, TargetEntryState.Execution); 694VerifyState(_state, TargetEntryState.ErrorExecution); 741VerifyState(_state, TargetEntryState.Completed); 767ErrorUtilities.VerifyThrow(_state != TargetEntryState.Completed, "State must not be Completed. State is {0}.", _state); 778ErrorUtilities.VerifyThrow(_state == TargetEntryState.Completed, "State must be Completed. State is {0}.", _state); 779ErrorUtilities.VerifyThrow(_targetResult.ResultCode == TargetResultCode.Skipped, "ResultCode must be Skipped. ResultCode is {0}.", _state); 780ErrorUtilities.VerifyThrow(_targetResult.WorkUnitResult.ActionCode == WorkUnitActionCode.Continue, "ActionCode must be Continue. ActionCode is {0}.", _state);