Skip to content

Commit

Permalink
Manually install .NET Framework 4.8 as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan committed Feb 28, 2019
1 parent e0d8f46 commit cae4510
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install:
{
Write-Host "Installing .NET Core SDK..." -ForegroundColor Cyan
Write-Host "Installing .NET Core 3.0.100-preview-010184 SDK..." -ForegroundColor Cyan
Write-Host "Downloading..."
Expand All @@ -29,7 +29,7 @@ install:
Write-Host "Installed" -ForegroundColor Green
Write-Host "Installing .NET Core runtime..." -ForegroundColor Cyan
Write-Host "Installing .NET Core 3.0.0-preview-27324-5 runtime..." -ForegroundColor Cyan
Write-Host "Downloading..."
Expand All @@ -45,6 +45,23 @@ install:
Write-Host "Installed" -ForegroundColor Green
Write-Host "Installing .NET Framework 4.8 Targeting Pack..." -ForegroundColor Cyan
Write-Host "Downloading..."
$exePath = "$env:TEMP\ndp48-devpack-enu.exe"
(New-Object Net.WebClient).DownloadFile('https://download.visualstudio.microsoft.com/download/pr/9854b5f2-2341-4136-ad7d-1d881ab8d603/e3a011f2a41a59b086f78d64e1c7a3fc/ndp48-devpack-enu.exe', $exePath)
Write-Host "Installing..."
cmd /c start /wait "$exePath" /quiet /norestart
del $exePath
Write-Host "Installed" -ForegroundColor Green
}
before_build:
- ps: nuget restore
Expand Down

0 comments on commit cae4510

Please sign in to comment.