Its entirely possible I am wrong, but it doesn't seem there is a path to support commands like dotnet add. Are commands like the following possible?
dotnet add --help
Description:
.NET Add Command
Usage:
dotnet add [<PROJECT>] [command] [options]
Arguments:
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one. [default: /Users/username/my-cwd/]
Options:
-?, -h, --help Show command line help.
Commands:
package <PACKAGE_NAME> Add a NuGet package reference to the project.
reference <PROJECT_PATH> Add a project-to-project reference to the project.
Note how we have a "command" then an Argument then more commands.
Its entirely possible I am wrong, but it doesn't seem there is a path to support commands like
dotnet add
. Are commands like the following possible?Note how we have a "command" then an Argument then more commands.