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