5 writes to Arguments
Aspire.Hosting (5)
Dcp\DcpDependencyCheck.cs (1)
65Arguments = arguments,
Dcp\DcpHost.cs (1)
186Arguments = arguments,
Publishing\DockerContainerRuntime.cs (1)
15Arguments = $"build --file {dockerfilePath} --tag {imageName} {contextPath}",
Publishing\PodmanContainerRuntime.cs (1)
15Arguments = $"build --file {dockerfilePath} --tag {imageName} {contextPath}",
Publishing\ResourceContainerImageBuilder.cs (1)
91Arguments = $"publish {projectMetadata.ProjectPath} --configuration Release /t:PublishContainer /p:ContainerRepository={resource.Name}",
8 references to Arguments
Aspire.Hosting (8)
Dcp\DcpHost.cs (1)
192_logger.LogInformation("Starting DCP with arguments: {Arguments}", dcpProcessSpec.Arguments);
Dcp\Process\ProcessUtil.cs (4)
28Arguments = processSpec.Arguments, 89AspireEventSource.Instance.ProcessLaunchStart(processSpec.ExecutablePath, processSpec.Arguments ?? ""); 104$"Command {processSpec.ExecutablePath} {processSpec.Arguments} returned non-zero exit code {process.ExitCode}")); 116AspireEventSource.Instance.ProcessLaunchStop(processSpec.ExecutablePath, processSpec.Arguments ?? "");
Publishing\DockerContainerRuntime.cs (1)
28logger.LogInformation("Running Docker CLI with arguments: {ArgumentList}", spec.Arguments);
Publishing\PodmanContainerRuntime.cs (1)
28logger.LogInformation("Running Podman CLI with arguments: {ArgumentList}", spec.Arguments);
Publishing\ResourceContainerImageBuilder.cs (1)
104string.Join(" ", spec.Arguments)