From 9b55696b4cbc9d79209cf5a9193508cd1a8e9225 Mon Sep 17 00:00:00 2001 From: Temo Nikolaishvili Date: Tue, 13 Jan 2026 11:04:27 +0400 Subject: [PATCH 1/2] Updated benchmark project to .NET 10 and bumped package versions. Suppressed select compiler warnings and cleaned up namespace usage. --- Directory.Packages.props | 4 ++-- .../AltaSoft.Simpra.Benchmark.csproj | 3 ++- tests/AltaSoft.Simpra.Benchmark/Program.cs | 7 ++++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 756969d..0e83491 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -4,8 +4,8 @@ - - + + diff --git a/tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj b/tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj index 4d1d4cb..fb7c078 100644 --- a/tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj +++ b/tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj @@ -2,10 +2,11 @@ Exe - net8.0 + net10.0 enable enable false + 1701;1702;1591 diff --git a/tests/AltaSoft.Simpra.Benchmark/Program.cs b/tests/AltaSoft.Simpra.Benchmark/Program.cs index 94b04dc..0a50ca2 100644 --- a/tests/AltaSoft.Simpra.Benchmark/Program.cs +++ b/tests/AltaSoft.Simpra.Benchmark/Program.cs @@ -1,7 +1,8 @@ -using AltaSoft.Simpra; -using BenchmarkDotNet.Attributes; +using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; +namespace AltaSoft.Simpra.Benchmark; + public class SimpraBenchmark { private readonly Simpra _simpra = new(); @@ -53,6 +54,6 @@ public sealed class Program { public static void Main(string[] args) { - var summary = BenchmarkRunner.Run(); + _ = BenchmarkRunner.Run(); } } From 9e08d7e5b76a3063e03ae3f7a6a2e959077c6bdf Mon Sep 17 00:00:00 2001 From: Temo Nikolaishvili Date: Tue, 13 Jan 2026 11:04:55 +0400 Subject: [PATCH 2/2] Version update --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 3811daa..9d26598 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -11,7 +11,7 @@ Simpra ALTA Software llc. Copyright © 2024 ALTA Software llc. - 2.0.0 + 2.0.1