学习 NAnt - 帮助中的 [+|-] 是什么意思?

发布于 2024-09-12 23:01:16 字数 234 浏览 6 评论 0原文

如果我输入 nant -help 我会收到有关各种命令行选项的帮助信息。

有些,例如 find 具有后缀 [+|-],例如

-find[+|-]                     Search parent directories for build file

[+|-] 是什么意思?

If I type nant -help I receive help information about the various command-line options.

Some, such as find have a suffix of [+|-], e.g.

-find[+|-]                     Search parent directories for build file

What does the [+|-] mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

維他命╮ 2024-09-19 23:01:16

在命令行选项语法中,有时使用[...]表示可选项,|用于表示替代项。所以看起来这里有 3 种不同的变体:

-find
-find+
-find-

文档应该阐明每种变体的含义。

另请参阅

  • 论坛帖子

    <块引用>

    ... -find+ 查找 nant.build 遍历备份文件夹结构

In command line options syntax, sometimes [...] is used to denote optional items, and | is used to denote alternate. So it looks like there are 3 different variations here:

-find
-find+
-find-

The documentation should clarify what each of these variation means.

See also

  • Forum post

    ... -find+ looks for nant.build traversing back up the folder structure

荒岛晴空 2024-09-19 23:01:16

根据 源代码,find是boolean类型,添加+或-只是相应地设置为true或false。我认为 - 对于覆盖以前的设置很有用,但不知道为什么你想要一个显式的 + 。

According to the source code, find is a boolean type, and adding + or - simply sets it to true or false accordingly. I suppose the - is useful to override a previous setting, don't know why you'd want to have an explicit + though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文