16 references to ArgumentId
VBCSCompiler (16)
src\Compilers\Core\CommandLine\BuildProtocol.cs (10)
88
requestArgs.Add(new Argument(
ArgumentId
.CurrentDirectory, 0, workingDirectory));
89
requestArgs.Add(new Argument(
ArgumentId
.TempDirectory, 0, tempDirectory));
93
requestArgs.Add(new Argument(
ArgumentId
.KeepAlive, 0, keepAlive));
98
requestArgs.Add(new Argument(
ArgumentId
.LibEnvVariable, 0, libDirectory));
104
requestArgs.Add(new Argument(
ArgumentId
.CommandLineArgument, i, arg));
112
var requestArgs = new[] { new Argument(
ArgumentId
.Shutdown, argumentIndex: 0, value: "") };
206
public readonly
ArgumentId
ArgumentId;
210
public Argument(
ArgumentId
argumentId,
221
var
argId = (
ArgumentId
)reader.ReadInt32();
src\Compilers\Server\VBCSCompiler\BuildProtocolUtil.cs (4)
47
if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.CurrentDirectory)
51
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.TempDirectory)
55
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.LibEnvVariable)
59
else if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.CommandLineArgument)
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (2)
65
if (request.Arguments.Count == 1 && request.Arguments[0].ArgumentId == BuildProtocolConstants.
ArgumentId
.Shutdown)
187
if (arg.ArgumentId == BuildProtocolConstants.
ArgumentId
.KeepAlive)