5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcServerNode.cs (5)
273
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
319
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
341
_shutdownReason
= NodeEngineShutdownReason.Error;
356
_shutdownReason
= NodeEngineShutdownReason.Error;
433
_shutdownReason
= _cancelRequested ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
2 references to _shutdownReason
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
248
CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.",
_shutdownReason
, _shutdownException);
261
return
_shutdownReason
;