From c4feefb1a28082e9295d90c68f0bf46da9b0bc9d Mon Sep 17 00:00:00 2001 From: Parker Bibus Date: Wed, 18 Feb 2026 16:22:43 -0800 Subject: [PATCH] Update EF Core benchmark framework target to net11.0 The EF Core repo (dotnet/efcore main branch) has moved its projects to target net11.0, but the benchmark scenario was still forcing net10.0. This caused NETSDK1045 errors on the build agent since the .NET 10 SDK cannot compile net11.0 projects. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- scenarios/efcore.benchmarks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenarios/efcore.benchmarks.yml b/scenarios/efcore.benchmarks.yml index 884aaadf7..cd44c6d03 100644 --- a/scenarios/efcore.benchmarks.yml +++ b/scenarios/efcore.benchmarks.yml @@ -12,7 +12,7 @@ jobs: jobType: short arguments: --job {{jobType}} --filter {{filter}} --memory # force .NET version as the project currently uses a variable - framework: net10.0 + framework: net11.0 options: benchmarkDotNet: true