7 writes to _state
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
190_state = TargetEntryState.Dependencies; 373_state = TargetEntryState.Completed; 412_state = TargetEntryState.Execution; 679_state = TargetEntryState.ErrorExecution; 683_state = TargetEntryState.Completed; 735_state = TargetEntryState.Completed; 773_state = TargetEntryState.ErrorExecution;
11 references to _state
Microsoft.Build (11)
BackEnd\Components\RequestBuilder\TargetEntry.cs (11)
242return _state; 340VerifyState(_state, TargetEntryState.Dependencies); 424VerifyState(_state, TargetEntryState.Execution); 699VerifyState(_state, TargetEntryState.ErrorExecution); 746VerifyState(_state, TargetEntryState.Completed); 772ErrorUtilities.VerifyThrow(_state != TargetEntryState.Completed, "State must not be Completed. State is {0}.", _state); 783ErrorUtilities.VerifyThrow(_state == TargetEntryState.Completed, "State must be Completed. State is {0}.", _state); 784ErrorUtilities.VerifyThrow(_targetResult.ResultCode == TargetResultCode.Skipped, "ResultCode must be Skipped. ResultCode is {0}.", _state); 785ErrorUtilities.VerifyThrow(_targetResult.WorkUnitResult.ActionCode == WorkUnitActionCode.Continue, "ActionCode must be Continue. ActionCode is {0}.", _state);