26 writes to Args
Aspire.Cli.Tests (18)
Projects\GuestRuntimeTests.cs (18)
30
Args
= ["{appHostFile}"]
70
Args
= ["{appHostFile}"]
88
execute: new CommandSpec { Command = "run-cmd",
Args
= ["{appHostFile}"] },
89
watchExecute: new CommandSpec { Command = "watch-cmd",
Args
= ["--watch", "{appHostFile}"] }
105
var spec = CreateTestSpec(execute: new CommandSpec { Command = "run-cmd",
Args
= ["{appHostFile}"] });
120
execute: new CommandSpec { Command = "run-cmd",
Args
= ["{appHostFile}"] },
121
publishExecute: new CommandSpec { Command = "publish-cmd",
Args
= ["{appHostFile}", "{args}"] }
137
var spec = CreateTestSpec(execute: new CommandSpec { Command = "run-cmd",
Args
= ["{appHostFile}"] });
154
Args
= ["{appHostFile}"],
175
Args
= ["{appHostFile}"],
195
Args
= ["tsx", "{appHostFile}"]
214
Args
= ["--dir", "{appHostDir}"]
232
Args
= ["{appHostFile}"]
252
Args
= ["{args}"]
273
Execute = new CommandSpec { Command = "test-cmd",
Args
= ["{appHostFile}"] },
311
Execute = new CommandSpec { Command = "npx",
Args
= ["tsx", "{appHostFile}"] },
312
InstallDependencies = new CommandSpec { Command = "npm",
Args
= ["install"] }
339
Execute = new CommandSpec { Command = "npx",
Args
= ["tsx", "{appHostFile}"] }
Aspire.Hosting.CodeGeneration.Go (1)
GoLanguageSupport.cs (1)
140
Args
= ["run", "."]
Aspire.Hosting.CodeGeneration.Java (1)
JavaLanguageSupport.cs (1)
118
Args
= OperatingSystem.IsWindows()
Aspire.Hosting.CodeGeneration.Python (2)
PythonLanguageSupport.cs (2)
148
Args
= ["uv-install.py"]
153
Args
= ["run", "python", "{appHostFile}"]
Aspire.Hosting.CodeGeneration.Rust (1)
RustLanguageSupport.cs (1)
137
Args
= ["run"]
Aspire.Hosting.CodeGeneration.TypeScript (3)
TypeScriptLanguageSupport.cs (3)
190
Args
= ["install"]
195
Args
= ["tsx", "{appHostFile}"]
200
Args
= [
3 references to Args
aspire (3)
Projects\GuestAppHostProject.cs (1)
1287
string.Join(" ", runtimeSpec.Execute.
Args
));
Projects\GuestRuntime.cs (2)
69
var args = ReplacePlaceholders(_spec.InstallDependencies.
Args
, null, directory, null);
140
var args = ReplacePlaceholders(commandSpec.
Args
, appHostFile, directory, additionalArgs);