Skip to content

Commit b290c39

Browse files
authored
Bring back .NET 8 runtime support (#14)
2 parents f05e4b8 + 893fd72 commit b290c39

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
- name: setup dotnet
3838
uses: actions/setup-dotnet@v5
3939
with:
40-
dotnet-version: 10
40+
dotnet-version: |
41+
8
42+
10
4143
4244
- name: restore
4345
run: dotnet restore

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- name: setup dotnet
3434
uses: actions/setup-dotnet@v5
3535
with:
36-
dotnet-version: 10
36+
dotnet-version: |
37+
8
38+
10
3739
3840
- name: restore
3941
run: dotnet restore

src/Directory.Build.props

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

33
<PropertyGroup>
44
<VersionPrefix>3.0.0</VersionPrefix>
5-
<TargetFrameworks>net10.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
66
<LangVersion>14.0</LangVersion>
77
</PropertyGroup>
88

src/Kavod.Vba.Compression.Tests/Kavod.Vba.Compression.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-
<TargetFrameworks>net10.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)