Shadow.Quack.Args
1.1.2
See the version list below for details.
dotnet add package Shadow.Quack.Args --version 1.1.2
NuGet\Install-Package Shadow.Quack.Args -Version 1.1.2
<PackageReference Include="Shadow.Quack.Args" Version="1.1.2" />
paket add Shadow.Quack.Args --version 1.1.2
#r "nuget: Shadow.Quack.Args, 1.1.2"
// Install Shadow.Quack.Args as a Cake Addin #addin nuget:?package=Shadow.Quack.Args&version=1.1.2 // Install Shadow.Quack.Args as a Cake Tool #tool nuget:?package=Shadow.Quack.Args&version=1.1.2
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 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. 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 | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- Shadow.Quack (>= 2.1.1)
-
.NETStandard 2.1
- Shadow.Quack (>= 2.1.1)
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