> > ----- Original Message -----
> > From: "Castro, Edwin Gabriel (Firing Systems Engr.)" 
> <[EMAIL PROTECTED]>
> > To: "Nant-Users" <[EMAIL PROTECTED]>
> > Sent: Saturday, July 24, 2004 1:50 AM
> > Subject: [Nant-users] <copy> task using <fileset>
> > 
> > 
> > I'm trying to do the following:
> > 
> > <target name="copyfile">
> > <copy todir="C:\ToDir\Path">
> > <fileset base="C:\Base\Path">
> > <include name="filename.txt" />
> > </fileset>
> > </copy>
> > </target>
> > 
> > Nothing happens. The only output is get is:
> > 
> > copyfile:
> > 
> > and nothing else. I'm using the nightly build from 7/11/2004:

I think you might want:

<fileset basedir="C:\Base\Path">
...
</fileset>

It's probably copying nothing because it's looking in the project
basedir and not finding filename.txt


-T

Disclaimer Message:

This message contains confidential information and is intended only for the 
individual(s) named.  If you are not the named addressee you should not disseminate, 
distribute or copy this e-mail. Please immediately delete it and all copies of it from 
your system, destroy any hard copies of it, and notify the sender. E-mail transmission 
cannot be guaranteed to be secure or error-free as information could be intercepted, 
corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. To the 
maximum extent permitted by law, Immersive Technologies Pty. Ltd. does not accept 
liability for any errors or omissions in the contents of this message which arise as a 
result of e-mail transmission.


-------------------------------------------------------
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