Anyone,
I am a newbie to Nant and am using the version task.
I created a file with the contents: 3.0.0.100
I want the version task to update this file as follows:
3.0.1.100
3.0.2.100
This is what I am doing.
<version buildtype="Increment" revisiontype="Increment" path="${pwd}\Version"/>
But the results are:
3.0.1.0
3.0.2.0
It is changing the revision and I do not want it to ever change it. I tried to leave the revisiontype off but that did nothing for me.
Can someone tell me how to achieve what I want?
Thanks
Rebecca