From 687dffc9c0a852f5f10131d3ace8e24a2354f310 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 24 Oct 2025 11:45:06 +0000 Subject: [PATCH 1/2] Initial plan From 8fe7164b431ed98fc4ff43fa3d9659982ff07f8b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 24 Oct 2025 11:51:15 +0000 Subject: [PATCH 2/2] Add net10.0 target framework to all projects and update CI workflow Co-authored-by: stesee <168659+stesee@users.noreply.github.com> --- .github/workflows/dotnet.yml | 16 ++++++++++++---- PdfAValidator/PdfAValidator.csproj | 2 +- PdfAValidatorTest/PdfAValidatorTest.csproj | 2 +- PdfAValidatorWebApi/PdfAValidatorWebApi.csproj | 2 +- .../PdfAValidatorWebApiTest.csproj | 2 +- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0df619f..2dc97c3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -19,7 +19,9 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: | + 8.0.x + 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -36,7 +38,9 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: | + 8.0.x + 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -65,7 +69,9 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: | + 8.0.x + 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -94,7 +100,9 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: | + 8.0.x + 10.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/PdfAValidator/PdfAValidator.csproj b/PdfAValidator/PdfAValidator.csproj index b055ebb..3f04084 100644 --- a/PdfAValidator/PdfAValidator.csproj +++ b/PdfAValidator/PdfAValidator.csproj @@ -1,6 +1,6 @@  - net8.0 + net8.0;net10.0 true true https://github.com/Codeuctivity/PdfAValidatorApi diff --git a/PdfAValidatorTest/PdfAValidatorTest.csproj b/PdfAValidatorTest/PdfAValidatorTest.csproj index 0de6243..db14e1e 100644 --- a/PdfAValidatorTest/PdfAValidatorTest.csproj +++ b/PdfAValidatorTest/PdfAValidatorTest.csproj @@ -1,6 +1,6 @@  - net8.0 + net8.0;net10.0 false enable true diff --git a/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj b/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj index e1f583c..ea2ed73 100644 --- a/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj +++ b/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj @@ -1,7 +1,7 @@  - net8.0 + net8.0;net10.0 $(Version) $(Version) true diff --git a/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj b/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj index af57e76..cf3667a 100644 --- a/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj +++ b/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj @@ -1,6 +1,6 @@  - net8.0 + net8.0;net10.0 false enable true