RvB.CommandLine 1.0.1

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package RvB.CommandLine --version 1.0.1
                    
NuGet\Install-Package RvB.CommandLine -Version 1.0.1
                    
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="RvB.CommandLine" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RvB.CommandLine" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="RvB.CommandLine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RvB.CommandLine --version 1.0.1
                    
#r "nuget: RvB.CommandLine, 1.0.1"
                    
#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.
#:package RvB.CommandLine@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RvB.CommandLine&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=RvB.CommandLine&version=1.0.1
                    
Install as a Cake Tool

RvB.CommandLine

Handles easy commandline options definition and parsing. Define options in a class, using the provided Option attribute. E.g:

class CmdLine : DefaultOptions {
    [Option('y', "Years", MaxValues = 100, Delimiter = ',')]
    public int[]? Years { get; set; }

    [Option('q', "Quests", MaxValues = 25, Delimiter = ',')]
    public int[]? Quests { get; set; }

    [Option('l', "Latest", IsSwitch = true)]
    public bool Latest { get; set; } = false;

    [Option('w', "Validate", IsSwitch = true)]
    public bool Validate { get; set; } = false;

    [Option('b', "Benchmark")]
    public int Benchmark { get; set; } = 1;

    [Option('u', "Micro", IsSwitch = true)]
    public bool Microseconds { get; set; } = false;
}

The DefaultOptions class provides support for help and version options.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

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