11 references to BuildComplete
Microsoft.Build (8)
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
448case NodeEngineShutdownReason.BuildComplete:
BackEnd\Node\InProcNode.cs (2)
335_shutdownReason = NodeEngineShutdownReason.BuildComplete; 529_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
BackEnd\Node\OutOfProcNode.cs (3)
869_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 877_shutdownReason = NodeEngineShutdownReason.BuildComplete; 891_shutdownReason = NodeEngineShutdownReason.BuildComplete;
BackEnd\Node\OutOfProcServerNode.cs (2)
337_shutdownReason = shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete; 451_shutdownReason = _cancelRequested ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.BuildCompleteReuse;
MSBuild (3)
OutOfProcTaskHostNode.cs (2)
903_shutdownReason = NodeEngineShutdownReason.BuildComplete; 952_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.BuildComplete;
XMake.cs (1)
3000RarNodeShutdownReason.Complete => NodeEngineShutdownReason.BuildComplete,