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.Func<System.Threading.Tasks.Task>, Aspire.Cli.Projects.GuestLaunchOptions, System.Threading.CancellationToken)
6 references to LaunchAsync
Aspire.Cli.Tests (6)
Projects\ExtensionGuestLauncherTests.cs (6)
29await launcher.LaunchAsync( 56await launcher.LaunchAsync("npx", ["tsx"], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 71await launcher.LaunchAsync("npx", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 92await launcher.LaunchAsync("npx", ["tsx"], new DirectoryInfo("/tmp"), envVars, afterLaunchAsync: null, options: null, CancellationToken.None); 106var (exitCode, output) = await launcher.LaunchAsync("cmd", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 122await launcher.LaunchAsync("python", [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None);