的 Nant 等价物元素

发布于 2024-09-11 09:35:37 字数 269 浏览 5 评论 0原文

下面的脚本的 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 技术交流群。

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

发布评论

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

评论(1

情痴 2024-09-18 09:35:37

使用 任务。文档位于此处。包含文件的内容应采用 xml 的形式,而不是 java 中的值对形式。例如

<?xml version="1.0"?>
<project name="Project Properties" default="">
  <property name="dotnet-version" value="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\"/>  
  <property name="output-dir" value="c:\working\testproj\out"/>
  <property name="temp-dir" value="C:\temp"/>
</project>

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

<?xml version="1.0"?>
<project name="Project Properties" default="">
  <property name="dotnet-version" value="C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\"/>  
  <property name="output-dir" value="c:\working\testproj\out"/>
  <property name="temp-dir" value="C:\temp"/>
</project>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文