| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ; Script generated by the Inno Setup Script Wizard.
- ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
- ; Non-commercial use only
- #define MyAppName "setup"
- #define MyAppVersion "1.0"
- #define MyAppPublisher "My Company, Inc."
- #define MyAppExeName "pract.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={{FB5E5DF1-19EB-48E2-A0E3-8F5D8B5C13D6}
- AppName={#MyAppName}
- AppVersion={#MyAppVersion}
- ;AppVerName={#MyAppName} {#MyAppVersion}
- AppPublisher={#MyAppPublisher}
- DefaultDirName={autopf}\{#MyAppName}
- UninstallDisplayIcon={app}\{#MyAppExeName}
- DisableProgramGroupPage=yes
- ; Remove the following line to run in administrative install mode (install for all users).
- PrivilegesRequired=lowest
- OutputBaseFilename=mysetup
- SolidCompression=yes
- WizardStyle=modern dynamic
- [Languages]
- Name: "english"; MessagesFile: "compiler:Default.isl"
- Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
- [Files]
- Source: "C:\Users\Nastya\OneDrive\Рабочий стол\c#\практика2026\pract\bin\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
- ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
- Source: "C:\Users\Nastya\OneDrive\Рабочий стол\c#\практика2026\pract\bin\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
- [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
|