From 789ebdb7b333605c0a4bfaa6c424239ac92b18cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 04:03:47 +0000 Subject: [PATCH 1/2] Bump the minor-and-patch group with 1 update Bumps Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0 --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] --- .../Vonk.Plugin.ExampleOperation.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj b/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj index e30c84f..20bd65c 100644 --- a/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj +++ b/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj @@ -8,7 +8,7 @@ - + all From a08fb73267a19cb466fdaf39f388b8181b938137 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 29 Jun 2026 07:17:54 +0000 Subject: [PATCH 2/2] Fix CI build: upgrade to .NET 10 SDK and net10.0 target framework - Update azure-pipelines.yml to use dotNetCoreVersion: 10.0.x (.NET 9 reached EOL in May 2026; use current LTS .NET 10 instead of 8.0.x which may have compatibility issues with the updated windows-latest agent image) - Update TargetFramework from net8.0 to net10.0 in both project files - All existing tests continue to pass on net10.0 --- .../Vonk.Plugin.ExampleOperation.Tests.csproj | 2 +- .../Vonk.Plugin.ExampleOperation.csproj | 2 +- build/azure-pipelines.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj b/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj index 20bd65c..b7a7638 100644 --- a/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj +++ b/Vonk.Plugin.ExampleOperation.Tests/Vonk.Plugin.ExampleOperation.Tests.csproj @@ -3,7 +3,7 @@ - net8.0 + net10.0 false diff --git a/Vonk.Plugin.ExampleOperation/Vonk.Plugin.ExampleOperation.csproj b/Vonk.Plugin.ExampleOperation/Vonk.Plugin.ExampleOperation.csproj index c540ca2..c1e5bc4 100644 --- a/Vonk.Plugin.ExampleOperation/Vonk.Plugin.ExampleOperation.csproj +++ b/Vonk.Plugin.ExampleOperation/Vonk.Plugin.ExampleOperation.csproj @@ -3,7 +3,7 @@ - net8.0 + net10.0 Library diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 2f8d7d6..7351295 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -20,6 +20,6 @@ jobs: propsFile: 'Vonk.Plugin.ExampleOperation.props' nuGetServiceConnections: GitHub_FirelyTeams_NuGetFeed nuGetSources: --source https://nuget.pkg.github.com/FirelyTeam/index.json - dotNetCoreVersion: '8.0.x' + dotNetCoreVersion: '10.0.x' pool: vmImage: windows-latest