Inno设置 - 如何在设置悬停中更改版本?

时间:2017-12-18 14:55:48

标签: version inno-setup

我可以在Inno脚本中设置应用程序版本,并且可以在控制面板中正确显示。但是当我将鼠标悬停在安装文件本身上时,我没有得到正确的版本。它只显示为0.0.0.0。有什么区别?

enter image description here

如何更改悬停显示中的版本?你觉得我错过了什么?

1 个答案:

答案 0 :(得分:3)

VersionInfoVersion部分添加[Setup]指令:

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{93A88F3C-324F-4BAF-B14C-85E44C59742E}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DisableProgramGroupPage=yes
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
VersionInfoVersion=1.0.0.0