Command Line GUI
Parser and GUI libraries for command line programs; Robocopy included
Moved to https://github.com/zijianhuang/commandlinegui in June 2018. Command Line GUI includes a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing .NET command line programs with complex arguments.
You define a data model class decorated with some attributes for represeting arguments. The core library will parse the commaline arguments and populate the Plain Old CLR Object which is the router of the functionality of your command line program. And the Core...