From f66fd3eaa76bbaac45646fd45fcce47cd91ddb20 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Thu, 12 Mar 2026 13:48:23 -0400 Subject: [PATCH] chore: upgrade solution from .NET 8 to .NET 10 Update all project TFMs to net10.0, EF Core to 10.0.4, add Microsoft.Extensions.Hosting.WindowsServices, and suppress WFO1000 warning for WinForms project. Co-Authored-By: Claude Opus 4.6 --- CutList.Core/CutList.Core.csproj | 2 +- CutList.Mcp/CutList.Mcp.csproj | 2 +- CutList.Web/CutList.Web.csproj | 7 ++++--- CutList/CutList.csproj | 3 ++- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CutList.Core/CutList.Core.csproj b/CutList.Core/CutList.Core.csproj index 4f44c89..c690680 100644 --- a/CutList.Core/CutList.Core.csproj +++ b/CutList.Core/CutList.Core.csproj @@ -1,7 +1,7 @@ - net8.0 + net10.0 enable enable latest diff --git a/CutList.Mcp/CutList.Mcp.csproj b/CutList.Mcp/CutList.Mcp.csproj index b1faad3..fce9a6b 100644 --- a/CutList.Mcp/CutList.Mcp.csproj +++ b/CutList.Mcp/CutList.Mcp.csproj @@ -12,7 +12,7 @@ Exe - net8.0 + net10.0 enable enable diff --git a/CutList.Web/CutList.Web.csproj b/CutList.Web/CutList.Web.csproj index e2ed2c1..4ece384 100644 --- a/CutList.Web/CutList.Web.csproj +++ b/CutList.Web/CutList.Web.csproj @@ -1,7 +1,7 @@ - net8.0 + net10.0 enable enable @@ -11,11 +11,12 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/CutList/CutList.csproj b/CutList/CutList.csproj index 4e65f81..6928987 100644 --- a/CutList/CutList.csproj +++ b/CutList/CutList.csproj @@ -2,11 +2,12 @@ WinExe - net8.0-windows + net10.0-windows true enable enable latest + WFO1000