inno: updated dotnet to v7.0.13.

This commit is contained in:
Shreyas Zare
2023-10-29 22:44:08 +05:30
parent 2b11ac24bf
commit a2e134130e

View File

@@ -310,7 +310,7 @@ var
ResultCode: Integer; ResultCode: Integer;
begin begin
Result := false; Result := false;
Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.AspNetCore.App 7.0.10"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.AspNetCore.App 7.0.13"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
if ResultCode = 0 then if ResultCode = 0 then
begin begin
Result := true; Result := true;
@@ -322,7 +322,7 @@ var
ResultCode: Integer; ResultCode: Integer;
begin begin
Result := false; Result := false;
Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.WindowsDesktop.App 7.0.10"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.WindowsDesktop.App 7.0.13"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
if ResultCode = 0 then if ResultCode = 0 then
begin begin
Result := true; Result := true;
@@ -336,8 +336,8 @@ begin
begin begin
AddDependency('aspdotnet70' + GetArchitectureSuffix + '.exe', AddDependency('aspdotnet70' + GetArchitectureSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'ASP.NET Core Runtime 7.0.10' + GetArchitectureTitle, 'ASP.NET Core Runtime 7.0.13' + GetArchitectureTitle,
GetString('https://download.visualstudio.microsoft.com/download/pr/71f8f5e4-8e6d-493b-b16f-96c6fa34336a/8be06fb14a04a1c1383161c64e7e359b/aspnetcore-runtime-7.0.10-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/f1777e79-21d8-4ed8-a529-3f212f4b5262/e685f2224f7140dc10bc0e0b47827e3a/aspnetcore-runtime-7.0.10-win-x64.exe'), GetString('https://download.visualstudio.microsoft.com/download/pr/6db4150d-11f3-4c21-b2c6-c81d5e6243db/3707dcce96dae59516a7679953df1ace/aspnetcore-runtime-7.0.13-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/2047544d-b948-480e-a4ce-2d5276d906dc/010c6e5c6b822dc2121c1d23f0820cf6/aspnetcore-runtime-7.0.13-win-x64.exe'),
'', False, False, False); '', False, False, False);
end; end;
@@ -345,8 +345,8 @@ begin
begin begin
AddDependency('dotnet70desktop' + GetArchitectureSuffix + '.exe', AddDependency('dotnet70desktop' + GetArchitectureSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'.NET Desktop Runtime 7.0.10' + GetArchitectureTitle, '.NET Desktop Runtime 7.0.13' + GetArchitectureTitle,
GetString('https://download.visualstudio.microsoft.com/download/pr/9812249d-fc42-41ab-bd2e-6e858d5dd5a7/95fa5a1a77eace4482bcb98ede190003/windowsdesktop-runtime-7.0.10-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/747f4a98-2586-4bc6-b828-34f35e384a7d/44225cfd9d365855ec77d00c4812133c/windowsdesktop-runtime-7.0.10-win-x64.exe'), GetString('https://download.visualstudio.microsoft.com/download/pr/84986c79-dd13-4bbc-abef-294638d5864a/75d29754580986fef26b5d64ec880075/windowsdesktop-runtime-7.0.13-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/515cc796-e9f2-4b5c-be7f-b42f115a65a7/b0b146fcbf1d1c135807ff24b3d88093/windowsdesktop-runtime-7.0.13-win-x64.exe'),
'', False, False, False); '', False, False, False);
end; end;
end; end;