-
Notifications
You must be signed in to change notification settings - Fork 4
/
Setup.iss
51 lines (42 loc) · 1.85 KB
/
Setup.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "DynaWin"
#define MyAppVersion "1.1.1"
#define MyAppPublisher "ClickPhase"
#define MyAppURL "https://clickphase.vercel.app/dynawin"
#define MyAppExeName "DynaWin.exe"
[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={{EC36A1B5-7473-4F76-9D82-61DB6249B906}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
DisableWelcomePage=no
DisableDirPage=no
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName=C:\Program Files (x86)\DynaWin
DisableProgramGroupPage=yes
LicenseFile=C:\Users\fligh\source\repos\DynaWin\COMBINED-LICENSES.txt
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputDir=C:\Users\fligh\source\repos\DynaWin
OutputBaseFilename=DynaWin_1.1.1_Setup
SetupIconFile=C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\Resources\icon.ico
Compression=lzma
SolidCompression=yes
WizardStyle=modern
VersionInfoVersion = 1.1.1
UninstallDisplayIcon={app}\DynaWin.exe
UninstallDisplayName=DynaWin
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Files]
Source: "C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\fligh\source\repos\DynaWin\DynaWin\bin\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
[UninstallRun]
Filename: "{cmd}"; Parameters: "/C ""taskkill /im {#MyAppExeName} /f /t"; RunOnceId: "Uninstall"