How to make Version Version property match version number automatically

I have an InstallShield project with 2 executables. How to change the product version property in the InstallShield general information to match one of my executable version numbers. I use automatic builds.

Thanks in advance!

+3
source share
1 answer

In your auto-build script, you can set the ProductVersion property. For instance:

<InstallShieldPropertyOverrides Include="$(MSIProductCode)">
  <Property>ProductCode</Property>
</InstallShieldPropertyOverrides>
0
source

Source: https://habr.com/ru/post/1772193/


All Articles