Skip to content
Mogens Heller Grabe edited this page Feb 28, 2016 · 2 revisions

This is GoCommando, a simple .NET console application library.

It is meant to ease the burden when you want to build console applications that accept commands, where the acceptable set of parameters vary depending on the chosen commands.

A good and popular example of this style of console application is the NuGet command line, which is generally invoked with this pattern:

nuget <command>

where <command> can be lots of things, and then - depending on which command you have chosen - you will be able to supply additional arguments to that command, like e.g.

nuget pack *.nuspec -OutputDirectory C:\Temp 
Clone this wiki locally