Skip to content

Commit 1e9837e

Browse files
authored
Merge pull request #18 from altasoft/bugfix/domainPrimitives
Updated benchmark project to .NET 10 and bumped package versions.
2 parents 8469128 + 9e08d7e commit 1e9837e

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Product>Simpra</Product>
1212
<Company>ALTA Software llc.</Company>
1313
<Copyright>Copyright © 2024 ALTA Software llc.</Copyright>
14-
<Version>2.0.0</Version>
14+
<Version>2.0.1</Version>
1515
</PropertyGroup>
1616

1717
<PropertyGroup>

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
</PropertyGroup>
55
<ItemGroup>
66
<!-- Core Dependencies -->
7-
<PackageVersion Include="AltaSoft.DomainPrimitives" Version="7.0.1" />
8-
<PackageVersion Include="AltaSoft.DomainPrimitives.Generator" Version="7.0.1" />
7+
<PackageVersion Include="AltaSoft.DomainPrimitives" Version="7.0.2" />
8+
<PackageVersion Include="AltaSoft.DomainPrimitives.Generator" Version="7.0.2" />
99
<PackageVersion Include="Antlr4.Runtime.Standard" Version="4.13.1" />
1010
<!-- Testing Dependencies -->
1111
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />

tests/AltaSoft.Simpra.Benchmark/AltaSoft.Simpra.Benchmark.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<IsPackable>false</IsPackable>
9+
<NoWarn>1701;1702;1591</NoWarn>
910
</PropertyGroup>
1011

1112
<ItemGroup>

tests/AltaSoft.Simpra.Benchmark/Program.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
using AltaSoft.Simpra;
2-
using BenchmarkDotNet.Attributes;
1+
using BenchmarkDotNet.Attributes;
32
using BenchmarkDotNet.Running;
43

4+
namespace AltaSoft.Simpra.Benchmark;
5+
56
public class SimpraBenchmark
67
{
78
private readonly Simpra _simpra = new();
@@ -53,6 +54,6 @@ public sealed class Program
5354
{
5455
public static void Main(string[] args)
5556
{
56-
var summary = BenchmarkRunner.Run<SimpraBenchmark>();
57+
_ = BenchmarkRunner.Run<SimpraBenchmark>();
5758
}
5859
}

0 commit comments

Comments
 (0)