-
Notifications
You must be signed in to change notification settings - Fork 542
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
Update to target .NET 8 #808
Merged
Merged
Conversation
This file contains 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.
Remove obsolete TODO.
Update to preview 4 of ASP.NET Core 8.
- Update to preview 5 of ASP.NET Core 8. - Remove usage of `ISystemClock` and use `TimeProvider` instead. - Suppress `CA1861` in tests. - Apply some style suggestions from Visual Studio.
* Update exception types - Use `AuthenticationFailureException` where relevant. - Use `ArgumentException.ThrowIfNullOrWhiteSpace()` where relevant. - Specify value with `ArgumentOutOfRangeException` where relevant. * Revert accidental change Revert back to `SecurityTokenValidationException` in one place.
Update to preview 6 of ASP.NET Core 8.
- Update to preview 7 of ASP.NET Core 8. - Suppress `CA1863` warnings to use `CompositeFormat`. - Use `JsonDocument.ParseAsync()` where relevant.
- Remove `ISystemClock`. - Suppress `CA1863`.
Remove obsolete members for the EVE Online provider.
- Use primary constructors where relevant. - Use collection literals where relevant. - Add helper method to reduce duplicative tests. - Apply some IDE suggestions. - Remove redundant using statements. - Fix some typos. - Hide shared files from the Visual Studio project explorer.
Use collection literals for string arrays.
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. - Fix obsolete warnings. - Fix StyleCop warning. - Fix tests after update to Wilson 7.0.0.
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.
Bump JetBrains.Annotations to the latest version.
Add support for native AoT for the libraries.
- Trim off all the fractions of a second before comparing. - Remove redundant casts.
Fix query string parameters being duplicated if `AuthorizationEndpoint` contains any user-added query string parameters.
Use unified BattleNet server Resolves #812.
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
and useTimeProvider
instead.CA1861
in tests.AuthenticationFailureException
where relevant.ArgumentException.ThrowIfNullOrWhiteSpace()
where relevant.ArgumentOutOfRangeException
where relevant.CA1863
warnings to useCompositeFormat
.JsonDocument.ParseAsync()
where relevant.