Sharpify.CommandLineInterface
1.3.0
See the version list below for details.
dotnet add package Sharpify.CommandLineInterface --version 1.3.0
NuGet\Install-Package Sharpify.CommandLineInterface -Version 1.3.0
<PackageReference Include="Sharpify.CommandLineInterface" Version="1.3.0" />
paket add Sharpify.CommandLineInterface --version 1.3.0
#r "nuget: Sharpify.CommandLineInterface, 1.3.0"
// Install Sharpify.CommandLineInterface as a Cake Addin #addin nuget:?package=Sharpify.CommandLineInterface&version=1.3.0 // Install Sharpify.CommandLineInterface as a Cake Tool #tool nuget:?package=Sharpify.CommandLineInterface&version=1.3.0
CHANGELOG
Version 1.3.0
Arguments
now contains new methodsTryGetValues
andTryGetValues{T}
to get arrays from values, there are overloads for regular and positional arguments, each overload requires astring? separator
that is used to split the value, as with te regular values,T
needs to implementIParsable{T}
.CliBuilder
now has a methodShowErrorCodes
that will enable the error codes next toCliRunner
error outputs, that was previously enabled by default, now it will hide them by default to provide a cleaner experience for users, but the builder now can easily configure this for testing, or if you still want the user to see them.
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.