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)
7 references to LaunchAsync
Aspire.Cli.Tests (7)
Projects\ExtensionGuestLauncherTests.cs (7)
34await launcher.LaunchAsync( 67await launcher.LaunchAsync( 100await launcher.LaunchAsync(Path.Combine(Path.GetTempPath(), "npx"), ["tsx"], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 115await launcher.LaunchAsync(Path.Combine(Path.GetTempPath(), "npx"), [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 136await launcher.LaunchAsync(Path.Combine(Path.GetTempPath(), "npx"), ["tsx"], new DirectoryInfo("/tmp"), envVars, afterLaunchAsync: null, options: null, CancellationToken.None); 150var (exitCode, output) = await launcher.LaunchAsync(Path.Combine(Path.GetTempPath(), "cmd"), [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None); 167await launcher.LaunchAsync(command, [], new DirectoryInfo("/tmp"), new Dictionary<string, string>(), afterLaunchAsync: null, options: null, CancellationToken.None);