MGR.CommandLineParser 0.4.2

dotnet add package MGR.CommandLineParser --version 0.4.2
                    
NuGet\Install-Package MGR.CommandLineParser -Version 0.4.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MGR.CommandLineParser" Version="0.4.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MGR.CommandLineParser" Version="0.4.2" />
                    
Directory.Packages.props
<PackageReference Include="MGR.CommandLineParser" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MGR.CommandLineParser --version 0.4.2
                    
#r "nuget: MGR.CommandLineParser, 0.4.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MGR.CommandLineParser&version=0.4.2
                    
Install MGR.CommandLineParser as a Cake Addin
#tool nuget:?package=MGR.CommandLineParser&version=0.4.2
                    
Install MGR.CommandLineParser as a Cake Tool

MGR.CommandLineParser is a multi-command line parser. It uses System.ComponentModel.DataAnnotations to declare the commands.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.4.2 204 12/29/2014
0.4.1 136 4/22/2012
0.4.0 49 4/20/2012
0.3.1 52 4/14/2012
0.3.0 50 4/13/2012
0.2.0 49 4/10/2012
0.1.0 50 4/5/2012
0.0.1.1 49 4/3/2012
0.0.1 56 4/2/2012

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.