I am building an installer for a Ruby application using releasy. It creates an installer that creates a windows executable(i.e. launcher) for the application and one for the uninstaller. I would like to use different icons for the launcher and the uninstaller. I can't quite figure out how to do this. In my releasy project I think I have told it about the icon I wan't to use...
Releasy::Project.new do
files ['*.rb', 'media/splash.png', 'media/uninstall.ico']
...
end
I have redefined WindowsInstaller#generate_installer_script
to read,
UninstallDisplayIcon={app}\\uninstall.ico
in the relevant place.
Still no joy. I'm guessing that I'm not putting my icon in a place where it can be used but I'm not really sure what else to try doing.