On Fri, Feb 26, 2010 at 5:26 AM, jo...@msli.com <jo...@msli.com> wrote:

> My .wxs file contains the following line:
>  <Property Id="ARPPRODUCTICON" Value='.\resources\MyApp.ico' />
>


You need to set the path to the icon inside an <Icon> element and give it a
unique id. Then use the icon id inside your property tag.
    <Icon Id='MyApp.ico' SourceFile=".\resources\MyApp.ico"/>
    <Property Id="ARPPRODUCTICON" Value="MyApp.ico" />
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to