4 writes to _shutdownReason
MSBuild (4)
OutOfProcTaskHostNode.cs (4)
1216
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
1266
_shutdownReason
= NodeEngineShutdownReason.BuildCompleteReuse;
1271
_shutdownReason
= buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
1343
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
3 references to _shutdownReason
MSBuild (3)
OutOfProcTaskHostNode.cs (3)
1295
debugWriter?.WriteLine("Node shutting down with reason {0}.",
_shutdownReason
);
1317
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested));
1331
return
_shutdownReason
;