Skip to content

Commit ddc6119

Browse files
authored
Upgrade Demo and Test framework versions to .NET 8 (#34)
1 parent a5d8fe0 commit ddc6119

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
path: rust-bindings
3131

3232
- name: Setup dotnet
33-
uses: actions/setup-dotnet@v3
33+
uses: actions/setup-dotnet@v4
3434
with:
35-
dotnet-version: "7.0.x"
35+
dotnet-version: "8.0.x"
3636

3737
- name: Publish
3838
id: publish-nuget

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
merge-multiple: true
3232

3333
- name: Setup .NET Core SDK
34-
uses: actions/setup-dotnet@v3
34+
uses: actions/setup-dotnet@v4
3535
with:
36-
dotnet-version: "7.0.x"
36+
dotnet-version: "8.0.x"
3737

3838
- name: Install dependencies
3939
run: dotnet restore

Demo/Demo.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>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

Libsql.Client.Tests/Libsql.Client.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)