4

I have an InstallShield project with 2 executable's. How do I change the product version property in General Information of InstallShield to match one of my executable's version number. I'm using auto builds.

Thanks in advance!!

Justin Johnson
  • 30,978
  • 7
  • 65
  • 89
smd
  • 51
  • 1
  • 3

1 Answers1

0

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

<InstallShieldPropertyOverrides Include="$(MSIProductCode)">
  <Property>ProductCode</Property>
</InstallShieldPropertyOverrides>
Ajit Medhekar
  • 1,018
  • 1
  • 10
  • 39