-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to the .NET 8 SDK and target `net8.0`. - Add a README file to the NuGet packages as recommended by the .NET 8 SDK. - Remove now-obsolete use of `ISystemClock`. - Fix code analysis warning by using `TryGetValue()`. - Use static `ArgumentException` methods. - Use `AuthenticationFailureException` where relevant. - 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 NuGet packages to their latest versions. - 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. - Add support for native AoT for the libraries.
- Loading branch information
1 parent
ece2c73
commit b30d42e
Showing
62 changed files
with
1,393 additions
and
1,365 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,15 +1,14 @@ | ||
<Project> | ||
|
||
<ItemGroup> | ||
<PackageVersion Include="AngleSharp" Version="0.13.0" /> | ||
<PackageVersion Include="JetBrains.Annotations" Version="2022.1.0" /> | ||
<PackageVersion Include="JustEat.HttpClientInterception" Version="3.1.2" /> | ||
<PackageVersion Include="AngleSharp" Version="1.0.6" /> | ||
<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.Mvc.Testing" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.IdentityModel.Protocols" Version="6.10.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.1.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="7.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" Version="7.0.3" /> | ||
<PackageVersion Include="Shouldly" Version="4.2.1" /> | ||
</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.