4 references to ToCommandLineArgument
Microsoft.Build (4)
BackEnd\Client\MSBuildClient.cs (1)
458
NodeModeHelper.
ToCommandLineArgument
(NodeMode.OutOfProcServerNode)
BackEnd\Components\Communications\NodeProviderOutOfProc.cs (1)
100
CommandLineArgs: $"/noautoresponse /nologo {NodeModeHelper.
ToCommandLineArgument
(NodeMode.OutOfProcNode)} /nodeReuse:{ComponentHost.BuildParameters.EnableNodeReuse.ToString().ToLower()} /low:{ComponentHost.BuildParameters.LowPriority.ToString().ToLower()}",
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
787
private string BuildCommandLineArgs(bool nodeReuseEnabled) => $"/nologo {NodeModeHelper.
ToCommandLineArgument
(NodeMode.OutOfProcTaskHostNode)} /nodereuse:{nodeReuseEnabled} /low:{ComponentHost.BuildParameters.LowPriority} /parentpacketversion:{NodePacketTypeExtensions.PacketVersion} ";
BackEnd\Components\Communications\RarNodeLauncher.cs (1)
76
string commandLineArgs = string.Join(" ", ["/nologo", NodeModeHelper.
ToCommandLineArgument
(NodeMode.OutOfProcRarNode)]);