DotNetRunner.RunDotNetTool method (1 of 3)

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.

See Also


DotNetRunner.RunDotNetTool method (2 of 3)

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.

See Also


DotNetRunner.RunDotNetTool method (3 of 3)

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.

See Also