FsCli 1.0.3

dotnet add package FsCli --version 1.0.3
NuGet\Install-Package FsCli -Version 1.0.3
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="FsCli" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FsCli --version 1.0.3
#r "nuget: FsCli, 1.0.3"
#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.
// Install FsCli as a Cake Addin
#addin nuget:?package=FsCli&version=1.0.3

// Install FsCli as a Cake Tool
#tool nuget:?package=FsCli&version=1.0.3

FsCli

A simple way of dealing with command line arguments for console apps in .NET, designed around F# DUs and Records.

Quickstart for using FsCli

Define your commands

  1. Create a DU that lists your allowed set of commands:
type Verbs =
  | Run of RunCmd
  | List of ListCmd

// e.g > myprog list --user "Peter"
// or  > myprog run --name "Sophie" --data 69

  1. Create a record type for each command specifying the options for the command.
    You can optionally use description attributes to help generate useful help messages.
open System.ComponentModel

type ListCmd = {
  user: string
}

[<Description("Run the thing")>]
type RunCmd = {
  [<Description("The name of the thing")>] name: string
  [<Description("The value of the thing")>] data: int
}

Parse the commandline

  1. Pass the commandline args into the parse function

The parser returns either a populated DU value (e.g. Verbs.Run of RunCmd), or an helpful error message for your users.

open FsCli

[<EntryPoint>]
let Main argv =
  let userCommand = Commandline.parse<Verbs> argv
  match userCommand with 
  | Ok cmd -> 
      // cmd has the value Run, or List, from our Verbs DU definition
      match cmd with 
      | Run runcmd -> DoSomething* runcmd
      | List listcmd -> ListSomething* listcmd
  | Error msg-> 
      // msg is an help message that we can just print out to the user
      printfn "%s" msg

* DoSomething and ListSomething are your functions for acting on the user's commands

A help message for the above run command would look something like:

USAGE: myprog run --name --data [--help]
A description for the Run verb

OPTIONS:

    --name            The name of the thing (String)
    --data            The value of the thing (Int32)
    --help            display this list of options

Run the thing

Advanced

Optional Arguments

Use an option type to make arguments optional

type ListCmd = {
  user: string option 
}

If you do this then the help message will show the argument in square brackets

USAGE: myprog list [--user] [--help]

Argument options' types

Option values can be :

  1. any simple type (e.g. string, int, double). The parsing with accept anything that works for the type's ...Parse(x) method
  2. an Enum. e.g. type Colour = Red=0 | Yellow=1 | Blue=2
  3. a simple DU without any case types. e.g. type Size = Small | Medium | Large
open System.ComponentModel // for the description attribute

type Colour = Red=0 | Yellow=1 | Blue=2

type ListCmd = {
  [<Description("The user to list for")>]          
  user: string option

  [<Description("The maximum number of results")>]
  max: int option

  [<Description("The test colour to print")>]
  colour: Colour option
}

// USAGE: myprog list [--user] [--max] [--help]
// ...
//    --name    The user to list for (String)
//    --max     The maximum number of results (Int)
//    --colour  The test colour to print (Red|Yellow|Blue)

Commands with a subject

Sometime we need a subject to apply the command to. For instance, creating a thing that needs to be named, like a user, or maybe an address object.

myprog create user --name Peter --value 42
myprog create address --name Home --value 69

A command subject can be nominated with the Key attribute:

open System.ComponentModel
type CreateCmd ={
  [<DataAnnotations.Key>]
  itemType: string
  name: string
  value: int option
}

Note that the command's subject does not have a "--" prefix

USAGE: myprog create itemType --name [--value] [--help]
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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.0.3 426 4/8/2022
1.0.2 384 4/4/2022
1.0.1 382 4/3/2022
1.0.0 385 4/2/2022