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
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();
}
}