9 references to OutOfProcNode
Microsoft.Build (3)
BackEnd\Components\Communications\NodeProviderOutOfProc.cs (1)
100CommandLineArgs: $"/noautoresponse /nologo {NodeModeHelper.ToCommandLineArgument(NodeMode.OutOfProcNode)} /nodeReuse:{ComponentHost.BuildParameters.EnableNodeReuse.ToString().ToLower()} /low:{ComponentHost.BuildParameters.LowPriority.ToString().ToLower()}",
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (2)
242if (expectedNodeMode == NodeMode.OutOfProcNode 644=> CountActiveNodesWithMode(NodeMode.OutOfProcNode);
Microsoft.Build.CommandLine.UnitTests (4)
XMake_Tests.cs (4)
710MSBuildApp.ParseNodeMode("1").ShouldBe(NodeMode.OutOfProcNode); 719MSBuildApp.ParseNodeMode("OutOfProcNode").ShouldBe(NodeMode.OutOfProcNode); 720MSBuildApp.ParseNodeMode("outofprocnode").ShouldBe(NodeMode.OutOfProcNode); 721MSBuildApp.ParseNodeMode("OUTOFPROCNODE").ShouldBe(NodeMode.OutOfProcNode);
MSBuild (2)
XMake.cs (2)
2962NodeMode nodeMode = NodeMode.OutOfProcNode; // Default value 2977case NodeMode.OutOfProcNode: