MGR.CommandLineParser
0.4.2
dotnet add package MGR.CommandLineParser --version 0.4.2
NuGet\Install-Package MGR.CommandLineParser -Version 0.4.2
<PackageReference Include="MGR.CommandLineParser" Version="0.4.2" />
paket add MGR.CommandLineParser --version 0.4.2
#r "nuget: MGR.CommandLineParser, 0.4.2"
// Install MGR.CommandLineParser as a Cake Addin #addin nuget:?package=MGR.CommandLineParser&version=0.4.2 // Install MGR.CommandLineParser as a Cake Tool #tool nuget:?package=MGR.CommandLineParser&version=0.4.2
MGR.CommandLineParser is a multi-command line parser. It uses System.ComponentModel.DataAnnotations to declare the commands.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
0.0.1.1 : Add project URL and framework dependencies
0.1.0 : Add converter for URI and Enum. Add a ICommandProvider.GetHelpCommand and HelpCommand.Current
0.2.0 : The ICommand.Execute returns an int (for exit code) and the parser returns a CommandResult
0.3.0 : The CommandResult contains the list of validation errors
0.4.0 : Rename IUsageCommand to ISampleCommand, change the ReturnCode of the CommandResult to the enum CommandResultCode, add support of System.ComponentModel.DefaultValueAttribute for non-collection options.
0.4.1 : Fix a bug if an multi-valued option is null and have no setter. Improve performance for the default value by not call ToString then convert the default value if its time is the type than the option.
0.4.2 : Fix a bug when a readonly property is defined with the IgnoreOptionProperty attribute.