From 473e5e6e2ce6749dd348dc87c3de08e9a59889ba Mon Sep 17 00:00:00 2001 From: Vladimir Pecanac Date: Mon, 24 Aug 2026 00:01:07 +0200 Subject: [PATCH] AnyVsCount: retarget net10.0 Retarget the benchmark console app and its test project from net6.0 to net10.0. Package pins are unchanged: BenchmarkDotNet stays at 0.13.2, which builds and runs the five benchmarks on .NET 10.0.10 without changes. The five benchmarks and the five tests are untouched; the sample still measures Any(), Any(predicate), Count(), Count(predicate) and the Count property over an Enumerable.Range of 50,000 elements. 5/5 tests pass. --- csharp-linq/AnyVsCount/AnyVsCount/AnyVsCount.csproj | 2 +- csharp-linq/AnyVsCount/Tests/Tests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp-linq/AnyVsCount/AnyVsCount/AnyVsCount.csproj b/csharp-linq/AnyVsCount/AnyVsCount/AnyVsCount.csproj index a6d8996d10..f5757d0423 100644 --- a/csharp-linq/AnyVsCount/AnyVsCount/AnyVsCount.csproj +++ b/csharp-linq/AnyVsCount/AnyVsCount/AnyVsCount.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net10.0 enable enable diff --git a/csharp-linq/AnyVsCount/Tests/Tests.csproj b/csharp-linq/AnyVsCount/Tests/Tests.csproj index 76084b9650..43a688de45 100644 --- a/csharp-linq/AnyVsCount/Tests/Tests.csproj +++ b/csharp-linq/AnyVsCount/Tests/Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net10.0 enable false