7 writes to _state
Microsoft.Build (7)
BackEnd\Components\RequestBuilder\TargetEntry.cs (7)
180_state = TargetEntryState.Dependencies; 365_state = TargetEntryState.Completed; 404_state = TargetEntryState.Execution; 673_state = TargetEntryState.ErrorExecution; 677_state = TargetEntryState.Completed; 729_state = TargetEntryState.Completed; 767_state = TargetEntryState.ErrorExecution;
11 references to _state
Microsoft.Build (11)
BackEnd\Components\RequestBuilder\TargetEntry.cs (11)
232return _state; 330VerifyState(_state, TargetEntryState.Dependencies); 416VerifyState(_state, TargetEntryState.Execution); 693VerifyState(_state, TargetEntryState.ErrorExecution); 740VerifyState(_state, TargetEntryState.Completed); 766ErrorUtilities.VerifyThrow(_state != TargetEntryState.Completed, "State must not be Completed. State is {0}.", _state); 777ErrorUtilities.VerifyThrow(_state == TargetEntryState.Completed, "State must be Completed. State is {0}.", _state); 778ErrorUtilities.VerifyThrow(_targetResult.ResultCode == TargetResultCode.Skipped, "ResultCode must be Skipped. ResultCode is {0}.", _state); 779ErrorUtilities.VerifyThrow(_targetResult.WorkUnitResult.ActionCode == WorkUnitActionCode.Continue, "ActionCode must be Continue. ActionCode is {0}.", _state);