Niche.CommandLineProcessor 3.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package Niche.CommandLineProcessor --version 3.0.4
NuGet\Install-Package Niche.CommandLineProcessor -Version 3.0.4
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="Niche.CommandLineProcessor" Version="3.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Niche.CommandLineProcessor --version 3.0.4
#r "nuget: Niche.CommandLineProcessor, 3.0.4"
#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 Niche.CommandLineProcessor as a Cake Addin
#addin nuget:?package=Niche.CommandLineProcessor&version=3.0.4

// Install Niche.CommandLineProcessor as a Cake Tool
#tool nuget:?package=Niche.CommandLineProcessor&version=3.0.4

Niche.CommandLine Quick Reference

A convention based argument handler for writing console applications.

Program.cs

Eliminate most of the boilerplate in Program.cs:

static int Main(string[] args)
{
    var processor = new CommandLineProcessor(args);
    var exitCode = processor.Parse<ProgramOptions>()
        .Execute(Run);

    processor.WhenHelpRequired(ShowHelp)
        .WhenErrors(ShowErrors);

    return exitCode;
}

For a complete working demo, see https://github.com/theunrepentantgeek/Niche.CommandLineProcessor/blob/master/src/Niche.CommandLine.Demo/Program.cs

Options

To configure the options available, follow the following conventions:

// A switch
// (void method with no parameters)
// --verbose
// -v
[Description("Verbose output")]
public void Verbose() ...

See https://github.com/theunrepentantgeek/Niche.CommandLineProcessor/wiki/Conventions#switches for more.

// A parameter with a single value
// (void method with single parameter)
// --output-file
// -of
[Description("Destination file for output")]
public void OutputFile(string file) ...

See https://github.com/theunrepentantgeek/Niche.CommandLineProcessor/wiki/Conventions#parameters for more.

// A parameter with multiple values
// (void method with IEnumerable parameter)
// --input-file
// -if
[Description("Input files to consume")]
public void InputFile(IEnumerable<string> files)
// A distinct program mode
// (method with no parameter returning a new options instance)
// render
[Description("Render documents")]
public RenderOptions Render()
{
    return new RenderOptions();
}

See https://github.com/theunrepentantgeek/Niche.CommandLineProcessor/wiki/Mode-Support for more.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.6 is compatible.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
3.1.4 1,431 1/20/2018
3.1.3 1,070 1/11/2018
3.1.2 1,101 12/10/2017
3.1.1 1,098 12/9/2017
3.1.0 1,170 12/9/2017
3.0.4 1,119 11/23/2017
2.0.52 1,123 7/9/2017
2.0.46 1,381 10/11/2016
2.0.45 1,547 9/20/2016
2.0.44 1,624 9/20/2016
2.0.34 1,622 4/21/2015
2.0.33 1,408 1/27/2015
2.0.31 1,430 1/22/2015
2.0.30 1,346 1/3/2015
2.0.29 1,671 12/16/2014
2.0.28 1,609 12/16/2014
2.0.27 1,618 12/16/2014
2.0.26 1,641 11/23/2014
2.0.25 1,628 11/23/2014
2.0.24 1,659 11/23/2014
2.0.23 1,715 11/23/2014
1.0.22 1,504 8/24/2014
1.0.21 1,453 8/22/2014
1.0.20 1,474 8/10/2014
1.0.19 1,441 8/9/2014
1.0.17 1,442 8/7/2014
1.0.16 1,412 8/5/2014