5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcServerNode.cs (5)
290
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
351
_shutdownReason
= shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
373
_shutdownReason
= NodeEngineShutdownReason.Error;
388
_shutdownReason
= NodeEngineShutdownReason.Error;
485
_shutdownReason
= (_cancelRequested || command.ShutdownAfterBuild) ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
2 references to _shutdownReason
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
265
CommunicationsUtilities.Trace($"Shutting down with reason: {
_shutdownReason
}, and exception: {_shutdownException}.");
278
return
_shutdownReason
;