According to the documentation, I should be able to get a single file to a relative path… however this is not working at all. It seams like this a problem with the sourcesafe.interop library, but I can’t tell. Here’s the two directives that aren’t working:
<vssget localpath=”.” Dbpath=”\\MyServer\VSS\srcsafe.ini” path= “$\MyProject\file.cs” user=”me” /> Error: NAnt 0.85 (Build 0.85.1606.0; net-1.0.win32; nightly; 5/25/2004) Copyright (C) 2001-2004 Gerry Shaw NAnt Team
Buildfile: file:///C:/test/test.build Target(s) specified: update
update:
BUILD FAILED
C:\test\test.build(4,4): vssget failed Invalid DOS path:
Total time: 0.3 seconds.
<vssget localpath=”C:\test” Dbpath=”\\MyServer\VSS\srcsafe.ini” path= “$\MyProject\file.cs” user=”me” /> NAnt 0.85 (Build 0.85.1606.0; net-1.0.win32; nightly; 5/25/2004) Copyright (C) 2001-2004 Gerry Shaw NAnt Team
Buildfile: file:///C:/test/test.build Target(s) specified: update
update:
[vssget] Put $\NantTest\LogicLayer\Class1.cs to C:\test\
BUILD SUCCEEDED
Total time: 0.4 seconds.
But the file doesn’t appear in the directory listing. Any help here? |