12 references to NodeEngineShutdownReason
MSBuildTaskHost (12)
OutOfProcTaskHost.cs (3)
104
NodeEngineShutdownReason
taskHostShutDownReason = oopTaskHostNode.Run(out taskHostShutDownException);
113
case
NodeEngineShutdownReason
.BuildComplete:
116
case
NodeEngineShutdownReason
.BuildCompleteReuse:
OutOfProcTaskHostNode.cs (9)
106
private
NodeEngineShutdownReason
_shutdownReason;
633
public
NodeEngineShutdownReason
Run(out Exception shutdownException)
655
NodeEngineShutdownReason
shutdownReason = HandleShutdown();
759
_shutdownReason =
NodeEngineShutdownReason
.BuildComplete;
801
_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ?
NodeEngineShutdownReason
.BuildCompleteReuse :
NodeEngineShutdownReason
.BuildComplete;
808
private
NodeEngineShutdownReason
HandleShutdown()
840
_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason ==
NodeEngineShutdownReason
.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested));
873
_shutdownReason =
NodeEngineShutdownReason
.ConnectionFailed;