11 references to BuildComplete
Microsoft.Build (8)
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
436case NodeEngineShutdownReason.BuildComplete:
BackEnd\Node\InProcNode.cs (2)
334_shutdownReason = NodeEngineShutdownReason.BuildComplete; 528_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
BackEnd\Node\OutOfProcNode.cs (3)
868_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 876_shutdownReason = NodeEngineShutdownReason.BuildComplete; 890_shutdownReason = NodeEngineShutdownReason.BuildComplete;
BackEnd\Node\OutOfProcServerNode.cs (2)
327_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 441_shutdownReason = _cancelRequested ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
MSBuild (3)
OutOfProcTaskHostNode.cs (2)
774_shutdownReason = NodeEngineShutdownReason.BuildComplete; 823_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
XMake.cs (1)
3500RarNodeShutdownReason.Complete => NodeEngineShutdownReason.BuildComplete,