Skip to content

Commit

Permalink
Merge pull request #197 from DHancock/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
DHancock authored Sep 18, 2023
2 parents d6c4cf9 + 3f6c658 commit f99d759
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions SudokuSolver/Installer/inno_script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
; Inno 6.2.2

#define appDisplayName "Sudoku Solver"
#define appVer "1.6.0"
#define appName "SudokuSolver"
#define appExeName appName + ".exe"
#define appVer RemoveFileExt(GetFileVersion("..\bin\x64\Release\publish\" + appExeName))
#define appId "sudukosolver.8628521D92E74106"

[Setup]
Expand Down Expand Up @@ -335,10 +335,10 @@ begin
if not FileExists(ExeFilePath) then
ExtractTemporaryFile('CheckWinAppSdk.exe');
// WinAppSdk 1.3.1 is 3000.851.1712.0
// Check for any 1.3.n version where n >= 1
// WinAppSdk 1.4.0 is 4000.964.11.0
// Check for any 1.4.n version where n >= 0
if not Exec(ExeFilePath, '3000.851.1712.0' + ' ' + GetPlatformParamStr, '', SW_HIDE, ewWaitUntilTerminated, ResultCode) then
if not Exec(ExeFilePath, '4000.964.11.0' + ' ' + GetPlatformParamStr, '', SW_HIDE, ewWaitUntilTerminated, ResultCode) then
Log('Exec CheckWinAppSdk.exe failed: ' + SysErrorMessage(ResultCode));
Result := ResultCode = 0;
Expand Down
4 changes: 2 additions & 2 deletions SudokuSolver/SudokuSolver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<ApplicationIcon>Resources\app.ico</ApplicationIcon>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<PackageIcon>app.ico</PackageIcon>
<AssemblyVersion>1.6.0</AssemblyVersion>
<FileVersion>1.6.0</FileVersion>
<AssemblyVersion>1.7.0</AssemblyVersion>
<FileVersion>1.7.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit f99d759

Please sign in to comment.