Skip to content

Commit 840f5dc

Browse files
committed
Fix: Update INNO installer file paths.
1 parent 7d4c0cc commit 840f5dc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,3 +399,4 @@ FodyWeavers.xsd
399399
# JetBrains Rider
400400
*.sln.iml
401401
.idea/*
402+
*.exe

CodeIngest.Desktop/InnoSetupProject/InstallScript.iss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
#define MyAppName "Code Ingest"
2-
#define MyAppExeName "CodeIngest.Desktop.exe"
2+
#define MyAppExeName "CodeIngest.exe"
33

44
[Setup]
55
AppId={{CA3E4B28-314A-451F-ED15-8777E28DBDE4}
66
AppName={#MyAppName}
77
AppVersion=1.0
88
AppPublisher=Dean Edis
99
AppPublisherURL=https://github.com/deanthecoder/CodeIngest
10-
DefaultDirName={commonpf}\CodeIngest
10+
DefaultDirName={commonpf64}\CodeIngest
1111
DefaultGroupName={#MyAppName}
1212
UninstallDisplayIcon={app}\{#MyAppExeName}
1313
Compression=lzma2
1414
SolidCompression=yes
15-
SourceDir=..\CodeIngest.Desktop\
16-
OutputDir=..\InnoSetupProject\
15+
SourceDir=..\
16+
OutputDir=.\InnoSetupProject\
1717
OutputBaseFilename={#MyAppName} Installer
1818

1919
[Tasks]
2020
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
2121

2222
[Files]
23-
Source: "bin\Release\net9.0\publish\win-x64\*.*"; DestDir: "{app}"; Excludes: "*.pdb"; Flags: ignoreversion
23+
Source: "bin\Release\net9.0\win-x64\publish\*.*"; DestDir: "{app}"; Excludes: "*.pdb"; Flags: ignoreversion
2424

2525
[Icons]
2626
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"

0 commit comments

Comments
 (0)