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