Skip to content

Commit

Permalink
Use proper links to .net core 3 desktop runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo committed Sep 24, 2019
1 parent ab05e6f commit 1b62d02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Setup Script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ Filename: "schtasks"; Parameters: "/DELETE /F /TN ""Outlook on the Desktop"""; F
[Code]
const
//switch to these on final release. At the moment they don't work
dotnetCore3x64Url = 'https://dotnetcli.blob.core.windows.net/dotnet/Runtime/release/3.0/windowsdesktop-runtime-latest-win-x64.exe';
dotnetCore3x86Url = 'https://dotnetcli.blob.core.windows.net/dotnet/Runtime/release/3.0/windowsdesktop-runtime-latest-win-x86.exe';
dotnetCore3x64Filename = 'windowsdesktop-runtime-latest-win-x64.exe';
dotnetCore3x86Filename = 'windowsdesktop-runtime-latest-win-x86.exe';
dotnetCore3x64Url = 'https://download.visualstudio.microsoft.com/download/pr/fe9d105b-5d40-4f12-b238-6b6e1af9f812/341fc13950347d95fef8522cb3d77009/windowsdesktop-runtime-3.0.0-win-x64.exe';
dotnetCore3x86Url = 'https://download.visualstudio.microsoft.com/download/pr/03f6f2e1-bc0f-4185-b5c2-8399d5b3aac4/96f0664754609069159b7acd19772c77/windowsdesktop-runtime-3.0.0-win-x86.exe';
dotnetCore3x64Filename = 'windowsdesktop-runtime-3.0.0-win-x64.exe';
dotnetCore3x86Filename = 'windowsdesktop-runtime-3.0.0-win-x86.exe';
procedure InitializeWizard;
begin
Expand Down

0 comments on commit 1b62d02

Please sign in to comment.