Implemented interface member:
method
LaunchAsync
Aspire.Cli.Projects.IGuestProcessLauncher.LaunchAsync(System.String, System.String[], System.IO.DirectoryInfo, System.Collections.Generic.IDictionary<System.String, System.String>, System.Threading.CancellationToken)
6 references to LaunchAsync
Aspire.Cli.Tests (6)
Projects\ExtensionGuestLauncherTests.cs (6)
28
await launcher.
LaunchAsync
(
53
await launcher.
LaunchAsync
("npx", ["tsx"], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None);
68
await launcher.
LaunchAsync
("npx", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None);
89
await launcher.
LaunchAsync
("npx", ["tsx"], new DirectoryInfo("/tmp"), envVars, CancellationToken.None);
103
var (exitCode, output) = await launcher.
LaunchAsync
("cmd", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None);
119
await launcher.
LaunchAsync
("python", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None);