15 references to BuildCompleteReuse
Microsoft.Build (12)
BackEnd\Components\Communications\NodeProviderInProc.cs (1)
437
case NodeEngineShutdownReason.
BuildCompleteReuse
:
BackEnd\Node\InProcNode.cs (3)
332
if (_shutdownReason == NodeEngineShutdownReason.
BuildCompleteReuse
)
342
if (_shutdownReason != NodeEngineShutdownReason.
BuildCompleteReuse
)
528
_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.
BuildCompleteReuse
: NodeEngineShutdownReason.BuildComplete;
BackEnd\Node\OutOfProcNode.cs (5)
474
if (_shutdownReason == NodeEngineShutdownReason.
BuildCompleteReuse
)
484
if (_shutdownReason != NodeEngineShutdownReason.
BuildCompleteReuse
)
491
_taskHostNodeManager.ShutdownConnectedNodes(_shutdownReason == NodeEngineShutdownReason.
BuildCompleteReuse
);
868
_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.
BuildCompleteReuse
: NodeEngineShutdownReason.BuildComplete;
869
if (_shutdownReason == NodeEngineShutdownReason.
BuildCompleteReuse
)
BackEnd\Node\OutOfProcServerNode.cs (3)
119
if (shutdownReason != NodeEngineShutdownReason.
BuildCompleteReuse
)
327
_shutdownReason = buildComplete.PrepareForReuse ? NodeEngineShutdownReason.
BuildCompleteReuse
: NodeEngineShutdownReason.BuildComplete;
441
_shutdownReason = _cancelRequested ? NodeEngineShutdownReason.BuildComplete : NodeEngineShutdownReason.
BuildCompleteReuse
;
MSBuild (3)
OutOfProcTaskHostNode.cs (2)
818
_shutdownReason = NodeEngineShutdownReason.
BuildCompleteReuse
;
823
_shutdownReason = buildComplete.PrepareForReuse && Traits.Instance.EscapeHatches.ReuseTaskHostNodes ? NodeEngineShutdownReason.
BuildCompleteReuse
: NodeEngineShutdownReason.BuildComplete;
XMake.cs (1)
3548
if (shutdownReason != NodeEngineShutdownReason.
BuildCompleteReuse
)