Benday.CommandsFramework 3.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Benday.CommandsFramework --version 3.4.0
                    
NuGet\Install-Package Benday.CommandsFramework -Version 3.4.0
                    
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="Benday.CommandsFramework" Version="3.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Benday.CommandsFramework" Version="3.4.0" />
                    
Directory.Packages.props
<PackageReference Include="Benday.CommandsFramework" />
                    
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 Benday.CommandsFramework --version 3.4.0
                    
#r "nuget: Benday.CommandsFramework, 3.4.0"
                    
#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 Benday.CommandsFramework@3.4.0
                    
#: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=Benday.CommandsFramework&version=3.4.0
                    
Install as a Cake Addin
#tool nuget:?package=Benday.CommandsFramework&version=3.4.0
                    
Install as a Cake Tool

Benday.CommandsFramework

Do you want to write your own command line interface (CLI) utilities? This framework gives you a way to write synchronous and asynchronous command line tools.

Key features:

  • Command line argument parsing
  • Define named command
  • Define the valid arguments for each command
  • Argument validation
  • String, boolean, int, and date time arguments

About

Written by Benjamin Day
Pluralsight Author | Microsoft MVP | Scrum.org Professional Scrum Trainer
https://www.benday.com
info@benday.com

Got ideas for git repo sync features you'd like to see? Found a bug? Let us know by submitting an issue. Want to contribute? Submit a pull request.

Source code

API Documentation

NuGet Package

Product 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Benday.CommandsFramework:

Package Downloads
Benday.AzureDevOpsUtil.Api

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.14.1 31 3/5/2026
4.14.0 52 3/4/2026
4.13.0 324 11/5/2025
4.12.0 174 9/27/2025
4.11.0 153 9/26/2025
4.10.0 279 8/9/2025
4.9.0 331 6/4/2025
4.8.0 215 5/11/2025
4.7.0 325 4/16/2025
4.6.0 214 3/21/2025
4.5.0 177 3/15/2025
4.4.0 373 11/20/2024
4.3.0 268 8/19/2024
4.2.0 257 8/16/2024
4.1.1 219 8/8/2024
4.1.0 203 8/8/2024
4.0.0 209 7/30/2024
4.0.0-beta 119 7/29/2024
3.4.0 173 7/26/2024
3.3.0 203 7/12/2024
Loading failed

v3.4 - Changed 'display usage' on commands to return ExitCode of 1 if there is an invalid/missing parameter.
     v3.3 - Fixed 'display usage' formatting bug when argument does not have a description. Added logic to DefaultProgram to set ExitCode to 1 automatically on error.
     v3.2 - Bug fixes.
     v3.1 - Bug fixes. Added ability to inject an instance of ITextOutputProvider for testability.
     v3.0 - Upgraded to .NET 8.0. Added default commands for managing basic string configuration values. Added extension methods for working with relative paths as arguments.