From 51ce3bdd02b57ba57b61d871beb4cbbccc5cb46e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Mon, 18 Mar 2024 17:35:07 +0100 Subject: [PATCH] Bump the .NET SDK and the .NET dependencies --- .github/workflows/build.yml | 8 +- Directory.Packages.props | 80 +++++++++---------- global.json | 8 +- .../InteractiveService.cs | 2 +- 4 files changed, 49 insertions(+), 49 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d0414d0..29519c2f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,9 +43,9 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: | - 6.0.418 - 7.0.405 - 8.0.101 + 6.0.420 + 7.0.407 + 8.0.202 # Arcade only allows the revision to contain up to two characters, and GitHub Actions does not roll-over # build numbers every day like Azure DevOps does. To balance these two requirements, set the official @@ -105,7 +105,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.101' + dotnet-version: '8.0.202' - name: Validate NuGet packages shell: pwsh diff --git a/Directory.Packages.props b/Directory.Packages.props index b21dc608..063a710c 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -36,9 +36,9 @@ - - - + + + @@ -94,9 +94,9 @@ - - - + + + @@ -152,9 +152,9 @@ - - - + + + @@ -230,19 +230,19 @@ - + - + - - - - + + + + @@ -252,7 +252,7 @@ --> - + @@ -275,19 +275,19 @@ - + - + - - - - + + + + @@ -297,7 +297,7 @@ --> - + @@ -320,20 +320,20 @@ - + - + - + - + - - - - + + + + @@ -343,7 +343,7 @@ --> - + @@ -354,8 +354,8 @@ - - + + @@ -394,9 +394,9 @@ - - - + + + @@ -445,9 +445,9 @@ - - - + + + diff --git a/global.json b/global.json index 9b1f01ee..f081b52e 100644 --- a/global.json +++ b/global.json @@ -1,17 +1,17 @@ { "sdk": { - "version": "8.0.101", + "version": "8.0.202", "allowPrerelease": true, "rollForward": "major" }, "tools": { - "dotnet": "8.0.101", + "dotnet": "8.0.202", "runtimes": { "aspnetcore": [ - "6.0.26", - "7.0.15" + "6.0.28", + "7.0.17" ] } }, diff --git a/sandbox/OpenIddict.Sandbox.Console.Client/InteractiveService.cs b/sandbox/OpenIddict.Sandbox.Console.Client/InteractiveService.cs index fb026f42..44bf52c7 100644 --- a/sandbox/OpenIddict.Sandbox.Console.Client/InteractiveService.cs +++ b/sandbox/OpenIddict.Sandbox.Console.Client/InteractiveService.cs @@ -438,7 +438,7 @@ public class InteractiveService : BackgroundService return WaitAsync(Task.Run(Prompt, cancellationToken), cancellationToken); } -static Task IntrospectAccessTokenAsync(CancellationToken cancellationToken) + static Task IntrospectAccessTokenAsync(CancellationToken cancellationToken) { static bool Prompt() => AnsiConsole.Prompt(new ConfirmationPrompt( "Would you like to introspect the access token?")