It did! 
Thank you!

Dina,

You're not actually executing the "runGetLatest" target.

Try changing the build target like this:

    <target name="build" depends="runGetLatest">
        ...
    </target>

This will cause the "runGetLatest" target to get executed when you run the
"build" target.

Alternatively, you could specify both the "runGetLatest" and "build" target
on the command line:

NAnt.exe -f:<your build file> runGetLatest build

Hope this helps,

Gert
-- 
View this message in context: 
http://www.nabble.com/vssget-is-not-working-tf3770601.html#a10661770
Sent from the NAnt - Users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to