-
Notifications
You must be signed in to change notification settings - Fork 15
/
win-x64-install.iss
33 lines (33 loc) · 1.33 KB
/
win-x64-install.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#define MyAppName "Asv.Drones"
#define MyAppVersion "0.2.2"
#define MyAppPublisher "Asv.Soft LLC"
#define MyAppURL "https://www.asv.me"
#define MyAppExeName "asv-drones-win-x64.exe"
[Setup]
AppId={{C5CE850B-61D6-417A-8855-AD02C9BEA9FD}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile=License
OutputDir=publish\win-x64
OutputBaseFilename=asv-drones-win-x64-install
SetupIconFile=src\Asv.Drones.Gui\Assets\icon.ico
Compression=lzma
SolidCompression=yes
WizardStyle=modern
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "publish\win-x64\app\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent