Skip to content

Commit 2be93ce

Browse files
author
fabien.menager
committed
Fix benchmark projet TFM
1 parent cb538ea commit 2be93ce

2 files changed

Lines changed: 5 additions & 12 deletions

File tree

.github/workflows/dotnet-test.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,14 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27-
- name: Setup .NET 8.0
28-
uses: actions/setup-dotnet@v4
29-
with:
30-
dotnet-version: 8.0.x
31-
32-
- name: Setup .NET 9.0
33-
uses: actions/setup-dotnet@v4
34-
with:
35-
dotnet-version: 9.0.x
36-
37-
- name: Setup .NET 10.0
27+
- name: Setup .NET 10.0 # Latest dotnet version supported
3828
uses: actions/setup-dotnet@v4
3929
with:
4030
dotnet-version: 10.0.x
4131

32+
- name: Display dotnet version
33+
run: dotnet --version
34+
4235
- name: Restore dependencies
4336
run: dotnet restore
4437

tests/PhenX.EntityFrameworkCore.BulkInsert.Benchmark/PhenX.EntityFrameworkCore.BulkInsert.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFrameworks>net9.0;</TargetFrameworks> <!-- Override TargetFrameworks (with an s) from Directory.Build.props -->
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)