gpt4 book ai didi

inno-setup - 如何根据我的应用程序版本自动设置 Inno Setup 安装程序的版本?

转载 作者:行者123 更新时间:2023-12-03 05:45:51 29 4
gpt4 key购买 nike

我正在使用 Inno Setup 来生成我的应用程序的安装程序。如何设置 Inno 生成的 setup.exe (VersionInfoVersion) 的版本号自动与我的应用程序的版本号匹配?现在,每次部署应用程序的新版本时,我都需要手动更新版本号。

现在我正在这样做:

[Setup]
VersionInfoVersion=1.2.2.0 //writing the value manually

我想要这样的东西:

[Setup]
VersionInfoVersion={Get the version of my app}

最佳答案

您可以像这样使用 Inno Setup Preprocessor GetVersionNumbersString 函数

#define ApplicationName 'Application Name'
#define ApplicationVersion GetVersionNumbersString('Application.exe')
[Setup]
AppName={#ApplicationName}
AppVerName={#ApplicationName} {#ApplicationVersion}
VersionInfoVersion={#ApplicationVersion}

关于inno-setup - 如何根据我的应用程序版本自动设置 Inno Setup 安装程序的版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6498750/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com