-
Notifications
You must be signed in to change notification settings - Fork 298
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 8 Preview Edition Enablement #845
Comments
You can easily install .NET 8 Preview during the build with this simple script added to your install:
- ps: |
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '8.0.100-preview.2.23157.25' -InstallDir "$env:ProgramFiles\dotnet" |
Thanks for this trick! It works actual as it builds the project and went passthrough to the next builds. However, it then suddenly failing when the output binaries has been copied over and rebuilt before the actual test executions. Suspecious as well of why I can see the log below, it sounds to me that the path is not correct. If it, then it sounds to me that the .NET 8 version is not instaled on the Node 1.
Here is the log file that contains the error. (File: log.txt) |
Try using |
Where is that in the YAML? Was it the
|
Yes, replace "MSBuild" with "Script" and put there |
The AppVeyor is just a critical integration point to my project and I am very thankful for your support. Few minutes back, and since the .NET 8 is still in a preview mode, I had decided to just revert the support for it (for now), as all my project builds are failing. But, I will do test again by next week to see if this approach would work and will start reinstating the support to .NET 8. |
Can be closed now. appveyor/ci#3908 |
.NET 8 Preview has been made available to the public. I started to migrate my OSS library as well to target the
net8.0
TFM as well.Here is the link to the announcement: https://devblogs.microsoft.com/dotnet/announcing-dotnet-8-preview-1/
Currently, the site is not supporting it, but it sounds to me an important one so the public can start test and integrate in advance.
Would it be possible to support this and thanks in advance.
The text was updated successfully, but these errors were encountered: