如何检测文件集是否已定义?

发布于 2024-12-22 00:20:11 字数 297 浏览 2 评论 0原文

我的自定义 NAnt 任务依赖于特定的文件集。它被认为是由任务执行的时间定义的。我想确保在使用文件集之前已定义它。我正在考虑类似于 property::exists('property') 的东西。

我没能找到合适的功能。 是否可以使用 NAnt (或 NAntContrib) 开箱即用?

My custom NAnt task relies on a certain fileset. It is considered to be defined by the time the task executes. I'd like to make sure fileset was defined before using it. I'm thinking of something similar to property::exists('property').

I failed to find the appropriate function.
Is it possible with NAnt (or NAntContrib) out of the box?

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

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

发布评论

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

评论(1

蝶…霜飞 2024-12-29 00:20:11

通常,任务不应依赖于文件集或属性。相反,它们应该采用显式参数。可以使用 refid 重用现有文件集,因此不会产生重新声明。示例语法:

<myTask><filesetParameter refid="compileUs"/><myTask>

如果未定义引用的文件集,NAnt 将抛出异常 - 这是正确的(预期)行为,因为此时构建无法继续。

在您的任务中,该属性将定义如下:

[TaskName("myTask")]
public class MyTask : Task
{
  [TaskAttribute("filesetParameter", Required = true)]
  public FileSet FilesetParamter
  { get; set; }
}

Generally, tasks should not depend on filesets or properties. Instead, they should take explicit parameters. An existing fileset can be reused using refid, so there's no redeclaration resulting from this. Example syntax:

<myTask><filesetParameter refid="compileUs"/><myTask>

If the referenced fileset is not defined, NAnt will throw an exception - this is proper (expected) behaviour, as the build cannot continue at this point.

Inside your task, the property would be defined as follows:

[TaskName("myTask")]
public class MyTask : Task
{
  [TaskAttribute("filesetParameter", Required = true)]
  public FileSet FilesetParamter
  { get; set; }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文