1

I am using NantContrib vssget task to retrieve the latest code from Source Safe in a build process. I would like 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'
Yan Sklyarenko
  • 31,557
  • 24
  • 104
  • 139
user543932
  • 51
  • 5

1 Answers1

0

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"
/>
Rami A.
  • 10,302
  • 4
  • 44
  • 87