From ee2452bb49c6e430d2d34da197e9e88ccc279af2 Mon Sep 17 00:00:00 2001 From: Brett Hazen <2651260+bhazen@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:09:33 -0600 Subject: [PATCH] Constraint ATM.OpenIdConnect version in JwtBearerExtensions --- .../AspNetCore.Authentication.JwtBearer.Tests.csproj | 2 +- .../DPoPIntegrationTests.cs | 1 + .../TestDPoPNonceStore.cs | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/AspNetCore.Authentication.JwtBearer.Tests.csproj b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/AspNetCore.Authentication.JwtBearer.Tests.csproj index 41787aaa5..3fc5f2b03 100644 --- a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/AspNetCore.Authentication.JwtBearer.Tests.csproj +++ b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/AspNetCore.Authentication.JwtBearer.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/DPoPIntegrationTests.cs b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/DPoPIntegrationTests.cs index 3062bbec3..f4e83d6af 100644 --- a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/DPoPIntegrationTests.cs +++ b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/DPoPIntegrationTests.cs @@ -5,6 +5,7 @@ using System.Net; using System.Net.Http.Json; using System.Security.Cryptography; using System.Text.Json; +using Duende.AccessTokenManagement; using Duende.AccessTokenManagement.OpenIdConnect; using Duende.AspNetCore.Authentication.JwtBearer.DPoP; using Duende.AspNetCore.TestFramework; diff --git a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/TestDPoPNonceStore.cs b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/TestDPoPNonceStore.cs index 80f6ce575..2734d7b48 100644 --- a/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/TestDPoPNonceStore.cs +++ b/aspnetcore-authentication-jwtbearer/test/AspNetCore.Authentication.JwtBearer.Tests/TestDPoPNonceStore.cs @@ -1,6 +1,8 @@ // Copyright (c) Duende Software. All rights reserved. // See LICENSE in the project root for license information. +using Duende.AccessTokenManagement; + namespace Duende.AspNetCore.Authentication.JwtBearer; public class TestDPoPNonceStore : IDPoPNonceStore