Monarch 4.0.2

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

Monarch

.NET Publish Coverage Status

Monarch is a command line parser/task runner.

Basic Usage

In order to use the system, you need to register it with your ServiceCollection:

serviceCollection.RegisterMonarch();

Or if you are using Canister:

serviceCollection.AddCanisterModules();
				

This is required prior to using the Monarch class for the first time. Once it is wired up, you can use the CommandRunner class:

var Instance = new CommandRunner();
return Instance.Run(args);

The CommandRunner class has a Run method which parses the args passed in and runs the appropriate command. The library has help and version commands built in to the system, however to create your own commands you need to create a command and also an input class:

public class TestCommand : CommandBaseClass<TestInput>
{
    public override string[] Aliases => new string[] { "Test" };

    public override string Description => "Test command";

    public override string Name => "Test Command";

    protected override async Task<int> Run(TestInput input)
    {
        await Task.CompletedTask;
        Console.WriteLine(input.Value1);
        Console.WriteLine(input.Value2);
        Console.WriteLine(input.Value3.ToString(x => x));
        return 0;
    }
}

public class TestInput
{
    [Display(Description = "Value 1 Property")]
    public int Value1 { get; set; }

    [Display(Description = "Value 2 Property")]
    public string Value2 { get; set; }

    [Display(Description = "Value 3 Property")]
    [MaxLength(3)]
    public List<string> Value3 { get; set; }
}

The command above inherits from the CommandBaseClass and defines the input that it expects. In this case TestInput. TestInput is how the command line arguments should be parsed by the system. The commands must define the aliases, description, and name for the command. The TestInput then defines properties and uses the DisplayAttribute from the System.ComponentModel.DataAnnotations namespace to define information. Also any data annotations defining max length, required, etc. are used to validate the input.

Options

By default the system does not require you to set options. However you can specify some options found within the system including command prefix, flag prefix, and indentation amount. In order to override what is in the system just create a class that inherits from IOptions:

public class DefaultOptions : IOptions
{
    /// <summary>
    /// Gets the command prefix.
    /// </summary>
    /// <value>The command prefix.</value>
    public string CommandPrefix { get; } = "";

    /// <summary>
    /// Gets the flag prefix.
    /// </summary>
    /// <value>The flag prefix.</value>
    public string FlagPrefix { get; } = "-";

    /// <summary>
    /// Gets the indent amount.
    /// </summary>
    /// <value>The indent amount.</value>
    public int IndentAmount { get; } = 4;
}
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 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Monarch:

Package Downloads
TaskMaster

