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