Shadow.Quack.Args
1.1.3
dotnet add package Shadow.Quack.Args --version 1.1.3
NuGet\Install-Package Shadow.Quack.Args -Version 1.1.3
<PackageReference Include="Shadow.Quack.Args" Version="1.1.3" />
paket add Shadow.Quack.Args --version 1.1.3
#r "nuget: Shadow.Quack.Args, 1.1.3"
// 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 |
-
.NETFramework 4.5
- Shadow.Quack (>= 2.3.0)
-
.NETStandard 2.1
- Shadow.Quack (>= 2.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated dependencies