11 references to BuildComplete
Microsoft.Build (8)
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
434
case NodeEngineShutdownReason.
BuildComplete
:
BackEnd\Node\InProcNode.cs (2)
329
_shutdownReason = NodeEngineShutdownReason.
BuildComplete
;
523
_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
BackEnd\Node\OutOfProcNode.cs (3)
875
_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
883
_shutdownReason = NodeEngineShutdownReason.
BuildComplete
;
897
_shutdownReason = NodeEngineShutdownReason.
BuildComplete
;
BackEnd\Node\OutOfProcServerNode.cs (2)
376
_shutdownReason = shouldReuse ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
510
_shutdownReason = (_cancelRequested || command.ShutdownAfterBuild) ? NodeEngineShutdownReason.
BuildComplete
: NodeEngineShutdownReason.BuildCompleteReuse;
MSBuild (3)
OutOfProcTaskHostNode.cs (2)
1281
_shutdownReason = NodeEngineShutdownReason.
BuildComplete
;
1340
_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.BuildCompleteReuse : NodeEngineShutdownReason.
BuildComplete
;
XMake.cs (1)
3433
RarNodeShutdownReason.Complete => NodeEngineShutdownReason.
BuildComplete
,