From e019aebf5fe36aec8d0b744de9f1b132ef96bd0f Mon Sep 17 00:00:00 2001 From: Arturo Martinez Date: Fri, 16 Aug 2024 14:19:43 -0500 Subject: [PATCH] adding explicit target frameworks to mitigate issues between aspnetcore and model identity (#60) * adding explicit target frameworks to mitigate issues between aspnetcore and model-identity Co-authored-by: Arturo Martinez --- ....Functions.Authorization.Abstractions.csproj | 17 ++++++++++++++--- ...ure.Functions.Authorization.InProcess.csproj | 12 +----------- ...zure.Functions.Authorization.Isolated.csproj | 2 +- .../Abstractions.Tests.csproj | 2 +- test/InProc.Tests/InProc.Tests.csproj | 2 +- test/Isolated.Tests/Isolated.Tests.csproj | 2 +- 6 files changed, 19 insertions(+), 18 deletions(-) diff --git a/src/abstractions/DarkLoop.Azure.Functions.Authorization.Abstractions.csproj b/src/abstractions/DarkLoop.Azure.Functions.Authorization.Abstractions.csproj index 9b757d4..b32ebca 100644 --- a/src/abstractions/DarkLoop.Azure.Functions.Authorization.Abstractions.csproj +++ b/src/abstractions/DarkLoop.Azure.Functions.Authorization.Abstractions.csproj @@ -3,7 +3,7 @@ DarkLoop.Azure.Functions.Authorization.Abstractions DarkLoop.Azure.Functions.Authorization - net6.0;net7.0 + net6.0;net7.0;net8.0 0.0.1-preview DarkLoop's Azure Functions authorization extension shared core functionality for InProc and Isolated modules. enable @@ -21,16 +21,27 @@ - - + + + + + + + + + + + + + diff --git a/src/in-proc/DarkLoop.Azure.Functions.Authorization.InProcess.csproj b/src/in-proc/DarkLoop.Azure.Functions.Authorization.InProcess.csproj index 6466a51..f849104 100644 --- a/src/in-proc/DarkLoop.Azure.Functions.Authorization.InProcess.csproj +++ b/src/in-proc/DarkLoop.Azure.Functions.Authorization.InProcess.csproj @@ -3,7 +3,7 @@ DarkLoop.Azure.Functions.Authorization DarkLoop.Azure.Functions.Authorization.InProcess - net6.0;net7.0 + net6.0;net7.0;net8.0 0.0.1-preview 3472ff41-3859-4101-a2da-6c37d751fd31 Azure Functions V3 and V4 (InProc) extension to enable authentication and authorization on a per function basis based on ASPNET Core frameworks. @@ -33,16 +33,6 @@ - - - - - - - - - - diff --git a/src/isolated/DarkLoop.Azure.Functions.Authorization.Isolated.csproj b/src/isolated/DarkLoop.Azure.Functions.Authorization.Isolated.csproj index aa293a5..85b85f9 100644 --- a/src/isolated/DarkLoop.Azure.Functions.Authorization.Isolated.csproj +++ b/src/isolated/DarkLoop.Azure.Functions.Authorization.Isolated.csproj @@ -3,7 +3,7 @@ DarkLoop.Azure.Functions.Authorization.Isolated DarkLoop.Azure.Functions.Authorization - net6.0 + net6.0;net7.0;net8.0 0.0.1-preview Azure Functions V4 in Isolated mode extension to enable authentication and authorization on a per function basis based on ASPNET Core frameworks. enable diff --git a/test/Abstractions.Tests/Abstractions.Tests.csproj b/test/Abstractions.Tests/Abstractions.Tests.csproj index 937f7de..1079ff6 100644 --- a/test/Abstractions.Tests/Abstractions.Tests.csproj +++ b/test/Abstractions.Tests/Abstractions.Tests.csproj @@ -1,7 +1,7 @@  - net7.0 + net6.0;net7.0;net8.0 enable enable diff --git a/test/InProc.Tests/InProc.Tests.csproj b/test/InProc.Tests/InProc.Tests.csproj index c775cda..9814d6e 100644 --- a/test/InProc.Tests/InProc.Tests.csproj +++ b/test/InProc.Tests/InProc.Tests.csproj @@ -1,7 +1,7 @@ - net7.0 + net6.0;net7.0;net8.0 enable enable false diff --git a/test/Isolated.Tests/Isolated.Tests.csproj b/test/Isolated.Tests/Isolated.Tests.csproj index 491a4eb..adf278e 100644 --- a/test/Isolated.Tests/Isolated.Tests.csproj +++ b/test/Isolated.Tests/Isolated.Tests.csproj @@ -1,7 +1,7 @@ - net7.0 + net6.0;net7.0;net8.0 enable enable false