1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Set an icon for the MSI package's entry in Add/Remove Programs.

It would be nicer if we could also make this show up as the icon for
the .msi file itself when viewed in Explorer, but apparently nothing
can change that. But at least this still gives us _some_ use for the
cardboard-box icon :-)
This commit is contained in:
Simon Tatham 2016-03-20 16:01:36 +00:00
parent 87683b6377
commit a7e363402f

View File

@ -448,5 +448,14 @@
<WixVariable Id="WixUIDialogBmp" Value="msidialog.bmp" />
<WixVariable Id="WixUIBannerBmp" Value="msibanner.bmp" />
<!--
Set the icon that will show up in Add/Remove Programs.
http://www.codeproject.com/Articles/43564/WiX-Tricks says that
for some weird reason the Id of this icon has to end in .exe.
-->
<Icon Id="installericon.exe" SourceFile="puttyins.ico" />
<Property Id="ARPPRODUCTICON" Value="installericon.exe" />
</Product>
</Wix>