如何使产品版本属性自动匹配可执行文件的版本号

时间:2021-10-10 06:49:41

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.

我有一个带有2个可执行文件的InstallShield项目。如何更改InstallShield的常规信息中的产品版本属性以匹配我的可执行文件的版本号之一。我正在使用自动构建。

Thanks in advance!!

提前致谢!!

1 个解决方案

#1


0  

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

在自动构建脚本中,您可以设置ProductVersion属性。例如 :

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

#1


0  

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

在自动构建脚本中,您可以设置ProductVersion属性。例如 :

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