5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
448_shutdownReason = NodeEngineShutdownReason.Error; 579_shutdownReason = NodeEngineShutdownReason.ConnectionFailed; 859_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 867_shutdownReason = NodeEngineShutdownReason.BuildComplete; 881_shutdownReason = NodeEngineShutdownReason.BuildComplete;
7 references to _shutdownReason
Microsoft.Build (7)
BackEnd\Node\OutOfProcNode.cs (7)
457CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.", _shutdownReason, _shutdownException); 464if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse) 477if (_shutdownReason != NodeEngineShutdownReason.BuildCompleteReuse) 484_taskHostNodeManager.ShutdownConnectedNodes(_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse); 527_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception)); 539return _shutdownReason; 860if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse)