From 4f5a33f7ecf9fc51c30605678137df31cb56eb7d Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Sat, 10 May 2025 10:24:12 +0200 Subject: [PATCH] Support multiple target frameworks in project file Updated `DigitalData.Auth.API.csproj` to target both `net7.0` and `net8.0`. Replaced `TargetFramework` with `TargetFrameworks` for multi-targeting. Conditionally included `Microsoft.AspNetCore.Authentication.JwtBearer` based on the target framework version. Added a project reference to `DigitalData.Auth.Abstractions`. --- src/DigitalData.Auth.API/DigitalData.Auth.API.csproj | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/DigitalData.Auth.API/DigitalData.Auth.API.csproj b/src/DigitalData.Auth.API/DigitalData.Auth.API.csproj index 23ba23e..6f5f9f7 100644 --- a/src/DigitalData.Auth.API/DigitalData.Auth.API.csproj +++ b/src/DigitalData.Auth.API/DigitalData.Auth.API.csproj @@ -1,7 +1,7 @@  - net8.0 + net7.0;net8.0 enable enable 1.2.0 @@ -15,19 +15,25 @@ - - + + + + + + + +