Skip to content

Commit

Permalink
CodeDependencies: Bump .NET 7 to 7.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Sep 13, 2023
1 parent dc3e646 commit 207b9c9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .iss/CodeDependencies.iss
Original file line number Diff line number Diff line change
Expand Up @@ -416,35 +416,35 @@ end;
procedure Dependency_AddDotNet70;
begin
// https://dotnet.microsoft.com/download/dotnet/7.0
if not Dependency_IsNetCoreInstalled('Microsoft.NETCore.App 7.0.10') then begin
if not Dependency_IsNetCoreInstalled('Microsoft.NETCore.App 7.0.11') then begin
Dependency_Add('dotnet70' + Dependency_ArchSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'.NET Runtime 7.0.10' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x64.exe'),
'.NET Runtime 7.0.11' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x64.exe'),
'', False, False);
end;
end;
procedure Dependency_AddDotNet70Asp;
begin
// https://dotnet.microsoft.com/download/dotnet/7.0
if not Dependency_IsNetCoreInstalled('Microsoft.AspNetCore.App 7.0.10') then begin
if not Dependency_IsNetCoreInstalled('Microsoft.AspNetCore.App 7.0.11') then begin
Dependency_Add('dotnet70asp' + Dependency_ArchSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'ASP.NET Core Runtime 7.0.10' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x64.exe'),
'ASP.NET Core Runtime 7.0.11' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x64.exe'),
'', False, False);
end;
end;
procedure Dependency_AddDotNet70Desktop;
begin
// https://dotnet.microsoft.com/download/dotnet/7.0
if not Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 7.0.10') then begin
if not Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 7.0.11') then begin
Dependency_Add('dotnet70desktop' + Dependency_ArchSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'.NET Desktop Runtime 7.0.10' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x64.exe'),
'.NET Desktop Runtime 7.0.11' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x64.exe'),
'', False, False);
end;
end;
Expand Down

0 comments on commit 207b9c9

Please sign in to comment.