5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
447_shutdownReason = NodeEngineShutdownReason.Error; 574_shutdownReason = NodeEngineShutdownReason.ConnectionFailed; 854_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 862_shutdownReason = NodeEngineShutdownReason.BuildComplete; 876_shutdownReason = NodeEngineShutdownReason.BuildComplete;
7 references to _shutdownReason
Microsoft.Build (7)
BackEnd\Node\OutOfProcNode.cs (7)
456CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.", _shutdownReason, _shutdownException); 463if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse) 476if (_shutdownReason != NodeEngineShutdownReason.BuildCompleteReuse) 483_taskHostNodeManager.ShutdownConnectedNodes(_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse); 526_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception)); 538return _shutdownReason; 855if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse)