Skip to content

Commit

Permalink
CodeDependencies: Bump .NET 8 to 8.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Apr 10, 2024
1 parent 5e8fba7 commit 2d8aa43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .iss/CodeDependencies.iss
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ var
IsProductInstalled: Boolean;
begin
try
IsProductInstalled := Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 8.0.3')
IsProductInstalled := Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 8.0.4')
except
IsProductInstalled := False
end;
Expand All @@ -263,8 +263,8 @@ begin
if not IsProductInstalled then begin
Dependency_Add('dotnet80desktop' + Dependency_ArchSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart ' + Dependency_SilentParameter('', '/quiet'),
'.NET Desktop Runtime 8.0.3' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x64.exe'),
'.NET Desktop Runtime 8.0.4' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x64.exe'),
'', False, False);
end;
end;
Expand Down

0 comments on commit 2d8aa43

Please sign in to comment.