gpt4 book ai didi

c# - 蛋糕构建 : access original command line arguments string?

转载 作者:行者123 更新时间:2023-11-30 15:17:15 27 4
gpt4 key购买 nike

同时试图挤压 Mono.Options在我的 Cake 脚本中,我注意到我并不完全确定如何从最初启动 Cake 脚本的命令行调用中为它提供原始参数字符串。 Mono.Options Parse 方法采用典型控制台应用程序的 string[] args 参数,因此我需要为它提供一些它可以使用的东西。

我知道我可以使用 ArgumentAlias 调用查询特定参数的上下文,但是有什么方法可以访问整个原始字符串调用字符串吗?

最佳答案

Cake 脚本本质上只是一个常规的 .NET 进程,您可以通过 System.Environment.GetCommandLineArgs()

访问它

PoC 示例

在下面的 Cake 中使用 Mono.Options 的一种方式的简单示例

#addin nuget:?package=Mono.Options&version=5.3.0.1
using Mono.Options;

public static class MyOptions
{
public static bool ShouldShowHelp { get; set; } = false;
public static List<string> Names { get; set; } = new List<string>();
public static int Repeat { get; set; } = 1;
}

var p = new OptionSet {
{ "name=", "the name of someone to greet.", n => MyOptions.Names.Add (n) },
{ "repeat=", "the number of times to MyOptions.Repeat the greeting.", (int r) => MyOptions.Repeat = r },
// help is reserved cake command so using options instead
{ "options", "show this message and exit", h => MyOptions.ShouldShowHelp = h != null },
};

try {
p.Parse (
System.Environment.GetCommandLineArgs()
// Skip Cake.exe and potential cake file.
// i.e. "cake --name="Mattias""
// or "cake build.cake --name="Mattias""
.SkipWhile(arg=>arg.EndsWith(".exe", StringComparison.OrdinalIgnoreCase)||arg.EndsWith(".cake", StringComparison.OrdinalIgnoreCase))
.ToArray()
);
}
catch (OptionException e) {
Information("Options Sample: ");
Information (e.Message);
Information ("--options' for more information.");
return;
}

if (MyOptions.ShouldShowHelp || MyOptions.Names.Count == 0)
{
var sw = new StringWriter();
p.WriteOptionDescriptions (sw);
Information(
"Usage: [OPTIONS]"
);
Information(sw);
return;
}

string message = "Hello {0}!";

foreach (string name in MyOptions.Names) {
for (int i = 0; i < MyOptions.Repeat; ++i)
Information (message, name);
}

示例输出

cake .\Mono.Options.cake 将输出帮助,因为没有指定名称

no arguments

cake .\Mono.Options.cake --options 将输出“help”

nane specified

cake .\Mono.Options.cake --name=Mattias 会问候我

name specified

cake .\Mono.Options.cake --name="Mattias"--repeat=5 会问候我 5 次

name and repeat specified

cake .\Mono.Options.cake --name="Mattias"--repeat=sdss 将失败并报告因为 repeat 不是数字

enter image description here

关于c# - 蛋糕构建 : access original command line arguments string?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47065882/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com