Runs the specified command-line app.
public static int RunApp(string path, AppRunnerSettings settings)
| parameter | description |
|---|---|
| path | The path of the command-line app. |
| settings | The settings to use when running the app. |
Runs the specified command-line app.
public static void RunApp(string path, IEnumerable<string?> args)
| parameter | description |
|---|---|
| path | The path of the command-line app. |
| args | The arguments to send to the command-line app. |
Runs the specified command-line app.
public static void RunApp(string path, params string?[] args)
| parameter | description |
|---|---|
| path | The path of the command-line app. |
| args | The arguments to send to the command-line app. |