5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
433_shutdownReason = NodeEngineShutdownReason.Error; 564_shutdownReason = NodeEngineShutdownReason.ConnectionFailed; 843_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 850_shutdownReason = NodeEngineShutdownReason.BuildComplete; 864_shutdownReason = NodeEngineShutdownReason.BuildComplete;
7 references to _shutdownReason
Microsoft.Build (7)
BackEnd\Node\OutOfProcNode.cs (7)
442CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.", _shutdownReason, _shutdownException); 449if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse) 462if (_shutdownReason != NodeEngineShutdownReason.BuildCompleteReuse) 469_taskHostNodeManager.ShutdownConnectedNodes(_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse); 512_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception)); 524return _shutdownReason; 844if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse)