From 39028ffdb8bc6d4f68c1e6adbddd550491c3f41a Mon Sep 17 00:00:00 2001 From: Timo Schwarzer Date: Sun, 15 Dec 2024 12:04:57 +0100 Subject: [PATCH] Bump mimimal VC++ version to 14.42..34433 --- dependencies.iss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.iss b/dependencies.iss index 11bcb49..fcf3045 100644 --- a/dependencies.iss +++ b/dependencies.iss @@ -197,11 +197,11 @@ end; procedure Dependency_AddVCppRuntime; begin // https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist - if not IsMsiProductInstalled('{36F68A90-239C-34DF-B58C-64B30153CE35}', PackVersionComponents(14, 40, 33810, 0)) then begin + if not IsMsiProductInstalled('{36F68A90-239C-34DF-B58C-64B30153CE35}', PackVersionComponents(14, 42, 34433, 0)) then begin Dependency_Add('vcredist2022_64.exe', '/passive /norestart', 'Visual C++ 2015-2022 Redistributable (x64)', 'https://aka.ms/vs/17/release/vc_redist.x64.exe', '', False, False); end; -end; \ No newline at end of file +end;