From c0524cbca2aee6b54807c13f03f662050078aaa3 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 15 Apr 2025 16:19:23 +0200 Subject: [PATCH] Update target frameworks to include .NET 9.0 Updated multiple project files to support .NET 9.0 alongside .NET 7.0 and .NET 8.0. Affected files include: - DigitalData.Core.API.csproj - DigitalData.Core.Abstractions.csproj - DigitalData.Core.Application.csproj - DigitalData.Core.Client.csproj - DigitalData.Core.DTO.csproj - DigitalData.Core.Infrastructure.csproj This change enables the use of new features and improvements in .NET 9.0. --- DigitalData.Core.API/DigitalData.Core.API.csproj | 2 +- .../DigitalData.Core.Abstractions.csproj | 2 +- .../DigitalData.Core.Application.csproj | 2 +- DigitalData.Core.Client/DigitalData.Core.Client.csproj | 2 +- DigitalData.Core.DTO/DigitalData.Core.DTO.csproj | 2 +- .../DigitalData.Core.Infrastructure.csproj | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DigitalData.Core.API/DigitalData.Core.API.csproj b/DigitalData.Core.API/DigitalData.Core.API.csproj index 64bc273..5a4a3b4 100644 --- a/DigitalData.Core.API/DigitalData.Core.API.csproj +++ b/DigitalData.Core.API/DigitalData.Core.API.csproj @@ -1,7 +1,7 @@  - net7.0;net8.0 + net7.0;net8.0;net9.0 true enable enable diff --git a/DigitalData.Core.Abstractions/DigitalData.Core.Abstractions.csproj b/DigitalData.Core.Abstractions/DigitalData.Core.Abstractions.csproj index cb0dee1..37aad3f 100644 --- a/DigitalData.Core.Abstractions/DigitalData.Core.Abstractions.csproj +++ b/DigitalData.Core.Abstractions/DigitalData.Core.Abstractions.csproj @@ -1,7 +1,7 @@  - net7.0;net8.0 + net7.0;net8.0;net9.0 enable enable diff --git a/DigitalData.Core.Application/DigitalData.Core.Application.csproj b/DigitalData.Core.Application/DigitalData.Core.Application.csproj index dfb1adf..1856fd1 100644 --- a/DigitalData.Core.Application/DigitalData.Core.Application.csproj +++ b/DigitalData.Core.Application/DigitalData.Core.Application.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net7.0;net8.0;net9.0 enable enable True diff --git a/DigitalData.Core.Client/DigitalData.Core.Client.csproj b/DigitalData.Core.Client/DigitalData.Core.Client.csproj index f01d1e7..1a170c6 100644 --- a/DigitalData.Core.Client/DigitalData.Core.Client.csproj +++ b/DigitalData.Core.Client/DigitalData.Core.Client.csproj @@ -1,7 +1,7 @@  - net7.0;net8.0 + net7.0;net8.0;net9.0 enable enable This package provides HTTP client extension methods for the DigitalData.Core library, offering simplified and asynchronous methods for fetching and handling HTTP responses. It includes utility methods for sending GET requests, reading response content as text or JSON, and deserializing JSON into dynamic or strongly-typed objects using Newtonsoft.Json. These extensions facilitate efficient and easy-to-read HTTP interactions in client applications. diff --git a/DigitalData.Core.DTO/DigitalData.Core.DTO.csproj b/DigitalData.Core.DTO/DigitalData.Core.DTO.csproj index 18f76dc..3c57edb 100644 --- a/DigitalData.Core.DTO/DigitalData.Core.DTO.csproj +++ b/DigitalData.Core.DTO/DigitalData.Core.DTO.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net7.0;net8.0;net9.0 enable enable This package provides Data Transfer Object (DTO) implementations and related utilities. It includes generic result handling, DTO extension methods, cookie consent settings management, and AutoMapper integration for robust object mapping, all adhering to Clean Architecture principles to ensure separation of concerns and maintainability. diff --git a/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj b/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj index d4693be..9171bf9 100644 --- a/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj +++ b/DigitalData.Core.Infrastructure/DigitalData.Core.Infrastructure.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net7.0;net8.0;net9.0 enable enable True