5 writes to Arguments
dotnet-watch (2)
Watch\DotNetWatcher.cs (1)
57
Arguments
= buildEvaluator.GetProcessArguments(iteration),
Watch\MsBuildFileSetFactory.cs (1)
57
Arguments
= arguments,
Microsoft.DotNet.HotReload.Watch (3)
Browser\BrowserLauncher.cs (1)
90
Arguments
= arg != null ? [arg] : [],
HotReload\HotReloadDotNetWatcher.cs (1)
880
Arguments
= ["build", projectPath, "-consoleLoggerParameters:NoSummary;Verbosity=minimal", .. buildArguments]
Process\ProjectLauncher.cs (1)
102
processSpec.
Arguments
= GetProcessArguments(projectOptions, environmentBuilder);
4 references to Arguments
Microsoft.DotNet.HotReload.Watch (4)
Process\ProcessRunner.cs (3)
168
else if (processSpec.
Arguments
is not null)
170
for (var i = 0; i < processSpec.
Arguments
.Count; i++)
172
process.StartInfo.ArgumentList.Add(processSpec.
Arguments
[i]);
Process\ProcessSpec.cs (1)
28
=> EscapedArguments ?? CommandLineUtilities.JoinArguments(
Arguments
?? []);