[NAnt-users] Help with exec

2011-04-29 Thread Chris Fouts
How can I as part of my arg in an exec? For example.. exec program=foo.exe commandline='-x arg value=c:\somefolder -option M/ /exec IOW, I want to execute the following command C:\foo.exe -x c:\somefolder -option M -chris ***This e-mail message is intended only for the above named

Re: [NAnt-users] Help with exec

2011-04-29 Thread Adam Bruss
exec program=foo.exe arg value=-x/ arg value=c:\somefolder/ arg value=-option/ arg value=quot;Mquot;/ /exec Try that. Adam Bruss Development Engineer AWR Corporation/Simulation Technology Applied Research 11520 N. Port Washington Rd., Suite 201 Mequon, WI 53092 USA P: 1.262.240.0291

Re: [NAnt-users] Help with exec

2011-04-29 Thread Pento, Michael
Hi Chris, Enclose it in quot; For example: exec program=foo.exe commandline=c:\somefolder -option quot;Mquot; / I hope this answered the question. Mike From: Chris Fouts [mailto:chris.fo...@caemilusa.com] Sent: Friday, April 29, 2011 9:28 AM To: nant-users@lists.sourceforge.net Subject: