Thanks .. however, I don't want to do $/${project.path}/Components because there's a 
whole bunch on directories under there and I only want to check out about 5.  I could 
script 5 checkouts, which I don't mind .. however, I was planning to use the fileset, 
or something like it, so that I can minimize the coding.  

Felice

-----Original Message-----
From: Gifford, Noel [mailto:[EMAIL PROTECTED]
Sent: Friday, July 23, 2004 6:33 PM
To: Felice Vittoria; Nant-Users (E-mail)
Subject: RE: [Nant-users] Possible to do many checkouts with 1
vsscheckout task


Felice,

Fileset is not a valid element of vsscheckout.  The path attribute is
required.

The script below has the potential to cause problems by overwriting
files since both the dir1 and dir2 directories end up in C:\VSS\Test.
If the subdirectory structures of dir1 and dir2 are similar/same then
you have a mess.

Other than the fact that it probably includes too many files, why can't
you do path="$/${project.branch}/Components"

Noel

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Felice
Vittoria
Sent: Friday, July 23, 2004 3:38 PM
To: Nant-Users (E-mail)
Subject: [Nant-users] Possible to do many checkouts with 1 vsscheckout
task

Hello,

I am trying to checkout multiple directories with 1 vsscheckout task.
So .. I have something like this:

<vsscheckout localpath="C:\VSS\Test"
                 recursive="true" replace="true" writable="true"
dbpath="${vss.dbpath}" user="${vss.user}" verbose="true">
        <fileset>
                <include name="$/${project.branch}/Components/dir1" />
                <include name="$/${project.branch}/Components/dir2" />
        </fileset>
</vsscheckout>

When I try this out I will get the following error:
'path' is a required attribute of <vsscheckout ... />

I was wondering .. can something like this be done?  If so, what am I
doing wrong?  If not, then I guess I'll submit a feature request. 

Thanks,
Felice


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idG21&alloc_id040&op=ick
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users


-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idG21&alloc_id040&op=click
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to