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)
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)
3000
RarNodeShutdownReason.Complete => NodeEngineShutdownReason.
BuildComplete
,