5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcServerNode.cs (5)
314
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
376
_shutdownReason
= shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
398
_shutdownReason
= NodeEngineShutdownReason.Error;
413
_shutdownReason
= NodeEngineShutdownReason.Error;
510
_shutdownReason
= (_cancelRequested || command.ShutdownAfterBuild) ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
2 references to _shutdownReason
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
289
CommunicationsUtilities.Trace($"Shutting down with reason: {
_shutdownReason
}, and exception: {_shutdownException}.");
302
return
_shutdownReason
;