12 references to NodeEngineShutdownReason
MSBuildTaskHost (12)
OutOfProcTaskHost.cs (3)
106NodeEngineShutdownReason taskHostShutDownReason = oopTaskHostNode.Run(out Exception? taskHostShutDownException); 115case NodeEngineShutdownReason.BuildComplete: 118case NodeEngineShutdownReason.BuildCompleteReuse:
OutOfProcTaskHostNode.cs (9)
87private NodeEngineShutdownReason _shutdownReason; 350public NodeEngineShutdownReason Run(out Exception? shutdownException, byte parentPacketVersion = 1) 369NodeEngineShutdownReason shutdownReason = HandleShutdown(); 478_shutdownReason = NodeEngineShutdownReason.BuildComplete; 511? NodeEngineShutdownReason.BuildCompleteReuse 512: NodeEngineShutdownReason.BuildComplete; 520private NodeEngineShutdownReason HandleShutdown() 550_nodeEndpoint.SendData(new NodeShutdown(_shutdownReason == NodeEngineShutdownReason.Error ? NodeShutdownReason.Error : NodeShutdownReason.Requested)); 576_shutdownReason = NodeEngineShutdownReason.ConnectionFailed;