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 =
20 references to ArgumentList
aspire (1)
DotNetCliRunner.cs (1)
375startInfo.ArgumentList.Add(a);
dotnet-getdocument (1)
Exe.cs (1)
31startInfo.ArgumentList.Add(argument);
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
84startInfo.ArgumentList.AddRange(arguments);
Microsoft.CodeAnalysis.LanguageServer.UnitTests (10)
Utilities\AbstractLanguageServerClientTests.TestLspClient.cs (10)
93processStartInfo.ArgumentList.Add(TestPaths.GetLanguageServerPath()); 95processStartInfo.ArgumentList.Add("--pipe"); 96processStartInfo.ArgumentList.Add(pipeName); 98processStartInfo.ArgumentList.Add("--logLevel"); 99processStartInfo.ArgumentList.Add("Trace"); 101processStartInfo.ArgumentList.Add("--extensionLogDirectory"); 102processStartInfo.ArgumentList.Add(extensionLogsPath); 106processStartInfo.ArgumentList.Add("--devKitDependencyPath"); 107processStartInfo.ArgumentList.Add(TestPaths.GetDevKitExtensionPath()); 112processStartInfo.ArgumentList.Add("--debug");
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\BuildHostProcessManager.cs (1)
272processStartInfo.ArgumentList.Add(argument);
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);