When the mouse hovers over the .msi file, a tooltip should popup that shows the version of the application:
I want to display version number within this description box so what can I add in my code so that I got this version number in this box when I hover over the .msi file.
PUT-GUID-HERE: For all samples, replace "PUT-GUID-HERE" with a GUID. You can generate one here: https://www.guidgenerator.com/
There could be an easier way to do this, but it seems to be possible to "re-purpose" the
Comments attribute
in the Package element for this - here is a snippet, the relevant part is the "Comments" attribute:Screen shot:
Full Sample:
Now using a preprocessor define entry to allow version number to be set once and applied wherever needed - the
$(var.MyVersion)
markup will expand to the version number in the define statement (allowing a single location to update the version number provided the markup is up to date everywhere in the source):Snippets:
Full Sample: