How to make Product Version property match executable's version number automatically

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-07 09:30:20

问题


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!!


回答1:


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

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


来源:https://stackoverflow.com/questions/4055831/how-to-make-product-version-property-match-executables-version-number-automatic

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!