From ea7274908eb19caadd9b06642c1851e29e7129f0 Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:36:09 +0100 Subject: [PATCH 1/4] Add support for net10.0-windows --- src/Demo/Demo.csproj | 2 +- src/WpfMessageBox/WpfMessageBox.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Demo/Demo.csproj b/src/Demo/Demo.csproj index dbe42d7..e830460 100644 --- a/src/Demo/Demo.csproj +++ b/src/Demo/Demo.csproj @@ -9,7 +9,7 @@ false WinExe - net48;net9.0-windows + net48;net9.0-windows;net10.0-windows true 1.0.0 diff --git a/src/WpfMessageBox/WpfMessageBox.csproj b/src/WpfMessageBox/WpfMessageBox.csproj index 9201c70..1a69231 100644 --- a/src/WpfMessageBox/WpfMessageBox.csproj +++ b/src/WpfMessageBox/WpfMessageBox.csproj @@ -8,7 +8,7 @@ ⓒ Otiel $([System.DateTime]::Now.Year) false - net48;net9.0-windows + net48;net9.0-windows;net10.0-windows true 1.3.0 From 12e237fea833baf52196a63e3a88e282dace23f3 Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:36:33 +0100 Subject: [PATCH 2/4] Demo: save run configuration for net10.0 --- src/.run/Demo-net10.0.run.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/.run/Demo-net10.0.run.xml diff --git a/src/.run/Demo-net10.0.run.xml b/src/.run/Demo-net10.0.run.xml new file mode 100644 index 0000000..4cd21c8 --- /dev/null +++ b/src/.run/Demo-net10.0.run.xml @@ -0,0 +1,23 @@ + + + + \ No newline at end of file From 82b088b18beeb1f3be7950b2c4e20287c16acbd0 Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:36:59 +0100 Subject: [PATCH 3/4] =?UTF-8?q?Update=20.NET=20SDK=209.0.0=20=E2=86=92=201?= =?UTF-8?q?0.0.100?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/global.json b/src/global.json index a27a2b8..3dab80e 100644 --- a/src/global.json +++ b/src/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "9.0.0", - "rollForward": "latestMajor", + "version": "10.0.100", + "rollForward": "latestPatch", "allowPrerelease": false } } \ No newline at end of file From 4dff5bb0225c65c44b434bbadf3930bdf0e5dae5 Mon Sep 17 00:00:00 2001 From: Otiel Date: Wed, 26 Nov 2025 23:38:53 +0100 Subject: [PATCH 4/4] ci: use SDK .NET 10 --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index de76d7b..d9ce806 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -29,7 +29,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Display dotnet version run: dotnet --version