Created
July 27, 2012 01:54
-
-
Save lextm/3185759 to your computer and use it in GitHub Desktop.
Inno Setup script sample for advanced part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define MyAppID "{F768F6BA-F164-4599-BC26-DCCFC2F76855}" | |
#define MyAppCopyright "Copyright (C) 2005-2007 Lex Li and other contributors." | |
#define MyAppName "Code Beautifier Collection" | |
#define MyAppVersion GetFileVersion("..\bin\release\Lextm.CodeBeautifierCollection.Framework.dll") | |
[Setup] | |
AppName={#MyAppName} | |
AppVerName={#MyAppName} | |
AppPublisher=Lex Li (lextm) | |
AppPublisherURL=http://lextm.com | |
AppSupportURL=http://lextm.com | |
AppUpdatesURL=http://code.google.com/p/lextudio | |
DefaultDirName={pf}\{#MyAppName} | |
DefaultGroupName={#MyAppName} | |
AllowNoIcons=true | |
InfoAfterFile=After.txt | |
OutputDir=. | |
SolidCompression=true | |
AppCopyright={#MyAppCopyright} | |
VersionInfoVersion={#MyAppVersion} | |
VersionInfoCompany=LeXtudio | |
VersionInfoDescription={#MyAppName} Setup | |
VersionInfoTextVersion=GrapeVine | |
InternalCompressLevel=max | |
VersionInfoCopyright={#MyAppCopyright} | |
Compression=zip | |
PrivilegesRequired=admin | |
ShowLanguageDialog=yes | |
LicenseFile=License.txt | |
WindowVisible=false | |
AppVersion={#MyAppVersion} | |
AppID={{#MyAppID} | |
UninstallDisplayName={#MyAppName} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment