I am using nantcontrib and the vssget task to retrieve the latest code from source safe in a build process. I would like to log which files have been updated/replaced, basically any changes that have occured, and output it to screen/log file.
The only output I get is...
[vssget] Getting '$/project' to 'C:\project'
Below is my vssget task:
<target name="vss-get" description="Pre build steps.">
<vssget
dbpath="srcsafe.ini"
path="$/$project"
localpath="..\"
username="user"
recursive="true"
replace="true"
verbose="true"
/>
</target>