Hi,
I've just made some modifications with regards to command line arguments. In the next 0.85 nightly build, you'll have the following options :
1. use the "value" attribute of the <arg> element. The value will be handled as a single command line argument.
for example :
<exec program="mkdir"> <arg value="c:\temp\test 1" /> </exec>
=> mkdir "c:\temp\test 1"
2. use the "path" attribute of the <arg> element. The value will be handled as a : or ; separated list of paths. Individual parts will be converted to an absolute path (resolved relative to project base directory).
for example :
<exec program="mkdir"> <arg path="test 1" /> </exec>
=> mkdir "<project base dir>\test 1"
Hope this helps,
Gert
----- Original Message ----- From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, September 18, 2004 12:41 AM
Subject: [Nant-users] containing " in value
Hi there,
How can I include " in a value?
ex: mkdir "c:\temp\test 1"
how to make up the commandline?
<exec program="mkdir" commandline=????? />
Thx
------------------------------------------------------- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users
