2 writes to ArgumentList
dotnet-user-jwts (1)
src\Tools\Shared\SecretsHelpers\ProjectIdResolver.cs (1)
60ArgumentList =
dotnet-user-secrets (1)
src\Tools\Shared\SecretsHelpers\ProjectIdResolver.cs (1)
60ArgumentList =
52 references to ArgumentList
aspire (18)
Agents\Playwright\PlaywrightCliRunner.cs (2)
100startInfo.ArgumentList.Add("install"); 101startInfo.ArgumentList.Add("--skills");
DotNet\DotNetCliExecution.cs (1)
31public IReadOnlyList<string> Arguments => _process.StartInfo.ArgumentList.ToArray();
DotNet\DotNetCliExecutionFactory.cs (1)
65startInfo.ArgumentList.Add(a);
Layout\LayoutProcessRunner.cs (1)
110process.StartInfo.ArgumentList.Add(arg);
Npm\NpmRunner.cs (2)
207startInfo.ArgumentList.Add(arg); 251startInfo.ArgumentList.Add(arg);
Processes\DetachedProcessLauncher.Unix.cs (1)
33startInfo.ArgumentList.Add(arg);
Projects\DotNetBasedAppHostServerProject.cs (4)
482startInfo.ArgumentList.Add("exec"); 483startInfo.ArgumentList.Add(assemblyPath); 487startInfo.ArgumentList.Add("--"); 490startInfo.ArgumentList.Add(arg);
Projects\GuestRuntime.cs (2)
79startInfo.ArgumentList.Add(arg); 178startInfo.ArgumentList.Add(arg);
Projects\PrebuiltAppHostServer.cs (4)
421startInfo.ArgumentList.Add("server"); 422startInfo.ArgumentList.Add("--contentRoot"); 423startInfo.ArgumentList.Add(_workingDirectory); 430startInfo.ArgumentList.Add(arg);
Aspire.Hosting.DevTunnels (2)
DevTunnelCli.cs (2)
246logger?.LogTrace("Invoking devtunnel CLI{ShellExecuteInfo}: {FileName} {Arguments}", useShellExecute ? " (UseShellExecute=true)" : "", process.StartInfo.FileName, EscapeArgList(process.StartInfo.ArgumentList)); 366psi.ArgumentList.Add(a);
dotnet-getdocument (1)
Exe.cs (1)
31startInfo.ArgumentList.Add(argument);
dotnet-user-jwts (1)
src\Tools\Shared\SecretsHelpers\ProjectIdResolver.cs (1)
75_reporter.Verbose($"Invoking '{psi.FileName} {string.Join(' ', psi.ArgumentList)}'");
dotnet-user-secrets (1)
src\Tools\Shared\SecretsHelpers\ProjectIdResolver.cs (1)
75_reporter.Verbose($"Invoking '{psi.FileName} {string.Join(' ', psi.ArgumentList)}'");
Infrastructure.Tests (7)
ExtractTestPartitions\ExtractTestPartitionsTests.cs (7)
297psi.ArgumentList.Add("run"); 298psi.ArgumentList.Add("--no-build"); 299psi.ArgumentList.Add("--project"); 300psi.ArgumentList.Add(_fixture.ToolProjectPath); 304psi.ArgumentList.Add("--"); 307psi.ArgumentList.Add(arg); 311_output.WriteLine($"Running: {psi.FileName} {string.Join(" ", psi.ArgumentList)}");
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
84startInfo.ArgumentList.AddRange(arguments);
Microsoft.CodeAnalysis.LanguageServer.UnitTests (10)
Utilities\AbstractLanguageServerClientTests.TestLspClient.cs (10)
104processStartInfo.ArgumentList.Add(TestPaths.GetLanguageServerPath()); 106processStartInfo.ArgumentList.Add("--pipe"); 107processStartInfo.ArgumentList.Add(pipeName); 109processStartInfo.ArgumentList.Add("--logLevel"); 110processStartInfo.ArgumentList.Add("Trace"); 112processStartInfo.ArgumentList.Add("--extensionLogDirectory"); 113processStartInfo.ArgumentList.Add(extensionLogsPath); 117processStartInfo.ArgumentList.Add("--devKitDependencyPath"); 118processStartInfo.ArgumentList.Add(TestPaths.GetDevKitExtensionPath()); 123processStartInfo.ArgumentList.Add("--debug");
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
345processStartInfo.ArgumentList.Add(argument);
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (4)
BuildHostProcessManagerTests.cs (4)
19var rollForwardIndex = processStartInfo.ArgumentList.IndexOf("--roll-forward"); 20var latestMajorIndex = processStartInfo.ArgumentList.IndexOf("LatestMajor"); 63var args = processStartInfo.ArgumentList; 84var args = processStartInfo.ArgumentList;
Microsoft.DotNet.Arcade.Sdk.Tests (3)
Utilities\TestApp.cs (3)
66psi.ArgumentList.Add("/C"); 69psi.ArgumentList.Add(fileName); 70psi.ArgumentList.AddRange(scriptArgs);
System.Diagnostics.Process (3)
System\Diagnostics\Process.cs (2)
1269int argumentCount = startInfo.ArgumentList.Count; 1272if (startInfo.ArgumentList[i] is null)
System\Diagnostics\Process.Unix.cs (1)
602argvList.AddRange(psi.ArgumentList);