如何检测文件集是否已定义?
我的自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,任务不应依赖于文件集或属性。相反,它们应该采用显式参数。可以使用 refid 重用现有文件集,因此不会产生重新声明。示例语法:
如果未定义引用的文件集,NAnt 将抛出异常 - 这是正确的(预期)行为,因为此时构建无法继续。
在您的任务中,该属性将定义如下:
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: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: