5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcServerNode.cs (5)
298
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
359
_shutdownReason
= shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
381
_shutdownReason
= NodeEngineShutdownReason.Error;
396
_shutdownReason
= NodeEngineShutdownReason.Error;
493
_shutdownReason
= (_cancelRequested || command.ShutdownAfterBuild) ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
2 references to _shutdownReason
Microsoft.Build (2)
BackEnd\Node\OutOfProcServerNode.cs (2)
273
CommunicationsUtilities.Trace($"Shutting down with reason: {
_shutdownReason
}, and exception: {_shutdownException}.");
286
return
_shutdownReason
;