11 references to BuildComplete
Microsoft.Build (8)
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
448
case 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)
344
_shutdownReason = shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
459
_shutdownReason = _cancelRequested ? NodeEngineShutdownReason.
BuildComplete
: NodeEngineShutdownReason.BuildCompleteReuse;
MSBuild (3)
OutOfProcTaskHostNode.cs (2)
1216
_shutdownReason = NodeEngineShutdownReason.
BuildComplete
;
1271
_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
XMake.cs (1)
3013
RarNodeShutdownReason.Complete => NodeEngineShutdownReason.
BuildComplete
,