CommandLiners 1.0.45

dotnet add package CommandLiners --version 1.0.45
NuGet\Install-Package CommandLiners -Version 1.0.45
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="CommandLiners" Version="1.0.45" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CommandLiners --version 1.0.45
#r "nuget: CommandLiners, 1.0.45"
#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 CommandLiners as a Cake Addin
#addin nuget:?package=CommandLiners&version=1.0.45

// Install CommandLiners as a Cake Tool
#tool nuget:?package=CommandLiners&version=1.0.45

Mutation testing badge codecov build status nuget

CommandLiners

An extensible replacement for the default CommandLineProvider fixing the wacky multiple argument notation and opening up the integration for some widely used command-line parser with the modern extensible configuration world of dotnet core.

CommandLineUtils CommandLineUtils

To integrate CommandLineUtils library into the configuration providers world with the Map<TOptions> class, map options to properties, do the parsing, and load the results into the builder.

var map = new MapOptions<YourOptions>();
var app = new CommandLineApplication();

app.Argument("files", "Input files", true)
    .Map(map, to => to.Multiple);

var result = app.Parse("input1.txt", "input2.txt");
var builder = new ConfigurationBuilder()
    .AddCommandLineOptions(map.FromCommand(result.SelectedCommand))
    .Build();

var options = new YourOptions();
builder.Bind(options);

Mono.Options Mono.Options

To integrate Mono.Options library into the configuration providers world with the Map<TOptions> class, map options to properties, do the parsing, and load the results into the builder.

var map = new Map<YourOptions>();
new OptionSet
{
    { "f|files=", data => map.Add(data, x => x.Files) }
}.Parse(new[] { "--files", "foo", "-f", "other" });

var builder = new ConfigurationBuilder()
    .AddCommandLineOptions(map)
    .Build();

var options = new YourOptions();
builder.Bind(options);

Mono.Options has the additional benefits of providing feedback on the usage of options and having a battle-tested notation for flags.

POSIX CommandLiners.Posix

While building this configuration provider, I first included my own arguments parser to find out later that with some little refactoring, I could open up for extensibility. The parser is now in a separate package.

var builder = new ConfigurationBuilder()
    .AddCommandLineOptions(args.ToPosix())
    .Build();

var options = new Options();
builder.Bind(options);

For details see the README.

Others?

I haven't fully discovered the argument parser space for C#. Still, my guess is that other popular frameworks are hard(er) to integrate since the parsing of arguments and settings of properties of the configuration object are not separated. But I'd be happy to be proven wrong on that.

Why?

The default command line configuration provider does support the binding to an array but in the wacky command line index notation way:

var args = new[] { "--input-file:0", "my-value-1", "--input-file:1", "my-value-2", "--input-file:2", "my-value-3" };
var builder = new ConfigurationBuilder()
    .AddCommandLine(args)
    .Build();

It turned out to be impossible to hook into its parsing process and after fiddling around I discovered that there wasn't much needed to build a custom configuration provider altogether.

Read more about this story here.

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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  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 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 (3)

Showing the top 3 NuGet packages that depend on CommandLiners:

Package Downloads
CommandLiners.MonoOptions

Integrate Mono.Options into the dotnet core configuration builders.

CommandLiners.Posix

Use POSIX style command line options and map to Microsoft configuration builders.

CommandLiners.CommandLineUtils

Integrate CommandLineUtils into the dotnet core configuration builders.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.45 132 4/10/2024
1.0.36 21,054 3/11/2020
1.0.35 852 3/11/2020
1.0.34 762 3/11/2020
1.0.25 567 3/11/2020
1.0.23 688 3/7/2020
1.0.2 719 3/6/2020
1.0.1 737 3/6/2020