1 write to Arguments
Aspire.Hosting.Azure (1)
Provisioning\Internal\BicepCompiler.cs (1)
51Arguments = arguments,
6 references to Arguments
Aspire.Hosting.Azure (4)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (4)
24if (processSpec.Arguments is not null && processSpec.ArgumentList is not null) 26throw new ArgumentException($"Specify either {nameof(ProcessSpec.Arguments)} or {nameof(ProcessSpec.ArgumentList)}, not both.", nameof(processSpec)); 46Arguments = processSpec.Arguments ?? string.Empty, 186return processSpec.Arguments ?? string.Join(" ", processSpec.ArgumentList?.Select(FormatProcessArgumentForDisplay) ?? []);
Aspire.Hosting.Azure.Tests (2)
ProvisioningTestHelpers.cs (2)
1106var executedCommand = new ExecutedCommand(processSpec.ExecutablePath, processSpec.Arguments, processSpec.WorkingDirectory); 1110var commandKey = $"{processSpec.ExecutablePath} {processSpec.Arguments ?? ""}".Trim();