5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
450_shutdownReason = NodeEngineShutdownReason.Error; 584_shutdownReason = NodeEngineShutdownReason.ConnectionFailed; 868_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 876_shutdownReason = NodeEngineShutdownReason.BuildComplete; 890_shutdownReason = NodeEngineShutdownReason.BuildComplete;
8 references to _shutdownReason
Microsoft.Build (8)
BackEnd\Node\OutOfProcNode.cs (8)
459CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.", _shutdownReason, _shutdownException); 474if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse) 484if (_shutdownReason != NodeEngineShutdownReason.BuildCompleteReuse) 491_taskHostNodeManager.ShutdownConnectedNodes(_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse); 534_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception)); 546MSBuildEventSource.Log.OutOfProcNodeShutDownStop(_shutdownReason.ToString()); 548return _shutdownReason; 869if (_shutdownReason == NodeEngineShutdownReason.BuildCompleteReuse)