5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcServerNode.cs (5)
283
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
344
_shutdownReason
= shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
366
_shutdownReason
= NodeEngineShutdownReason.Error;
381
_shutdownReason
= NodeEngineShutdownReason.Error;
459
_shutdownReason
= _cancelRequested ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
2 references to _shutdownReason
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
258
CommunicationsUtilities.Trace($"Shutting down with reason: {
_shutdownReason
}, and exception: {_shutdownException}.");
271
return
_shutdownReason
;