inno: dotnet updated to v8.0.13.

This commit is contained in:
Shreyas Zare
2025-02-15 15:53:39 +05:30
parent 3c89e23f08
commit 54fc39e0a8

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 8.0.12"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.AspNetCore.App 8.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 8.0.12"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); Exec('cmd.exe', '/c dotnet --list-runtimes | find /n "Microsoft.WindowsDesktop.App 8.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('aspdotnet80' + GetArchitectureSuffix + '.exe', AddDependency('aspdotnet80' + GetArchitectureSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'ASP.NET Core Runtime 8.0.12' + GetArchitectureTitle, 'ASP.NET Core Runtime 8.0.13' + GetArchitectureTitle,
GetString('https://download.visualstudio.microsoft.com/download/pr/dac8c971-de4e-4697-b08e-a601d42caae1/e93f55b140739da2392222946569f6a6/aspnetcore-runtime-8.0.12-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/462a0410-741f-4368-a3eb-9014e33d83be/fe802ebd409a3a1c8d2646c2ce546997/aspnetcore-runtime-8.0.12-win-x64.exe'), GetString('https://download.visualstudio.microsoft.com/download/pr/b11da59f-561b-466b-bfa8-d2dfc9b5bf48/f8dce6a44fd7be61ff97fe4949e57015/aspnetcore-runtime-8.0.13-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/86b8931f-09f6-4fce-b546-8139350da0c4/d6a5f16bcf81e0b5e9a733b892b1240f/aspnetcore-runtime-8.0.13-win-x64.exe'),
'', False, False, False); '', False, False, False);
end; end;
@@ -345,8 +345,8 @@ begin
begin begin
AddDependency('dotnet80desktop' + GetArchitectureSuffix + '.exe', AddDependency('dotnet80desktop' + GetArchitectureSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart', '/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart',
'.NET Desktop Runtime 8.0.12' + GetArchitectureTitle, '.NET Desktop Runtime 8.0.13' + GetArchitectureTitle,
GetString('https://download.visualstudio.microsoft.com/download/pr/acf6e5d3-1e2f-4072-833c-fa84a10841c5/acd48342207247f404a5aaa58d1a1ea1/windowsdesktop-runtime-8.0.12-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/f1e7ffc8-c278-4339-b460-517420724524/f36bb75b2e86a52338c4d3a90f8dac9b/windowsdesktop-runtime-8.0.12-win-x64.exe'), GetString('https://download.visualstudio.microsoft.com/download/pr/b1827c52-ec83-4b3e-8d24-f321276bcdea/812e8d5871111cdc02cc82209c7d45fd/windowsdesktop-runtime-8.0.13-win-x86.exe', 'https://download.visualstudio.microsoft.com/download/pr/fc8c9dea-8180-4dad-bf1b-5f229cf47477/c3f0536639ab40f1470b6bad5e1b95b8/windowsdesktop-runtime-8.0.13-win-x64.exe'),
'', False, False, False); '', False, False, False);
end; end;
end; end;