TaskMaster is a simple library used to manage sets of fire and forget tasks that need to run after specific dates/times.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.2 212 6/27/2025
4.0.1 532 1/15/2025
4.0.0 402 11/24/2024
3.0.116 196 11/13/2024
3.0.115 153 11/12/2024
3.0.114 159 11/11/2024
3.0.113 159 11/8/2024
3.0.112 153 11/6/2024
3.0.111 219 11/4/2024
3.0.110 175 10/31/2024
3.0.109 165 10/30/2024
3.0.108 125 10/29/2024
3.0.107 154 10/29/2024
3.0.106 269 10/11/2024
3.0.105 166 10/10/2024
3.0.104 433 9/9/2024
3.0.103 231 8/29/2024
3.0.102 178 8/27/2024
3.0.101 177 8/26/2024
3.0.100 237 8/22/2024
3.0.99 191 8/21/2024
3.0.98 199 8/20/2024
3.0.97 226 8/15/2024
3.0.96 220 8/5/2024
3.0.95 199 7/25/2024
3.0.94 203 7/11/2024
3.0.93 280 6/27/2024
3.0.92 174 6/26/2024
3.0.91 210 6/21/2024
3.0.90 190 6/19/2024
3.0.89 195 6/18/2024
3.0.88 182 6/17/2024
3.0.87 186 6/14/2024
3.0.86 180 6/13/2024
3.0.85 227 5/31/2024
3.0.84 235 5/30/2024
3.0.83 197 5/17/2024
3.0.82 165 5/16/2024
3.0.81 217 5/8/2024
3.0.80 195 5/7/2024
3.0.79 198 5/6/2024
3.0.78 187 5/3/2024
3.0.77 141 5/2/2024
3.0.76 153 5/1/2024
3.0.75 184 4/30/2024
3.0.74 187 4/30/2024
3.0.73 260 4/14/2024
3.0.72 142 4/12/2024
3.0.71 181 4/11/2024
3.0.70 229 4/1/2024
3.0.69 181 3/29/2024
3.0.68 243 3/18/2024
3.0.67 187 3/15/2024
3.0.66 179 3/14/2024
3.0.65 205 3/11/2024
3.0.64 202 3/8/2024
3.0.63 195 3/7/2024
3.0.62 183 3/6/2024
3.0.61 167 3/5/2024
3.0.60 148 3/4/2024
3.0.59 305 2/29/2024
3.0.58 186 2/28/2024
3.0.57 186 2/26/2024
3.0.56 213 2/23/2024
3.0.55 174 2/22/2024
3.0.54 165 2/21/2024
3.0.53 308 2/15/2024
3.0.52 207 2/12/2024
3.0.51 222 2/8/2024
3.0.50 178 2/7/2024
3.0.49 190 2/6/2024
3.0.48 225 2/1/2024
3.0.47 288 1/24/2024
3.0.46 156 1/23/2024
3.0.45 285 1/11/2024
3.0.44 353 12/19/2023
3.0.43 207 12/14/2023
3.0.42 177 12/13/2023
3.0.41 323 11/24/2023
3.0.40 222 11/21/2023
3.0.39 163 11/20/2023
3.0.38 188 11/17/2023
3.0.37 205 11/16/2023
3.0.36 175 11/15/2023
3.0.35 268 11/9/2023
3.0.34 208 11/7/2023
3.0.33 170 11/6/2023
3.0.32 258 11/1/2023
3.0.31 176 10/31/2023
3.0.30 187 10/30/2023
3.0.29 220 10/26/2023
3.0.28 236 10/12/2023
3.0.27 278 9/26/2023
3.0.26 191 9/20/2023
3.0.25 194 9/19/2023
3.0.24 192 9/18/2023
3.0.23 229 9/14/2023
3.0.22 200 9/13/2023
3.0.21 198 9/12/2023
3.0.20 204 9/11/2023
3.0.19 246 9/7/2023
3.0.18 201 9/6/2023
3.0.17 195 9/5/2023
3.0.16 203 9/4/2023
3.0.15 221 9/1/2023
3.0.14 203 8/31/2023
3.0.13 208 8/30/2023
3.0.12 215 8/29/2023
3.0.11 221 8/28/2023
3.0.10 259 8/23/2023
3.0.9 260 8/18/2023
3.0.8 253 8/16/2023
3.0.7 239 8/9/2023
3.0.6 235 8/8/2023
3.0.5 172 8/8/2023
3.0.4 248 8/7/2023
3.0.3 255 8/4/2023
3.0.2 328 7/26/2023
3.0.1 326 7/14/2023
3.0.0 456 12/12/2022
2.0.16 494 6/10/2022
2.0.14 366 1/11/2022
2.0.13 1,386 1/11/2022
2.0.12 837 1/10/2022
2.0.10 760 6/21/2021
2.0.8 415 6/21/2021
2.0.6 756 1/6/2021
2.0.5 1,109 9/13/2020
2.0.4 823 3/29/2020
2.0.3 1,118 3/25/2020
2.0.2 871 3/3/2020
2.0.1 1,549 12/31/2019
2.0.0 1,084 12/23/2019
1.0.7 1,220 8/31/2018
1.0.6 871 8/31/2018
1.0.5 876 8/31/2018