add setup script
This commit is contained in:
parent
3c7828c270
commit
3f7450be67
2 changed files with 26 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -396,3 +396,6 @@ FodyWeavers.xsd
|
||||||
|
|
||||||
# JetBrains Rider
|
# JetBrains Rider
|
||||||
*.sln.iml
|
*.sln.iml
|
||||||
|
|
||||||
|
# Inno Setup
|
||||||
|
SetupFiles/
|
23
AFCExplorerSetup.iss
Normal file
23
AFCExplorerSetup.iss
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
[Setup]
|
||||||
|
AppName=AFCExplorer
|
||||||
|
AppPublisher=KawaiiZenbo
|
||||||
|
AppVerName=AFCExplorer
|
||||||
|
AppVersion=1.0.1
|
||||||
|
WizardStyle=modern
|
||||||
|
DefaultDirName={autopf}\AFCExplorer
|
||||||
|
DefaultGroupName=AFCExplorer
|
||||||
|
UninstallDisplayIcon={app}\AFCExplorer.exe
|
||||||
|
Compression=lzma2
|
||||||
|
SolidCompression=yes
|
||||||
|
OutputDir=.\SetupFiles
|
||||||
|
|
||||||
|
[Files]
|
||||||
|
Source: "AFCExplorer\bin\Release\*"; DestDir: "{app}"
|
||||||
|
Source: "AFCExplorer\bin\Release\win-x86\*"; DestDir: "{app}\win-x86"
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Name: "{group}\AFCExplorer"; Filename: "{app}\AFCExplorer.exe"
|
||||||
|
Name: "{commondesktop}\AFCExplorer"; Filename: "{app}\AFCExplorer.exe"; Tasks: desktopicon
|
||||||
|
|
||||||
|
[Tasks]
|
||||||
|
Name: desktopicon; Description: "Create a &desktop icon";
|
Loading…
Add table
Reference in a new issue