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>