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)
28await launcher.LaunchAsync( 53await launcher.LaunchAsync("npx", ["tsx"], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None); 68await launcher.LaunchAsync("npx", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None); 89await launcher.LaunchAsync("npx", ["tsx"], new DirectoryInfo("/tmp"), envVars, CancellationToken.None); 103var (exitCode, output) = await launcher.LaunchAsync("cmd", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None); 119await launcher.LaunchAsync("python", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), CancellationToken.None);