CommandLiners 1.0.45
dotnet add package CommandLiners --version 1.0.45
NuGet\Install-Package CommandLiners -Version 1.0.45
<PackageReference Include="CommandLiners" Version="1.0.45" />
paket add CommandLiners --version 1.0.45
#r "nuget: CommandLiners, 1.0.45"
// 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
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
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
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
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 | Versions 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. |
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration (>= 3.1.2)
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.