FrayT.CommandLineParser 1.1.0

dotnet add package FrayT.CommandLineParser --version 1.1.0
                    
NuGet\Install-Package FrayT.CommandLineParser -Version 1.1.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="FrayT.CommandLineParser" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FrayT.CommandLineParser" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="FrayT.CommandLineParser" />
                    
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 FrayT.CommandLineParser --version 1.1.0
                    
#r "nuget: FrayT.CommandLineParser, 1.1.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 FrayT.CommandLineParser@1.1.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=FrayT.CommandLineParser&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=FrayT.CommandLineParser&version=1.1.0
                    
Install as a Cake Tool

CommandLineParser

Simple lib for parsing command line arguments

Usage

Create a list of ExpectedOption objects: These are all the arg types that you might expect to be used by the caller (Note: This example uses the optional helper class ExpectedOptionWithHelp which derives from ExpectedOption. This is so that it's easy to have some easy Usage/Help output..)

Call Parser.Parse() with that expected options list, and the string[] command line args, and a Options object will be returned

If the args contain anything invalid, ParseException will be thrown

Example


using System;
using System.Collections.Generic;
using Fray.CommandLineParser;

public static class CopyFilesTool
{
    private readonly static ExpectedOption _option_timeout =
        new ExpectedOptionWithHelp("timeout", "t", ExpectedOption.EOptionType.OneParam, "<timeout in minutes>");
    private readonly static ExpectedOption _option_verbose =
        new ExpectedOptionWithHelp("verbose", "v", ExpectedOption.EOptionType.StandAlone, null, "Show verbose info during operation");
    private readonly static ExpectedOption _option_ignoreFiles =
        new ExpectedOptionWithHelp("ignore-these-files", "i", ExpectedOption.EOptionType.OneOrMoreParams, "<file1 [file2] [file3] [fileN]>");
    private readonly static ExpectedOption _option_help =
        new ExpectedOptionWithHelp("help", "h", ExpectedOption.EOptionType.StandAlone, null, "Show Usage/Help");

    private static ExpectedOption[] _expectedOptions;
    public static int Main_(string[] args)
    {
        _expectedOptions = new ExpectedOption[]
        {
            _option_timeout,
            _option_verbose,
            _option_ignoreFiles,
            _option_help,
        };

        ParsedOptions options;
        try
        {
            options = Parser.Parse(args, _expectedOptions);
        }
        catch (ParseException e)
        {
            Console.WriteLine("Error parsing arguments: " + e.Message);
            return 1;
        }

        if (options.OptionExists("help"))
        {
            ShowUsage();
            return 0;
        }
        if (options.StandAloneArgs.Count != 2)
        {
            Console.WriteLine("Expect 2 args specifying source and dest");
            ShowUsage();
            return 1;
        }
        string source = options.StandAloneArgs[0];
        string dest = options.StandAloneArgs[1];
        bool verbose = options.OptionExists(_option_verbose);
        int.TryParse(options.GetOptionSingleArg(_option_timeout), out int timeout);
        IReadOnlyList<string> ignoreTheseFiles = options.GetOptionOneOrMoreArgs(_option_ignoreFiles);

        // Perform operation..
        Console.WriteLine($"Args: {source} {dest} verbose:{verbose} timeout:{timeout} ignore-count:{ignoreTheseFiles.Count}");

        return 0;
    }

    private static void ShowUsage()
    {
        Console.WriteLine($"Usage:");
        Console.WriteLine($" CopyFiles source dest");
        Console.WriteLine($"Optional params:");
        foreach (var option in _expectedOptions)
            Console.WriteLine(option.GetHelpText());
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.0 is compatible.  netstandard1.1 was computed.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 was computed.  wp81 was computed.  wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.1.0 362 12/14/2023