McMaster.Extensions.CommandLineUtils 4.0.1

CommandLineUtils

Build Status Code Coverage NuGet NuGet Downloads

This project helps you create command line applications using .NET. It simplifies parsing arguments provided on the command line, validating user inputs, and generating help text.

The roadmap for this project is pinned to the top of the issue list.

Usage

See documentation for API reference, samples, and tutorials. See also docs/samples/ for more examples, such as:

Installing the library

This project is available as a NuGet package.

$ dotnet add package McMaster.Extensions.CommandLineUtils

Code

CommandLineApplication is the main entry point for most console apps parsing. There are two primary ways to use this API, using the builder pattern and attributes.

Attribute API

using System;
using McMaster.Extensions.CommandLineUtils;

public class Program
{
    public static int Main(string[] args)
        => CommandLineApplication.Execute<Program>(args);

    [Option(Description = "The subject")]
    public string Subject { get; } = "world";

    [Option(ShortName = "n")]
    public int Count { get; } = 1;

    private void OnExecute()
    {
        for (var i = 0; i < Count; i++)
        {
            Console.WriteLine($"Hello {Subject}!");
        }
    }
}

Builder API

using System;
using McMaster.Extensions.CommandLineUtils;

var app = new CommandLineApplication();

app.HelpOption();

var subject = app.Option("-s|--subject <SUBJECT>", "The subject", CommandOptionType.SingleValue);
subject.DefaultValue = "world";

var repeat = app.Option<int>("-n|--count <N>", "Repeat", CommandOptionType.SingleValue);
repeat.DefaultValue = 1;

app.OnExecute(() =>
{
    for (var i = 0; i < repeat.ParsedValue; i++)
    {
        Console.WriteLine($"Hello {subject.Value()}!");
    }
});

return app.Execute(args);

Utilities

The library also includes other utilities for interaction with the console. These include:

  • ArgumentEscaper - use to escape arguments when starting a new command line process.
     var args = new [] { "Arg1", "arg with space", "args ' with \" quotes" };
     Process.Start("echo", ArgumentEscaper.EscapeAndConcatenate(args));
    
  • Prompt - for getting feedback from users with a default answer. A few examples:
    // allows y/n responses, will return false by default in this case.
    // You may optionally change the prompt foreground and background color for
    // the message.
    Prompt.GetYesNo("Do you want to proceed?", false);
    
    // masks input as '*'
    Prompt.GetPassword("Password: ");
    
  • DotNetExe - finds the path to the dotnet.exe file used to start a .NET Core process
    Process.Start(DotNetExe.FullPathOrDefault(), "run");
    

And more! See the documentation for more API, such as IConsole, IReporter, and others.

Getting help

If you need help with this project, please ...

Project origin and status

This is a fork of Microsoft.Extensions.CommandLineUtils, which was completely abandoned by Microsoft. This project forked in 2017 and continued to make improvements. From 2017 to 2021, over 30 contributors added new features and fixed bugs. As of 2022, the project has entered maintenance mode, so no major changes are planned. See this issue for details on latest project status. This project is not abandoned -- I believe this library provides a stable API and rich feature set good enough for most developers to create command line apps in .NET -- but only the most critical of bugs will be fixed (such as security issues).

No packages depend on McMaster.Extensions.CommandLineUtils.

Changes since 3.1.0: Features: * @scott-xu and @natemcmaster: feature: add API for setting default value on options and arguments, and display them in help text (#389 and #420) * @natemcmaster: cleanup: make .Values read-only on CommandArgument/Option (#406) * @natemcmaster: Make options, arguments, and commands read-only collections on CommandLineApplication (#407) Fixes: * @natemcmaster: fix: pass the generic argument version in callback on .Option() and Argument() (#405) * @natemcmaster: add .NET Standard 2.1 and fix nullable type references (#424 and #425) * @natemcmaster: fix new CI to correctly publish symbols to nuget.org * @scott-xu: show option types in help text when OptionAttribute.Template is set (#429) * @skirchner989: change to not throw when a validator is not of type AttributeValidator (#431) * @natemcmaster: don't mask OperationCanceledException triggered by SIGINT (#483) Updates in 4.0.1 patch: * @xoofx: use explicit constructors on validation attributes to workaround .NET 6 runtime trimming error (#491) * @jakubqwe: support the Description field of VersionOptionFromMemberAttribute (#490) See more details here: https://github.com/natemcmaster/CommandLineUtils/blob/main/CHANGELOG.md#v401

.NET Framework 4.5

.NET Standard 2.0

.NET Standard 2.1

Version Last updated
4.1.1 03/30/2025
4.1.0 08/26/2023
4.0.2 11/19/2022
4.0.1 03/30/2025
4.0.0 12/27/2021
4.0.0-beta.74 03/30/2025
4.0.0-beta.56 03/30/2025
3.1.0 01/10/2021
3.1.0-rc.371 04/09/2025
3.1.0-beta.356 03/30/2025
3.1.0-beta.336 04/02/2025
3.0.0 03/29/2020
3.0.0-rc.289 03/21/2020
3.0.0-alpha.268 04/06/2025
2.6.0 03/08/2020
2.5.1 03/30/2025
2.5.0 01/02/2020
2.4.4 03/30/2025
2.4.3 11/01/2019
2.4.2 03/23/2025
2.4.1 09/18/2019
2.4.0 09/14/2019
2.3.4 04/11/2019
2.3.3 04/07/2025
2.3.2 03/30/2025
2.3.1 01/19/2019
2.3.0 01/01/2019
2.2.5 07/02/2018
2.2.4 05/25/2018
2.2.3 05/11/2018
2.2.2 03/30/2025
2.2.1 04/11/2018
2.2.0 03/30/2025
2.2.0-rc 03/23/2018
2.2.0-beta 03/08/2018
2.2.0-alpha 03/30/2025
2.1.1 03/30/2025
2.1.0 12/13/2017
2.1.0-rc 12/07/2017
2.1.0-beta 04/05/2025
2.1.0-alpha 11/11/2017
2.0.1 10/13/2017
2.0.0 09/16/2017