How to make Product Version property match executable's version number automatically
I have an InstallShield project with 2 executable's. How do 开发者_C百科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!!
In your auto build script, you can set the ProductVersion property. For example :
<InstallShieldPropertyOverrides Include="$(MSIProductCode)">
<Property>ProductCode</Property>
</InstallShieldPropertyOverrides>
精彩评论