From bccfae59cd5afcc61bdbe79588f305caaba442f8 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 16 Apr 2025 13:51:04 +0200 Subject: [PATCH] Update EntityFrameworkCore references for multiple frameworks The project file `DigitalData.Core.Infrastructure.csproj` has been modified to include conditional `PackageReference` entries for different target frameworks. The previous reference to `Microsoft.EntityFrameworkCore` version `7.0.16` has been replaced with: - version `7.0.20` for `net7.0` - version `8.0.15` for `net8.0` - version `9.0.4` for `net9.0` This change ensures the project uses the appropriate version of Entity Framework Core based on the target framework. --- .../DigitalData.Core.Infrastructure.csproj | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj b/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj index 9171bf9..ee57785 100644 --- a/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj +++ b/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj @@ -25,8 +25,16 @@ - - + + + + + + + + + +