gpt4 book ai didi

nant - 如何使用 NANT 替换文件中的字符串?

转载 作者:行者123 更新时间:2023-12-03 21:24:25 25 4
gpt4 key购买 nike

我正在尝试使用 Nant 替换 wxs 文件中出现的字符串。

我只找到了下面的例子,它使用了 <replaceString> ,但它似乎只能在复制的文件中使用。有没有其他方法可以替换字符串而不实际复制文件?

<property name="NOW" value="${datetime::now()}" />
<copy todir="out">
<fileset basedir="in">
<include name="**/*" />
</fileset>
<filterchain>
<replacetokens>
<token key="NOW" value="${TODAY}" />
</replacetokens>
<tabstospaces />
</filterchain>
</copy>

最佳答案

这是代码:

<loadfile file="token.txt" property="token-file">
<filterchain>
<replacetokens>
<token key="NOW" value="${datetime::now()}" />
</replacetokens>
</filterchain>
</loadfile>
<loadfile> 的官方 NAnt 文档元素包含 the exact sample you need .请参阅页面底部。

关于nant - 如何使用 NANT 替换文件中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8563386/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com