diff --git a/.iss/CodeDependencies.iss b/.iss/CodeDependencies.iss index f090ab64..587f7d88 100644 --- a/.iss/CodeDependencies.iss +++ b/.iss/CodeDependencies.iss @@ -416,11 +416,11 @@ end; procedure Dependency_AddDotNet70; begin // https://dotnet.microsoft.com/download/dotnet/7.0 - if not Dependency_IsNetCoreInstalled('Microsoft.NETCore.App 7.0.9') then begin + if not Dependency_IsNetCoreInstalled('Microsoft.NETCore.App 7.0.10') then begin Dependency_Add('dotnet70' + Dependency_ArchSuffix + '.exe', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', - '.NET Runtime 7.0.9' + Dependency_ArchTitle, - Dependency_String('https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x64.exe'), + '.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'), '', False, False); end; end; @@ -428,11 +428,11 @@ end; procedure Dependency_AddDotNet70Asp; begin // https://dotnet.microsoft.com/download/dotnet/7.0 - if not Dependency_IsNetCoreInstalled('Microsoft.AspNetCore.App 7.0.9') then begin + if not Dependency_IsNetCoreInstalled('Microsoft.AspNetCore.App 7.0.10') then begin Dependency_Add('dotnet70asp' + Dependency_ArchSuffix + '.exe', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', - 'ASP.NET Core Runtime 7.0.9' + Dependency_ArchTitle, - Dependency_String('https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x64.exe'), + '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'), '', False, False); end; end; @@ -440,11 +440,11 @@ end; procedure Dependency_AddDotNet70Desktop; begin // https://dotnet.microsoft.com/download/dotnet/7.0 - if not Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 7.0.9') then begin + if not Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 7.0.10') then begin Dependency_Add('dotnet70desktop' + Dependency_ArchSuffix + '.exe', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', - '.NET Desktop Runtime 7.0.9' + Dependency_ArchTitle, - Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x64.exe'), + '.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'), '', False, False); end; end;