How do i get the list of replaced files using nantcontrib vssget task in cruise control . net
I am using NantContrib vssget
task to retrieve the latest code from Source Safe in a build process. I would like开发者_Python百科 to know what files have been updated /replaced, basically any changes that have occurred, and output it to screen/log file.
The only output I get is...
[vssget] Getting '$/project' to 'C:project'
Try setting the verbose attribute as follows:
<vssget
user="myusername"
password="mypassword"
localpath="C:\project"
recursive="true"
replace="true"
writable="true"
dbpath="C:\VSS\srcsafe.ini"
path="$/project"
verbose="true"
/>
精彩评论