Shadow.Quack.Args 1.1.3

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

// Install Shadow.Quack.Args as a Cake Tool
#tool nuget:?package=Shadow.Quack.Args&version=1.1.3

Shadow Quack Args

This package allows the easy population of values directly from a parameters (string[] args) array to a dynamically implemented immutable interface with the help of the base Shadow Quack package.

This means that there is almost no effort in adding additional command line parameters, it's as simple as just adding an additional get-only property to the interface.

An extension method .Populate<T>() is also provided to furthur simplify usage.

using System.Runtime.CompilerServices;
using Shadow.Quack;
using Shadow.Quack.Args;

namespace ExampleArgsApp
{
    class Program
    {
        static void Main(string[] args)
        {
            var config = args.Populate<IConfig>();
            // var config = Duck.Implement<IConfig>((ArgsProxy) args);
            Console.WriteLine(
                !args.Any() 
                    ? Sugar.GetUsageInfo<IConfig>() 
                    : config.ToArgs());
        }
    }

    public interface IConfig
    {
        bool Flag { get; }
        string FileName { get; }
        int Port { get; }
        string SourceUrl { get; }
    }
}

a simple way to get usage information is to use Sugar.GetUsageInfo<T>() in the example above the output is below

 /flag[:true|false]
 /filename:"string"
 /port:int32
 /sourceurl:"string"

and if you want to reflect the parameters input back to the console or store them in a log-file you can use the .ToArgs() extension method using the above example like this ...

.\exampleArgsApp /flag /filename:"c:" /port:443 /sourceurl:"https://www.google.com"`

gives this output

/flag
/filename:"c:\"
/port:443
/sourceurl:"https://www.google.com"
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.1
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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.3 315 4/5/2022
1.1.2 302 1/30/2022
1.1.1 302 1/20/2022
1.1.0 309 1/20/2022
1.0.0 202 12/5/2021
0.2.0 197 12/2/2021
0.1.2 524 9/11/2021
0.1.1 273 9/10/2021
0.1.0 212 6/19/2021

Updated dependencies