4 writes to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
296
_shutdownReason
= NodeEngineShutdownReason.Error;
319
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
411
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
509
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
4 references to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
317
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
327
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
353
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
362
return
_shutdownReason
;