5 references to ArgumentList
Aspire.Hosting.Azure.Kubernetes (5)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (5)
24
if (processSpec.Arguments is not null && processSpec.
ArgumentList
is not null)
26
throw new ArgumentException($"Specify either {nameof(ProcessSpec.Arguments)} or {nameof(ProcessSpec.
ArgumentList
)}, not both.", nameof(processSpec));
57
if (processSpec.
ArgumentList
is not null)
59
foreach (var argument in processSpec.
ArgumentList
)
186
return processSpec.Arguments ?? string.Join(" ", processSpec.
ArgumentList
?.Select(FormatProcessArgumentForDisplay) ?? []);