RSCommandLineParse 1.0.2
dotnet add package RSCommandLineParse --version 1.0.2
NuGet\Install-Package RSCommandLineParse -Version 1.0.2
<PackageReference Include="RSCommandLineParse" Version="1.0.2" />
paket add RSCommandLineParse --version 1.0.2
#r "nuget: RSCommandLineParse, 1.0.2"
// Install RSCommandLineParse as a Cake Addin #addin nuget:?package=RSCommandLineParse&version=1.0.2 // Install RSCommandLineParse as a Cake Tool #tool nuget:?package=RSCommandLineParse&version=1.0.2
The RS Command Line Parser .Net Class Library can be used to add basic command line parsing for parameters to an application.
Parameters can be passed starting with -- or - or / as prefix character followed by a space or = between parm name and value.
Example: app.exe --action=run or --action run
Parameters are returned in a Dictionary object or a Hashtable object. Dictionary object is preferred.
The assembly is compiled at .Net version 4.0 level compatability.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated to support parsing commnd line values with multiple keywords and preserving the value.
Ex: --parm1=This is my parm would previously get parsed incorrectly into individual words when this parm value should be preserved as: "--parm1,This is a test"