-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to ASP.NET Core 8. - Add a README file to the NuGet packages as recommended by the .NET 8 SDK. - Remove obsolete TODO. - Remove usage of `ISystemClock` and use `TimeProvider` instead. - Suppress `CA1861` in tests. - Apply some style suggestions from Visual Studio. - Use `AuthenticationFailureException` where relevant. - Use `ArgumentException.ThrowIfNullOrWhiteSpace()` where relevant. - Specify value with `ArgumentOutOfRangeException` where relevant. - 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 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. - 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
- Loading branch information
1 parent
163a006
commit 5164ca0
Showing
287 changed files
with
2,382 additions
and
3,673 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<Project> | ||
|
||
<ItemGroup> | ||
<PackageVersion Include="JetBrains.Annotations" Version="2022.1.0" /> | ||
<PackageVersion Include="JustEat.HttpClientInterception" Version="3.1.2" /> | ||
<PackageVersion Include="JetBrains.Annotations" Version="2023.3.0" /> | ||
<PackageVersion Include="JustEat.HttpClientInterception" Version="4.0.0" /> | ||
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.16.0" /> | ||
<PackageVersion Include="NSubstitute" Version="5.0.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.1.0" /> | ||
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.435" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.0.3" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.2.1" /> | ||
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"RetryCountLimit": 1, | ||
"RetryByAnyError": false | ||
} |
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.