How can I dynamically set my product name in my product.wxs file?
My idea was to create a custom dialog where the user can choose between either 2015
, 2016
or 2017
via radio buttons.
The year is supposed to be the suffix for my product name:
<Product Id="*"
Name="BlaBla 2015"
Language="1033"
Version="$(var.SomePluginVersion)"
Manufacturer="MyCompany"
UpgradeCode="{SOME-GUID}">
I guess the custom dialog has to set a preprocessor variable so the product name can be defined before the actual installation process. But how would I do that?