我的目标是用命令“git describe”的输出填充属性。我有一个财产:
<property name="build.version" value = ""/>
我想用以下命令的输出填充它:git describe
我试过:
<exec program='${git.executable}' outputproperty='build.version'>
<arg value='describe' />
</exec>
但与 Ant 不同,NAnt 不支持outputproperty :( 仅输出(到文件)。