From 75b17c94f6cb04b431a1399255f7e1c0a80a08ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Wed, 2 Nov 2022 14:33:15 +0100 Subject: [PATCH] Start testing OpenIddict on .NET 7.0 --- Directory.Build.targets | 5 + Packages.props | 493 +++++++++++------- global.json | 7 +- ...penIddict.Sandbox.AspNetCore.Client.csproj | 2 +- ...penIddict.Sandbox.AspNetCore.Server.csproj | 2 +- .../OpenIddict.Abstractions.csproj | 2 +- .../OpenIddict.AspNetCore.csproj | 3 +- .../OpenIddict.Client.AspNetCore.csproj | 2 +- ...OpenIddictClientAspNetCoreConfiguration.cs | 19 + .../OpenIddict.Client.DataProtection.csproj | 2 +- .../OpenIddict.Client.SystemNetHttp.csproj | 2 +- .../OpenIddict.Client.WebIntegration.csproj | 2 +- .../OpenIddict.Client.csproj | 2 +- src/OpenIddict.Core/OpenIddict.Core.csproj | 2 +- .../OpenIddict.EntityFramework.csproj | 2 +- .../OpenIddict.EntityFrameworkCore.csproj | 2 +- .../OpenIddict.MongoDb.csproj | 2 +- .../OpenIddict.Quartz.csproj | 2 +- .../OpenIddict.Server.AspNetCore.csproj | 2 +- ...OpenIddictServerAspNetCoreConfiguration.cs | 21 + .../OpenIddict.Server.DataProtection.csproj | 2 +- .../OpenIddict.Server.csproj | 2 +- .../OpenIddict.Validation.AspNetCore.csproj | 2 +- ...IddictValidationAspNetCoreConfiguration.cs | 18 + ...penIddict.Validation.DataProtection.csproj | 2 +- ...OpenIddict.Validation.SystemNetHttp.csproj | 2 +- .../OpenIddict.Validation.csproj | 2 +- src/OpenIddict/OpenIddict.csproj | 3 +- .../OpenIddict.Abstractions.Tests.csproj | 2 +- ....Client.AspNetCore.IntegrationTests.csproj | 2 +- .../OpenIddict.Client.IntegrationTests.csproj | 2 +- .../OpenIddict.Core.Tests.csproj | 2 +- .../OpenIddict.EntityFramework.Tests.csproj | 2 +- ...penIddict.EntityFrameworkCore.Tests.csproj | 2 +- .../OpenIddict.MongoDb.Tests.csproj | 2 +- .../OpenIddict.Quartz.Tests.csproj | 2 +- ....Server.AspNetCore.IntegrationTests.csproj | 2 +- .../OpenIddict.Server.IntegrationTests.csproj | 2 +- .../OpenIddict.Server.Tests.csproj | 2 +- ...idation.AspNetCore.IntegrationTests.csproj | 2 +- ...nIddict.Validation.IntegrationTests.csproj | 2 +- 41 files changed, 397 insertions(+), 238 deletions(-) diff --git a/Directory.Build.targets b/Directory.Build.targets index 40527c59..d0402d7f 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -88,6 +88,11 @@ $(DefineConstants);SUPPORTS_ZLIB_COMPRESSION + + $(DefineConstants);SUPPORTS_AUTHENTICATION_HANDLER_SELECTION_FALLBACK + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + diff --git a/global.json b/global.json index 84cb0142..fae3f16d 100644 --- a/global.json +++ b/global.json @@ -1,15 +1,16 @@ { "sdk": { - "version": "6.0.402" + "version": "7.0.100-rc.2.22477.23" }, "tools": { - "dotnet": "6.0.402", + "dotnet": "7.0.100-rc.2.22477.23", "runtimes": { "aspnetcore": [ "2.1.30", - "3.1.30" + "3.1.30", + "6.0.10" ] } }, diff --git a/sandbox/OpenIddict.Sandbox.AspNetCore.Client/OpenIddict.Sandbox.AspNetCore.Client.csproj b/sandbox/OpenIddict.Sandbox.AspNetCore.Client/OpenIddict.Sandbox.AspNetCore.Client.csproj index 4423f9ad..1b911d71 100644 --- a/sandbox/OpenIddict.Sandbox.AspNetCore.Client/OpenIddict.Sandbox.AspNetCore.Client.csproj +++ b/sandbox/OpenIddict.Sandbox.AspNetCore.Client/OpenIddict.Sandbox.AspNetCore.Client.csproj @@ -1,7 +1,7 @@  - net6.0 + net7.0 false disable diff --git a/sandbox/OpenIddict.Sandbox.AspNetCore.Server/OpenIddict.Sandbox.AspNetCore.Server.csproj b/sandbox/OpenIddict.Sandbox.AspNetCore.Server/OpenIddict.Sandbox.AspNetCore.Server.csproj index 5ab1bf0f..d9564a13 100644 --- a/sandbox/OpenIddict.Sandbox.AspNetCore.Server/OpenIddict.Sandbox.AspNetCore.Server.csproj +++ b/sandbox/OpenIddict.Sandbox.AspNetCore.Server/OpenIddict.Sandbox.AspNetCore.Server.csproj @@ -1,7 +1,7 @@  - net6.0 + net7.0 false false false diff --git a/src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj b/src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj index 5c9a7a38..85d938b9 100644 --- a/src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj +++ b/src/OpenIddict.Abstractions/OpenIddict.Abstractions.csproj @@ -1,7 +1,7 @@  - net461;net6.0;netstandard2.0;netstandard2.1 + net461;net6.0;net7.0;netstandard2.0;netstandard2.1 true diff --git a/src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj b/src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj index fa47bbbd..028f4efb 100644 --- a/src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj +++ b/src/OpenIddict.AspNetCore/OpenIddict.AspNetCore.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 false false @@ -25,6 +25,7 @@ + diff --git a/src/OpenIddict.Client.AspNetCore/OpenIddict.Client.AspNetCore.csproj b/src/OpenIddict.Client.AspNetCore/OpenIddict.Client.AspNetCore.csproj index 8b3bed31..fe7f6a34 100644 --- a/src/OpenIddict.Client.AspNetCore/OpenIddict.Client.AspNetCore.csproj +++ b/src/OpenIddict.Client.AspNetCore/OpenIddict.Client.AspNetCore.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreConfiguration.cs b/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreConfiguration.cs index 277e61d6..150dd22c 100644 --- a/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreConfiguration.cs +++ b/src/OpenIddict.Client.AspNetCore/OpenIddictClientAspNetCoreConfiguration.cs @@ -68,6 +68,25 @@ public class OpenIddictClientAspNetCoreConfiguration : IConfigureOptions(Guid.NewGuid().ToString(), displayName: null); + } +#endif + static bool TryValidate(IDictionary map, string? scheme) { // If the scheme was not set or if it cannot be found in the map, return true. diff --git a/src/OpenIddict.Client.DataProtection/OpenIddict.Client.DataProtection.csproj b/src/OpenIddict.Client.DataProtection/OpenIddict.Client.DataProtection.csproj index 009b1112..b7cf1a36 100644 --- a/src/OpenIddict.Client.DataProtection/OpenIddict.Client.DataProtection.csproj +++ b/src/OpenIddict.Client.DataProtection/OpenIddict.Client.DataProtection.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Client.SystemNetHttp/OpenIddict.Client.SystemNetHttp.csproj b/src/OpenIddict.Client.SystemNetHttp/OpenIddict.Client.SystemNetHttp.csproj index 01c39ecb..cde3e6f6 100644 --- a/src/OpenIddict.Client.SystemNetHttp/OpenIddict.Client.SystemNetHttp.csproj +++ b/src/OpenIddict.Client.SystemNetHttp/OpenIddict.Client.SystemNetHttp.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Client.WebIntegration/OpenIddict.Client.WebIntegration.csproj b/src/OpenIddict.Client.WebIntegration/OpenIddict.Client.WebIntegration.csproj index 756051da..46c16841 100644 --- a/src/OpenIddict.Client.WebIntegration/OpenIddict.Client.WebIntegration.csproj +++ b/src/OpenIddict.Client.WebIntegration/OpenIddict.Client.WebIntegration.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Client/OpenIddict.Client.csproj b/src/OpenIddict.Client/OpenIddict.Client.csproj index e90dc62f..69c1476b 100644 --- a/src/OpenIddict.Client/OpenIddict.Client.csproj +++ b/src/OpenIddict.Client/OpenIddict.Client.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Core/OpenIddict.Core.csproj b/src/OpenIddict.Core/OpenIddict.Core.csproj index ccf0ae03..3aca5fe1 100644 --- a/src/OpenIddict.Core/OpenIddict.Core.csproj +++ b/src/OpenIddict.Core/OpenIddict.Core.csproj @@ -1,7 +1,7 @@  - net461;net472;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;net472;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.EntityFramework/OpenIddict.EntityFramework.csproj b/src/OpenIddict.EntityFramework/OpenIddict.EntityFramework.csproj index 302c8ca5..ae63b10c 100644 --- a/src/OpenIddict.EntityFramework/OpenIddict.EntityFramework.csproj +++ b/src/OpenIddict.EntityFramework/OpenIddict.EntityFramework.csproj @@ -1,7 +1,7 @@  - net461;net6.0;netstandard2.1 + net461;net6.0;net7.0;netstandard2.1 diff --git a/src/OpenIddict.EntityFrameworkCore/OpenIddict.EntityFrameworkCore.csproj b/src/OpenIddict.EntityFrameworkCore/OpenIddict.EntityFrameworkCore.csproj index 04d23ff9..ec1c96c0 100644 --- a/src/OpenIddict.EntityFrameworkCore/OpenIddict.EntityFrameworkCore.csproj +++ b/src/OpenIddict.EntityFrameworkCore/OpenIddict.EntityFrameworkCore.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.MongoDb/OpenIddict.MongoDb.csproj b/src/OpenIddict.MongoDb/OpenIddict.MongoDb.csproj index 45cbb879..fdd34cf3 100644 --- a/src/OpenIddict.MongoDb/OpenIddict.MongoDb.csproj +++ b/src/OpenIddict.MongoDb/OpenIddict.MongoDb.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 false false diff --git a/src/OpenIddict.Quartz/OpenIddict.Quartz.csproj b/src/OpenIddict.Quartz/OpenIddict.Quartz.csproj index f849f28b..e363b65c 100644 --- a/src/OpenIddict.Quartz/OpenIddict.Quartz.csproj +++ b/src/OpenIddict.Quartz/OpenIddict.Quartz.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Server.AspNetCore/OpenIddict.Server.AspNetCore.csproj b/src/OpenIddict.Server.AspNetCore/OpenIddict.Server.AspNetCore.csproj index f905d37c..e8f1eeb9 100644 --- a/src/OpenIddict.Server.AspNetCore/OpenIddict.Server.AspNetCore.csproj +++ b/src/OpenIddict.Server.AspNetCore/OpenIddict.Server.AspNetCore.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/src/OpenIddict.Server.AspNetCore/OpenIddictServerAspNetCoreConfiguration.cs b/src/OpenIddict.Server.AspNetCore/OpenIddictServerAspNetCoreConfiguration.cs index 76b043cc..66ddb28e 100644 --- a/src/OpenIddict.Server.AspNetCore/OpenIddictServerAspNetCoreConfiguration.cs +++ b/src/OpenIddict.Server.AspNetCore/OpenIddictServerAspNetCoreConfiguration.cs @@ -71,6 +71,27 @@ public class OpenIddictServerAspNetCoreConfiguration : IConfigureOptions(Guid.NewGuid().ToString(), displayName: null); + } +#endif + static bool TryValidate(IDictionary map, string? scheme) { // If the scheme was not set or if it cannot be found in the map, return true. diff --git a/src/OpenIddict.Server.DataProtection/OpenIddict.Server.DataProtection.csproj b/src/OpenIddict.Server.DataProtection/OpenIddict.Server.DataProtection.csproj index 67642c4e..38e3e2af 100644 --- a/src/OpenIddict.Server.DataProtection/OpenIddict.Server.DataProtection.csproj +++ b/src/OpenIddict.Server.DataProtection/OpenIddict.Server.DataProtection.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Server/OpenIddict.Server.csproj b/src/OpenIddict.Server/OpenIddict.Server.csproj index 1ca371a6..92c48f9c 100644 --- a/src/OpenIddict.Server/OpenIddict.Server.csproj +++ b/src/OpenIddict.Server/OpenIddict.Server.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Validation.AspNetCore/OpenIddict.Validation.AspNetCore.csproj b/src/OpenIddict.Validation.AspNetCore/OpenIddict.Validation.AspNetCore.csproj index 8b3d691f..4a37189c 100644 --- a/src/OpenIddict.Validation.AspNetCore/OpenIddict.Validation.AspNetCore.csproj +++ b/src/OpenIddict.Validation.AspNetCore/OpenIddict.Validation.AspNetCore.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/src/OpenIddict.Validation.AspNetCore/OpenIddictValidationAspNetCoreConfiguration.cs b/src/OpenIddict.Validation.AspNetCore/OpenIddictValidationAspNetCoreConfiguration.cs index cae5db67..1e33e6e7 100644 --- a/src/OpenIddict.Validation.AspNetCore/OpenIddictValidationAspNetCoreConfiguration.cs +++ b/src/OpenIddict.Validation.AspNetCore/OpenIddictValidationAspNetCoreConfiguration.cs @@ -66,6 +66,24 @@ public class OpenIddictValidationAspNetCoreConfiguration : IConfigureOptions(Guid.NewGuid().ToString(), displayName: null); + } +#endif + static bool TryValidate(IDictionary map, string? scheme) { // If the scheme was not set or if it cannot be found in the map, return true. diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddict.Validation.DataProtection.csproj b/src/OpenIddict.Validation.DataProtection/OpenIddict.Validation.DataProtection.csproj index 14c33879..644d81ab 100644 --- a/src/OpenIddict.Validation.DataProtection/OpenIddict.Validation.DataProtection.csproj +++ b/src/OpenIddict.Validation.DataProtection/OpenIddict.Validation.DataProtection.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj b/src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj index eb75f378..12a80420 100644 --- a/src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj +++ b/src/OpenIddict.Validation.SystemNetHttp/OpenIddict.Validation.SystemNetHttp.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict.Validation/OpenIddict.Validation.csproj b/src/OpenIddict.Validation/OpenIddict.Validation.csproj index 93b6349c..b26b9e16 100644 --- a/src/OpenIddict.Validation/OpenIddict.Validation.csproj +++ b/src/OpenIddict.Validation/OpenIddict.Validation.csproj @@ -1,7 +1,7 @@  - net461;net472;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;net472;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 diff --git a/src/OpenIddict/OpenIddict.csproj b/src/OpenIddict/OpenIddict.csproj index bcf57c30..9a48fab7 100644 --- a/src/OpenIddict/OpenIddict.csproj +++ b/src/OpenIddict/OpenIddict.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0;netstandard2.0;netstandard2.1 + net461;netcoreapp3.1;net6.0;net7.0;netstandard2.0;netstandard2.1 false false @@ -29,6 +29,7 @@ To use these features on ASP.NET Core or OWIN/Katana/ASP.NET 4.x, reference the + diff --git a/test/OpenIddict.Abstractions.Tests/OpenIddict.Abstractions.Tests.csproj b/test/OpenIddict.Abstractions.Tests/OpenIddict.Abstractions.Tests.csproj index 3b6bbc0c..c2bd69fd 100644 --- a/test/OpenIddict.Abstractions.Tests/OpenIddict.Abstractions.Tests.csproj +++ b/test/OpenIddict.Abstractions.Tests/OpenIddict.Abstractions.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Client.AspNetCore.IntegrationTests/OpenIddict.Client.AspNetCore.IntegrationTests.csproj b/test/OpenIddict.Client.AspNetCore.IntegrationTests/OpenIddict.Client.AspNetCore.IntegrationTests.csproj index dcc9bd54..21be6a8c 100644 --- a/test/OpenIddict.Client.AspNetCore.IntegrationTests/OpenIddict.Client.AspNetCore.IntegrationTests.csproj +++ b/test/OpenIddict.Client.AspNetCore.IntegrationTests/OpenIddict.Client.AspNetCore.IntegrationTests.csproj @@ -1,7 +1,7 @@ - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Client.IntegrationTests/OpenIddict.Client.IntegrationTests.csproj b/test/OpenIddict.Client.IntegrationTests/OpenIddict.Client.IntegrationTests.csproj index 28d0ac08..ee1c2a7e 100644 --- a/test/OpenIddict.Client.IntegrationTests/OpenIddict.Client.IntegrationTests.csproj +++ b/test/OpenIddict.Client.IntegrationTests/OpenIddict.Client.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Core.Tests/OpenIddict.Core.Tests.csproj b/test/OpenIddict.Core.Tests/OpenIddict.Core.Tests.csproj index 46703063..4926f757 100644 --- a/test/OpenIddict.Core.Tests/OpenIddict.Core.Tests.csproj +++ b/test/OpenIddict.Core.Tests/OpenIddict.Core.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.EntityFramework.Tests/OpenIddict.EntityFramework.Tests.csproj b/test/OpenIddict.EntityFramework.Tests/OpenIddict.EntityFramework.Tests.csproj index 39fe0cb5..ae2b777c 100644 --- a/test/OpenIddict.EntityFramework.Tests/OpenIddict.EntityFramework.Tests.csproj +++ b/test/OpenIddict.EntityFramework.Tests/OpenIddict.EntityFramework.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.EntityFrameworkCore.Tests/OpenIddict.EntityFrameworkCore.Tests.csproj b/test/OpenIddict.EntityFrameworkCore.Tests/OpenIddict.EntityFrameworkCore.Tests.csproj index 50b705f8..fe5711b5 100644 --- a/test/OpenIddict.EntityFrameworkCore.Tests/OpenIddict.EntityFrameworkCore.Tests.csproj +++ b/test/OpenIddict.EntityFrameworkCore.Tests/OpenIddict.EntityFrameworkCore.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.MongoDb.Tests/OpenIddict.MongoDb.Tests.csproj b/test/OpenIddict.MongoDb.Tests/OpenIddict.MongoDb.Tests.csproj index 8c5882cf..38a36041 100644 --- a/test/OpenIddict.MongoDb.Tests/OpenIddict.MongoDb.Tests.csproj +++ b/test/OpenIddict.MongoDb.Tests/OpenIddict.MongoDb.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 false false diff --git a/test/OpenIddict.Quartz.Tests/OpenIddict.Quartz.Tests.csproj b/test/OpenIddict.Quartz.Tests/OpenIddict.Quartz.Tests.csproj index 6b6a51b6..d9740a04 100644 --- a/test/OpenIddict.Quartz.Tests/OpenIddict.Quartz.Tests.csproj +++ b/test/OpenIddict.Quartz.Tests/OpenIddict.Quartz.Tests.csproj @@ -1,7 +1,7 @@  - net461;netcoreapp3.1;net6.0 + net461;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Server.AspNetCore.IntegrationTests/OpenIddict.Server.AspNetCore.IntegrationTests.csproj b/test/OpenIddict.Server.AspNetCore.IntegrationTests/OpenIddict.Server.AspNetCore.IntegrationTests.csproj index bf2738c3..f1ff247f 100644 --- a/test/OpenIddict.Server.AspNetCore.IntegrationTests/OpenIddict.Server.AspNetCore.IntegrationTests.csproj +++ b/test/OpenIddict.Server.AspNetCore.IntegrationTests/OpenIddict.Server.AspNetCore.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Server.IntegrationTests/OpenIddict.Server.IntegrationTests.csproj b/test/OpenIddict.Server.IntegrationTests/OpenIddict.Server.IntegrationTests.csproj index 4e8a7a8c..2a2e919a 100644 --- a/test/OpenIddict.Server.IntegrationTests/OpenIddict.Server.IntegrationTests.csproj +++ b/test/OpenIddict.Server.IntegrationTests/OpenIddict.Server.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Server.Tests/OpenIddict.Server.Tests.csproj b/test/OpenIddict.Server.Tests/OpenIddict.Server.Tests.csproj index 33632f63..871142d5 100644 --- a/test/OpenIddict.Server.Tests/OpenIddict.Server.Tests.csproj +++ b/test/OpenIddict.Server.Tests/OpenIddict.Server.Tests.csproj @@ -1,7 +1,7 @@  - net461;net472;netcoreapp3.1;net6.0 + net461;net472;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Validation.AspNetCore.IntegrationTests/OpenIddict.Validation.AspNetCore.IntegrationTests.csproj b/test/OpenIddict.Validation.AspNetCore.IntegrationTests/OpenIddict.Validation.AspNetCore.IntegrationTests.csproj index 9dcfb924..22cc4e94 100644 --- a/test/OpenIddict.Validation.AspNetCore.IntegrationTests/OpenIddict.Validation.AspNetCore.IntegrationTests.csproj +++ b/test/OpenIddict.Validation.AspNetCore.IntegrationTests/OpenIddict.Validation.AspNetCore.IntegrationTests.csproj @@ -1,7 +1,7 @@ - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0 diff --git a/test/OpenIddict.Validation.IntegrationTests/OpenIddict.Validation.IntegrationTests.csproj b/test/OpenIddict.Validation.IntegrationTests/OpenIddict.Validation.IntegrationTests.csproj index 0b2c218a..c2df8eed 100644 --- a/test/OpenIddict.Validation.IntegrationTests/OpenIddict.Validation.IntegrationTests.csproj +++ b/test/OpenIddict.Validation.IntegrationTests/OpenIddict.Validation.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net461;net472;net48;netcoreapp3.1;net6.0 + net461;net472;net48;netcoreapp3.1;net6.0;net7.0