从 Ant 脚本的文件集中永久排除 vssver2.scc 文件

发布于 2024-11-28 19:34:33 字数 247 浏览 2 评论 0原文

Ant 默认情况下从所有文件集中排除 vssver.scc 文件。这非常方便。

但是 VSS2005 使用 vssver2.scc 文件来达到同样的目的:(

我可以以某种方式修改 Ant 的默认排除吗? 我不喜欢添加一个想法

<exclude name="vssver*.scc"/>
to each fileset...

Ant by default excludes vssver.scc file from all filesets. This is very convenient.

But VSS2005 uses vssver2.scc file for the same purpose :(

Can I modify Ant's default excludes somehow?
I do not like an idea to add

<exclude name="vssver*.scc"/>

to each fileset...

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

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

发布评论

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

评论(1

岁月流歌 2024-12-05 19:34:33

它就在文档中:

defaultexcludes 指示是否应使用默认排除
不(是 | 否);省略时使用默认排除。

哪个链接到

这是默认列表;请注意,您可以修改默认列表
通过使用 defaultexcludes 任务进行排除。

哪个链接到

更改所有后续处理的默认排除项
构建,并根据需要打印出当前默认排除。

It's right there in the documentation:

defaultexcludes indicates whether default excludes should be used or
not (yes | no); default excludes are used when omitted.

which links to

This is the default list; note that you can modify the list of default
excludes by using the defaultexcludes task.

which links to

Alters the default excludes for all subsequent processing in the
build, and prints out the current default excludes if desired.

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