From 58bc5a7bd38ce8e4594ec9b64788f31c8c47f621 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 10:50:21 +0000 Subject: [PATCH 1/2] Initial plan From 938ee1b480ca156b784d28d599303fcbb5c59c34 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Nov 2025 10:55:11 +0000 Subject: [PATCH 2/2] Upgrade all project files and configuration to .NET 10 Co-authored-by: martijn <107915+martijn@users.noreply.github.com> --- .github/workflows/fly.yml | 2 +- Dockerfile | 2 +- .../PointingParty.Client.Tests.csproj | 2 +- PointingParty.Client/PointingParty.Client.csproj | 6 +++--- PointingParty.Domain/PointingParty.Domain.csproj | 2 +- PointingParty/PointingParty.csproj | 4 ++-- global.json | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/fly.yml b/.github/workflows/fly.yml index 11589b4..cfd6add 100644 --- a/.github/workflows/fly.yml +++ b/.github/workflows/fly.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/Dockerfile b/Dockerfile index 690383e..0533aab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG DOTNET_VERSION=9.0 +ARG DOTNET_VERSION=10.0 FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-alpine AS build RUN dotnet workload install wasm-tools diff --git a/PointingParty.Client.Tests/PointingParty.Client.Tests.csproj b/PointingParty.Client.Tests/PointingParty.Client.Tests.csproj index b0d53ed..8e65e43 100644 --- a/PointingParty.Client.Tests/PointingParty.Client.Tests.csproj +++ b/PointingParty.Client.Tests/PointingParty.Client.Tests.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable diff --git a/PointingParty.Client/PointingParty.Client.csproj b/PointingParty.Client/PointingParty.Client.csproj index 4e93eeb..efad9b3 100644 --- a/PointingParty.Client/PointingParty.Client.csproj +++ b/PointingParty.Client/PointingParty.Client.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable true @@ -14,8 +14,8 @@ - - + + diff --git a/PointingParty.Domain/PointingParty.Domain.csproj b/PointingParty.Domain/PointingParty.Domain.csproj index 17b910f..237d661 100644 --- a/PointingParty.Domain/PointingParty.Domain.csproj +++ b/PointingParty.Domain/PointingParty.Domain.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable diff --git a/PointingParty/PointingParty.csproj b/PointingParty/PointingParty.csproj index d682c7f..92ca584 100644 --- a/PointingParty/PointingParty.csproj +++ b/PointingParty/PointingParty.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable false @@ -14,7 +14,7 @@ - + diff --git a/global.json b/global.json index f4fd385..a11f48e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.0", + "version": "10.0.0", "rollForward": "latestMajor", "allowPrerelease": true }