4 writes to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
312
_shutdownReason
= NodeEngineShutdownReason.Error;
335
_shutdownReason
= NodeEngineShutdownReason.BuildComplete;
427
_shutdownReason
= NodeEngineShutdownReason.ConnectionFailed;
529
_shutdownReason
= buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
4 references to _shutdownReason
Microsoft.Build (4)
BackEnd\Node\InProcNode.cs (4)
333
if (
_shutdownReason
== NodeEngineShutdownReason.BuildCompleteReuse)
343
if (
_shutdownReason
!= NodeEngineShutdownReason.BuildCompleteReuse)
369
_nodeEndpoint.SendData(new NodeShutdown(
_shutdownReason
== NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested, exception));
378
return
_shutdownReason
;