-
Notifications
You must be signed in to change notification settings - Fork 382
Home
Give your user's a great experience with your .NET command line applications - while letting you focus on the great application you're writing.
or perhaps more simply
Leave the plumbing to us
To do this System.CommandLine contains three pillars of functionality:
- Parse command line/terminal input
- Render output to multiple terminals (VT100, Windows Console and downlevel consoles)
- Offer common operations via a pipeline, including suggestions, help, exception handling, and parse debugging
System.CommandLine is a layered system with an API layer that supports multiple application models to simplify working with the parser. You can also work directly with the underlying API.
The simplest way to create your parser is with the DragonFruit app model. This works well if you have a single layer of commands (no subcommands). This approach adds a target to the build process.
If you have a complex API, or you want to work with the API directly to better understand it, you can access the System.CommandLine API directly.
We plan to add application models to fit niches between DragonFruit and direct API access in the future.