当文件集中缺少文件时如何让 nant 抱怨

发布于 2024-08-08 15:58:06 字数 540 浏览 6 评论 0原文

我在构建文件中有一个 fileset 元素,其定义为:

<fileset id="fileset" basedir=".">
    <include name="test.txt"/>
    <include name="missing.txt"/>
</fileset>

当它运行时(作为复制任务的一部分),如果缺少任何文件,它不会抱怨。虽然我可以在 fileset 元素中使用 failonempty="true",但只有在两个 文件都丢失时才会失败。

我可以通过使用 failonempty="true" 设置创建多个文件集来实现这一目标,每个文件集包含一个文件,但这感觉很笨拙。如果需要的文件很多,这也是一个维护问题。

如果文件集中的任何文件丢失,是否有任何方法可以让 nant 抱怨?如果这不可能,是否有其他方法可以达到相同的效果?

I have a fileset element in a build file that is defined as:

<fileset id="fileset" basedir=".">
    <include name="test.txt"/>
    <include name="missing.txt"/>
</fileset>

When this runs (as part of a copy task), it does not complain if any of the files are missing. Whilst I can use failonempty="true" in the fileset element, this only fails if both files are missing.

I can achieve this by making multiple filesets with failonempty="true" set, each one containing a single file, but this feels clunky. This is also a maintenance problem if there are lots of required files.

Is there any way of making nant complain if any of the files in the fileset are missing? If this is not possible, is there another way of achieving the same effect?

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

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

发布评论

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

评论(1

对你的占有欲 2024-08-15 15:58:06

添加属性 asis="true"

<fileset id="fileset" basedir=".">
  <include name="test.txt" asis="true" />
  <include name="missing.txt" asis="true" />
</fileset>

如果文件丢失,NAnt 会抱怨。

Add attribute asis="true":

<fileset id="fileset" basedir=".">
  <include name="test.txt" asis="true" />
  <include name="missing.txt" asis="true" />
</fileset>

NAnt will complain then in case the file is missing.

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