Skip to content

Commit 1bb6e80

Browse files
committed
fix up
1 parent 7285782 commit 1bb6e80

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet build -c RELEASE
2323
shell: pwsh
2424
- name: Run benchmarks
25-
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet run -c RELEASE -- results --exporters json --filter '*'
25+
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet run -c RELEASE -f net7.0 -- results --exporters json --filter '*'
2626
shell: pwsh
2727
- name: Write summary
2828
shell: pwsh

test/Directory.Build.targets

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
</Compile>
1313
</ItemGroup>
1414
<ItemGroup>
15-
<!-- Need to bring this in manually as the test framework itself tries to bring in 9.0.0 -->
1615
<PackageReference Include="Newtonsoft.Json" />
1716
<PackageReference Include="System.ValueTuple" />
1817
<PackageReference Include="Microsoft.NET.Test.Sdk" />

test/DocumentFormat.OpenXml.Benchmarks/DocumentFormat.OpenXml.Benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>$(LatestTargetFramework)</TargetFramework>
3+
<TargetFrameworks>$(LatestTargetFramework)</TargetFrameworks>
44
</PropertyGroup>
55
<PropertyGroup>
66
<OutputType>Exe</OutputType>

0 commit comments

Comments
 (0)