1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 09:31:19 +01:00
Files
inno-setup/scripts/test.iss
Minionguyjpro 032a94afdb Update test.iss
2023-12-10 14:40:22 +01:00

27 lines
810 B
Plaintext

; Test script to test the GitHub action.
#define MyAppName "My Test Application"
#define MyAppVersion "1.0.0"
#define MyAppPublisher "Minionguyjpro"
#define MyAppExeName "MyTestApp.exe"
#define MyAppAssocName MyAppName + ""
#define MyAppAssocExt ".exe"
#define MyAppAssocKey StringChange(MyAppAssocName, " ", "") + MyAppAssocExt
[Setup]
AppId={{28B07C0D-2BDE-4C64-B083-959BAAE5FECF}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={autopf}\{#MyAppName}
OutputDir=D:\a\Inno-Setup-Action\Inno-Setup-Action\
ChangesAssociations=yes
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
;PrivilegesRequired=lowest
OutputBaseFilename=MyTestApp-setup
Compression=lzma
SolidCompression=yes
WizardStyle=modern