Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
twsouthwick committed Jun 28, 2023
1 parent 7285782 commit 1bb6e80
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet build -c RELEASE
shell: pwsh
- name: Run benchmarks
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet run -c RELEASE -- results --exporters json --filter '*'
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet run -c RELEASE -f net7.0 -- results --exporters json --filter '*'
shell: pwsh
- name: Write summary
shell: pwsh
Expand Down
1 change: 0 additions & 1 deletion test/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
</Compile>
</ItemGroup>
<ItemGroup>
<!-- Need to bring this in manually as the test framework itself tries to bring in 9.0.0 -->
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.ValueTuple" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(LatestTargetFramework)</TargetFramework>
<TargetFrameworks>$(LatestTargetFramework)</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down

1 comment on commit 1bb6e80

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ElementMetadataTests

Benchmark suite Current: 1bb6e80 Previous: e2b8a44 Ratio
DocumentFormat.OpenXml.Benchmarks.ElementMetadataTests.CreateWithInstance 24.28482417975153 ns (± 0.015111741812222992) 26.193310494606312 ns (± 0.8260131565293166) 0.93
DocumentFormat.OpenXml.Benchmarks.ElementMetadataTests.CreateWithGeneric 45.03282735745112 ns (± 0.33548830933563406) 37.67914932727814 ns (± 1.1080663276880038) 1.20

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.