-
Notifications
You must be signed in to change notification settings - Fork 42
Update to target .NET 8 #159
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update to preview 3 of ASP.NET Core 8.
Add a README file to the NuGet packages as recommended by the .NET 8 SDK.
Update to preview 4 of ASP.NET Core 8.
- Update to preview 5 of ASP.NET Core 8. - Remove now-obsolete use of `ISystemClock`. - Fix code analysis warning by using `TryGetValue()`.
- Use static `ArgumentException` methods. - Use `AuthenticationFailureException` where relevant.
Update to preview 6 of ASP.NET Core 8.
Update to preview 7 of ASP.NET Core 8.
Update .NET SDK for RC1.
- Use primary constructors in a few places where relevant. - Apply some IDE suggestions to use newer C# syntax. - Fix typo.
Update to the latest release of arcade for .NET 8.
- Update to RC 2 of ASP.NET Core 8. - Update NuGet packages to their latest versions.
kevinchalet
reviewed
Oct 10, 2023
Remove System.Text.Json as an explicit package reference.
Bump Microsoft.IdentityModel.Protocols to 7.0.3 as there's been some bugs in v7 that .NET 8 is picking up e.g. dotnet/aspnetcore#51430.
- Fix AoT warning. - Simplify member name.
Update AngleSharp and JetBrains.Annotations to their latest versions.
Add support for native AoT for the libraries.
Update to stable .NET 8 SDK and NuGet packages.
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update the providers to target net8.0 with the .NET 8 SDK. Changes, in no particular order, include:
ISystemClock
.TryGetValue()
.ArgumentException
methods.AuthenticationFailureException
where relevant.