On Tue, 19 Jun 2007, Dale Quigg <[EMAIL PROTECTED]> wrote:

> I'm new to Ant, so I didn't know that I needed to have my command
> invocation like this;
> 
>       <exec executable="${wix.dir}/light.exe"
>               dir="${iis_install.dir}">
>               <arg value="-ext"/>
>               <arg value="WixUIExtension"/>

...

> 
> Instead of this, which does *NOT* work (one can not combine
> arguments in the same arg value).

>       <exec executable="${wix.dir}/light.exe"
>               dir="${iis_install.dir}">
>               <arg value="-ext WixUIExtension -ext WixUtilExtension "

If you used <arg line="..."/> instead of the value attribute, Ant
would have split it as well.

BTW, there is some (very experimental) WiX support in Ant's dotnet
Antlib <http://ant.apache.org/antlibs/dotnet/index.html>

Stefan

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to