5 writes to _shutdownReason
Microsoft.Build (5)
BackEnd\Node\OutOfProcNode.cs (5)
450
_shutdownReason
= NodeEngineShutdownReason.Error;
584
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
868
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
876
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
890
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
8 references to _shutdownReason
Microsoft.Build (8)
BackEnd\Node\OutOfProcNode.cs (8)
459
CommunicationsUtilities.Trace("Shutting down with reason: {0}, and exception: {1}.",
_shutdownReason
, _shutdownException);
474
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
484
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
491
_taskHostNodeManager.ShutdownConnectedNodes(
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse);
534
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
546
MSBuildEventSource.Log.OutOfProcNodeShutDownStop(
_shutdownReason
.ToString());
548
return
_shutdownReason
;
869
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)