Skip to content

Commit

Permalink
Update to WinAppSdk 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DHancock committed Sep 20, 2023
1 parent 9974e09 commit c6e4c6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SudokuSolver/Installer/inno_script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ begin
if not FileExists(ExeFilePath) then
ExtractTemporaryFile('CheckWinAppSdk.exe');
// WinAppSdk 1.4.0 is 4000.964.11.0
// Check for any 1.4.n version where n >= 0
// WinAppSdk 1.4.1 is 4000.986.611.0
// Check for any 1.4.n version where n >= 1
if not Exec(ExeFilePath, '4000.964.11.0' + ' ' + GetPlatformParamStr, '', SW_HIDE, ewWaitUntilTerminated, ResultCode) then
if not Exec(ExeFilePath, '4000.986.611.0' + ' ' + GetPlatformParamStr, '', SW_HIDE, ewWaitUntilTerminated, ResultCode) then
Log('Exec CheckWinAppSdk.exe failed: ' + SysErrorMessage(ResultCode));
Result := ResultCode = 0;
Expand Down
2 changes: 1 addition & 1 deletion SudokuSolver/SudokuSolver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.18-beta">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.230822000" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.230913002" />
<!-- the build tools are only required for packaged builds to run...
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.755" />
-->
Expand Down

0 comments on commit c6e4c6f

Please sign in to comment.