Skip to content

Commit

Permalink
Fix: Link to 2022 C++ redists instead of 2019
Browse files Browse the repository at this point in the history
Updates the akams link to v17 with 2022 names in RedistributableDependency.cs

Resolves #506
  • Loading branch information
dreamsyntax committed Nov 30, 2024
1 parent 67ce4f6 commit 74b7342
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public Task<string[]> GetUrlsAsync()
switch (Architecture)
{
case Architecture.Amd64:
return Task.FromResult(new []{ "https://aka.ms/vs/16/release/VC_redist.x64.exe" });
return Task.FromResult(new []{ "https://aka.ms/vs/17/release/vc_redist.x64.exe" });
case Architecture.x86:
return Task.FromResult(new [] { "https://aka.ms/vs/16/release/VC_redist.x86.exe" });
return Task.FromResult(new [] { "https://aka.ms/vs/17/release/vc_redist.x86.exe" });
default:
throw new NotSupportedException();
}
Expand Down

0 comments on commit 74b7342

Please sign in to comment.