I made my WIX install option, upgrade so that it removes previous DLLs, However when I go into Control Panel, and go to the Add/Remove Programs section, the previous version is still present.
How do I remove this previous icon from this Add/Remove section?
.....
In response to the comment below Sorry I still cant get this to work, previous versions still show in the Add/Remove Programs section when I upgrade, Here is some code
I did have Id initially to "*" but now I just change Product ID when I make my next build
<Upgrade Id="$(var.UpgradeCode)">
<UpgradeVersion Minimum="$(var.ProductVersion)" OnlyDetect="yes" Property="NEWERVERSIONDETECTED"/>
<UpgradeVersion Minimum="1.0.0"
IncludeMinimum="yes"
OnlyDetect="no"
Maximum="$(var.ProductVersion)"
IncludeMaximum="no"
Property="PREVIOUSVERSIONSINSTALLED" />
</Upgrade>