Warning, /frameworks/syntax-highlighting/autotests/input/setup.iss is written in an unsupported language. File is not indexed.

0001 ; Example Inno Setup script
0002 
0003 #include "external.iss"
0004 
0005 [Setup]
0006 AppName=Example Application
0007 AppVersion=1.2.3
0008 AppPublisher=example.com
0009 AppPublisherURL=http://www.example.com/
0010 WizardStyle=modern
0011 DefaultDirName={autopf}\Example Application
0012 DefaultGroupName=Example Application
0013 Compression=lzma2/max
0014 SolidCompression=yes
0015 Uninstallable=not PortableCheck
0016 UninstallDisplayIcon={app}\Compil32.exe
0017 LicenseFile=license.txt
0018 #ifdef SIGNTOOL
0019 SignTool=issigntool
0020 SignTool=issigntool256
0021 SignedUninstaller=yes
0022 #endif
0023 
0024 [Files]
0025 Source: "license.txt"; DestDir: "{app}"; Flags: ignoreversion touch
0026 Source: "files\MyApp.exe"; DestDir: "{app}"; Flags: ignoreversion signonce touch
0027 
0028 [Code]
0029 function PortableCheck: Boolean;
0030 begin
0031   Result := ExpandConstant('{param:portable|0}') = '1';
0032 end;