Sharpify.CommandLineInterface
1.2.2
See the version list below for details.
dotnet add package Sharpify.CommandLineInterface --version 1.2.2
NuGet\Install-Package Sharpify.CommandLineInterface -Version 1.2.2
<PackageReference Include="Sharpify.CommandLineInterface" Version="1.2.2" />
paket add Sharpify.CommandLineInterface --version 1.2.2
#r "nuget: Sharpify.CommandLineInterface, 1.2.2"
// Install Sharpify.CommandLineInterface as a Cake Addin #addin nuget:?package=Sharpify.CommandLineInterface&version=1.2.2 // Install Sharpify.CommandLineInterface as a Cake Tool #tool nuget:?package=Sharpify.CommandLineInterface&version=1.2.2
CHANGELOG
Version 1.2.2
- Rewritten core function of argument forwarding to fix issue that caused non-positional arguments to be removed, now named arguments and flags should not be affected by positional forwarding at all.
- Important note: the
Args
array that is stored within theArguments
object, is never modified and no matter how many positional forwarding iterations have been executed, it maintains the original arguments.
- Important note: the
- Added
Arguments.HasFlag(string)
method that could be used to specifically checks for flags.- Previously
Arguments.Contains(string)
could be used for this purpose, but it could also returntrue
for a named argument, effectively allowing a false-positive.HasFlag
prevents this by checking that if it exists, the value is empty, which could only be the case for flags.
- Previously
- Increased buffer size for help-text generation to prevents issues with complex clis.
Usage Note
In case you are writing a cli which has a complex tree to navigate on the way to the execution, such as nested commands, and any single command processing gets verbose, remember that it is possible to create a CliRunner
at any point.
This means that you can create objects for the nested commands, inside the top level command you could then forward the positional arguments (or not) if you choose, then use the same builder pattern with CliRunner.CreateBuilder()...
and add the nested commands, then execute using the already parsed Arguments
object as the CliRunner.RunAsync
also has an overload that accepts Arguments
.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Sharpify (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.