How show version number in title of installation in WIX?

前端 未结 2 1958
Happy的楠姐
Happy的楠姐 2021-01-06 08:30

I need to display the version number in the title along with the application name.

Currently, it looks like

Here is my wix snippet:

         


        
2条回答
  •  囚心锁ツ
    2021-01-06 08:47

    WiX UI extension doesn't allow this type of customization. Your two chances would be

    1) define Name="Test Application $(var.ProductVersion)" (Side effect. version listed in programs and features twice

    2) Stop using the WiXUI extension and instead clone all the code from https://github.com/wixtoolset/wix3/tree/develop/src/ext/UIExtension/wixlib into your project.

提交回复
热议问题