From b1596312987878d01c525eb375f3d7e7f8d117a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Sun, 19 Jun 2022 16:06:26 +0200 Subject: [PATCH] Bump all .NET dependencies --- Packages.props | 50 +++++++++---------- global.json | 7 ++- ...penIddictClientWebIntegrationExtensions.cs | 3 ++ 3 files changed, 31 insertions(+), 29 deletions(-) diff --git a/Packages.props b/Packages.props index f87d231a..b9521fbe 100644 --- a/Packages.props +++ b/Packages.props @@ -39,7 +39,7 @@ - + @@ -76,21 +76,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + @@ -128,28 +128,28 @@ - - - - - - + + + + + + - + - + - + diff --git a/global.json b/global.json index acf045c9..5683bc14 100644 --- a/global.json +++ b/global.json @@ -1,16 +1,15 @@ { "sdk": { - "version": "6.0.300" + "version": "6.0.301" }, "tools": { - "dotnet": "6.0.300", + "dotnet": "6.0.301", "runtimes": { "aspnetcore": [ "2.1.30", - "3.1.25", - "5.0.17" + "3.1.26" ] } }, diff --git a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationExtensions.cs b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationExtensions.cs index 561c419c..b0db68b4 100644 --- a/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationExtensions.cs +++ b/src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationExtensions.cs @@ -29,6 +29,9 @@ public static class OpenIddictClientWebIntegrationExtensions throw new ArgumentNullException(nameof(builder)); } + // Register the System.Net.Http integration. + builder.UseSystemNetHttp(); + // Register the built-in event handlers used by the OpenIddict client Web components. // Note: the order used here is not important, as the actual order is set in the options. builder.Services.TryAdd(OpenIddictClientWebIntegrationHandlers.DefaultHandlers