My aim is to fill property with output of command "git describe". I have a property:
<property name="build.version" value = ""/>
And I want to fill it with output of the following command: git describe
I tried:
<exec program='${git.executable}' outputproperty='build.version'>
<arg value='describe' />
</exec>
but unlike the Ant, NAnt doesn't support outputproperty :( only output (to file).