8 writes to Arguments
Aspire.Hosting (8)
Dcp\DcpDependencyCheck.cs (1)
65Arguments = arguments,
Dcp\DcpHost.cs (1)
186Arguments = arguments,
Publishing\DockerContainerRuntime.cs (2)
16Arguments = $"build --file {dockerfilePath} --tag {imageName} {contextPath}", 67Arguments = "info",
Publishing\PodmanContainerRuntime.cs (2)
16Arguments = $"build --file {dockerfilePath} --tag {imageName} {contextPath}", 67Arguments = "info",
Publishing\ResourceContainerImageBuilder.cs (1)
152Arguments = $"publish {projectMetadata.ProjectPath} --configuration Release /t:PublishContainer /p:ContainerRepository={resource.Name}",
VersionChecking\VersionFetcher.cs (1)
26Arguments = "package search Aspire.Hosting.AppHost --format json",
11 references to Arguments
Aspire.Hosting (11)
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 (2)
29logger.LogInformation("Running Docker CLI with arguments: {ArgumentList}", spec.Arguments); 80logger.LogInformation("Running Docker CLI with arguments: {ArgumentList}", spec.Arguments);
Publishing\PodmanContainerRuntime.cs (2)
29logger.LogInformation("Running Podman CLI with arguments: {ArgumentList}", spec.Arguments); 80logger.LogInformation("Running Podman CLI with arguments: {ArgumentList}", spec.Arguments);
Publishing\ResourceContainerImageBuilder.cs (1)
165string.Join(" ", spec.Arguments)
VersionChecking\VersionFetcher.cs (1)
41_logger.LogDebug("Running dotnet CLI to check for latest version with arguments: {ArgumentList}", spec.Arguments);