Skip to content

Commit 5a4fd95

Browse files
authored
Drop dotnet 6 , update to net8 (#616)
* change from net6 to net9 * ignore warnings to extract strings to static fields, unnecessary * update test.yml dotnet-version * change from net6 to net9 * ignore warnings to extract strings to static fields, unnecessary * update test.yml dotnet-version * dotnet 8 instead of 9 * Update tests.yml
1 parent 8ecb600 commit 5a4fd95

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup .NET Core
2222
uses: actions/setup-dotnet@v4
2323
with:
24-
dotnet-version: "9.0.x"
24+
dotnet-version: "8.0.x"
2525
- name: Install dependencies
2626
run: dotnet restore
2727
- name: Build
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup .NET Core
4040
uses: actions/setup-dotnet@v4
4141
with:
42-
dotnet-version: "9.0.x"
42+
dotnet-version: "8.0.x"
4343
- name: Check with dotnet-format
4444
run: dotnet format --version
4545
- name: Check with dotnet-format

tests/Meilisearch.Tests/Meilisearch.Tests.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
4+
<TargetFramework>net8.0</TargetFramework>
65
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87

0 commit comments

Comments
 (0)