的 Nant 等价物元素
下面的脚本的 NAnt 等效项是什么?这个脚本是在 Ant 中的。
<target name="getVersion">
<propertyfile file="./version.properties">
<entry key="version" type="string" value="${buildVersion}"/>
</propertyfile>
</target>
What will be the NAnt equivalent of the below script? This script is in Ant.
<target name="getVersion">
<propertyfile file="./version.properties">
<entry key="version" type="string" value="${buildVersion}"/>
</propertyfile>
</target>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
任务。文档位于此处。包含文件的内容应采用 xml 的形式,而不是 java 中的值对形式。例如Use the
<include>
task. The documentation is here. The contents of the include file should be in the form of xml not value pairs as in java. For example