RSCommandLineParse 1.0.2

dotnet add package RSCommandLineParse --version 1.0.2
NuGet\Install-Package RSCommandLineParse -Version 1.0.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="RSCommandLineParse" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RSCommandLineParse --version 1.0.2
#r "nuget: RSCommandLineParse, 1.0.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.
// 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 Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
1.0.2 1,816 4/13/2018
1.0.1 971 1/5/2018

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"