Dear All,

I have following VSSget script in my my NANT build script.

<!-- GetVSSLatest will get the latest version of code from vss -->
   <target name="GetVSSLatest">
   <vssget
        user="Sanjoy"
        password="Sanjoy"
       localpath="${Build.DownloadFolder}"
        recursive="true"
        replace="true"
        writable="true"
        removedeleted="true"
        dbpath="\\Hhsserver\VSS\srcsafe.ini"
        path="$/SmplNantC#"
        />
   </target

1. After geting the source code out of the VSS I want to create a label in VSS source [Like creating a tag in CVS]. So that in future reference I could use the tag /label to get that particular code on which the build was made.
I want to create tag for eg SrcYYYYMMDDHHMM.
So on run time of the script i require to know the date() and time(HH:MM) from my system also.


2. Presently before runningh the script I have to connect to my build machine to the VSS server machine by accessing the VSS server machine through My Network Places and use the corresponding user and password for that server machine.
Now I want to know if it is possible to connect the VSS server machine through my NANT script . If possible how?


Thanks
Sanjoy



-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to