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 =
43 references to ArgumentList
aspire (1)
DotNetCliRunner.cs (1)
343startInfo.ArgumentList.Add(a);
Aspire.Hosting (23)
Publishing\DockerContainerRuntime.cs (8)
20startInfo.ArgumentList.Add("build"); 21startInfo.ArgumentList.Add("--file"); 22startInfo.ArgumentList.Add(dockerfilePath); 23startInfo.ArgumentList.Add("--tag"); 24startInfo.ArgumentList.Add(imageName); 25startInfo.ArgumentList.Add("--quiet"); 26startInfo.ArgumentList.Add(contextPath); 28logger.LogInformation("Running Docker CLI with arguments: {ArgumentList}", startInfo.ArgumentList);
Publishing\PodmanContainerRuntime.cs (8)
20startInfo.ArgumentList.Add("build"); 21startInfo.ArgumentList.Add("--file"); 22startInfo.ArgumentList.Add(dockerfilePath); 23startInfo.ArgumentList.Add("--tag"); 24startInfo.ArgumentList.Add(imageName); 25startInfo.ArgumentList.Add("--quiet"); 26startInfo.ArgumentList.Add(contextPath); 28logger.LogInformation("Running Podman CLI with arguments: {Arguments}", startInfo.ArgumentList);
Publishing\ResourceContainerImageBuilder.cs (7)
96startInfo.ArgumentList.Add("publish"); 97startInfo.ArgumentList.Add(projectMetadata.ProjectPath); 98startInfo.ArgumentList.Add("--configuration"); 99startInfo.ArgumentList.Add("Release"); 100startInfo.ArgumentList.Add("/t:PublishContainer"); 101startInfo.ArgumentList.Add($"/p:ContainerRepository={resource.Name}"); 105string.Join(" ", startInfo.ArgumentList.ToArray())
dotnet-getdocument (1)
Exe.cs (1)
31startInfo.ArgumentList.Add(argument);
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
83startInfo.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);