I'm building a WiX project to install a custom package. My product looks like this:
<Product
Name="My custom project"
... />
So when I'm using the WiX installer, I can see the Selected name
on my screens and whenever Wix uses the name to display.
Under add/remove programs, I can see the same name specified under Name
tag. But I want it to look different, as:
My custom project v1.0
As far as I've seen, as Rob Menching mentioned here, the way to do so will be modify my .wxs screen files to modify the [ProductName]
tag and substitute it with my own selection.
I wonder if there is an easier and shorter way, for example, using my custom ARPINFO
configurations, like the ones posted here to modify the name that appears under add/remove programs list.
Does anyone know how to solve this?