Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.NET Framework 4.8 support #2924

Closed
RalfKoban opened this issue Apr 25, 2019 · 6 comments
Closed

.NET Framework 4.8 support #2924

RalfKoban opened this issue Apr 25, 2019 · 6 comments

Comments

@RalfKoban
Copy link

It would be great if the .NET Framework 4.8 is supported on the build machines.
That would allow me to update my projects to .NET 4.8 without breaking the build.

@xt0rted
Copy link

xt0rted commented Apr 25, 2019

@SeppPenner
Copy link

Same here, this would be a great feature...

@msallin
Copy link

msallin commented Jun 11, 2019

Is there a timeline?

@IlyaFinkelshteyn
Copy link
Contributor

Sorry guys for delay. We plan images update for the next week. Meanwhile please use this workaround (consumes about 3 minutes of the build):

install:
- ps: |
    function install-devpack ($version, $location) {
        Write-Host ".NET Framework $($version) Developer Pack..." -ForegroundColor Cyan
        Write-Host "Downloading..."
        $exePath = "$env:TEMP\$($version)-devpack.exe"
        (New-Object Net.WebClient).DownloadFile($location, $exePath)
        Write-Host "Installing..."
        cmd /c start /wait "$exePath" /quiet /norestart
        del $exePath
        Write-Host "Installed" -ForegroundColor Green
    }
    install-devpack -version "4.8" -location "https://download.visualstudio.microsoft.com/download/pr/7afca223-55d2-470a-8edc-6a1739ae3252/c8c829444416e811be84c5765ede6148/ndp48-devpack-enu.exe"
    Write-Host "Restarting build VM..."
    sleep 5
    Restart-Computer -Force
    sleep 5
    Write-Host "Restarted" -ForegroundColor Green

@alexrp
Copy link

alexrp commented Jul 2, 2019

Just checking since it's been 2 weeks, what's the status on this issue?

@IlyaFinkelshteyn
Copy link
Contributor

Try to make https://github.com/appveyor/build-images/blob/master/scripts/Windows/install_dotnet_devpack.ps1 idempotent to run on older non-packer images

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants