9 writes to Execute
Aspire.Cli.Tests (4)
Projects\GuestRuntimeTests.cs (4)
27Execute = execute ?? new CommandSpec 273Execute = new CommandSpec { Command = "test-cmd", Args = ["{appHostFile}"] }, 311Execute = new CommandSpec { Command = "npx", Args = ["tsx", "{appHostFile}"] }, 339Execute = new CommandSpec { Command = "npx", Args = ["tsx", "{appHostFile}"] }
Aspire.Hosting.CodeGeneration.Go (1)
GoLanguageSupport.cs (1)
137Execute = new CommandSpec
Aspire.Hosting.CodeGeneration.Java (1)
JavaLanguageSupport.cs (1)
113Execute = new CommandSpec
Aspire.Hosting.CodeGeneration.Python (1)
PythonLanguageSupport.cs (1)
150Execute = new CommandSpec
Aspire.Hosting.CodeGeneration.Rust (1)
RustLanguageSupport.cs (1)
134Execute = new CommandSpec
Aspire.Hosting.CodeGeneration.TypeScript (1)
TypeScriptLanguageSupport.cs (1)
192Execute = new CommandSpec
4 references to Execute
aspire (4)
Projects\GuestAppHostProject.cs (2)
1286runtimeSpec.Execute.Command, 1287string.Join(" ", runtimeSpec.Execute.Args));
Projects\GuestRuntime.cs (2)
103: _spec.Execute; 126var commandSpec = _spec.PublishExecute ?? _spec.Execute;