3 writes to _shutdownReason
MSBuild (3)
OutOfProcTaskHostNode.cs (3)
759
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
801
_shutdownReason
= buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
873
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
3 references to _shutdownReason
MSBuild (3)
OutOfProcTaskHostNode.cs (3)
816
debugWriter?.WriteLine("Node shutting down with reason {0}.",
_shutdownReason
);
840
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested));
861
return
_shutdownReason
;