Skip to content

Commit b47b814

Browse files
committed
Target .NET 10
1 parent 7e63464 commit b47b814

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build
22

33
on:
44
push:
5-
branches: [ "main", "build" ]
5+
branches: [ "main", "build", "feature/**" ]
66
pull_request:
77
branches: [ "main" ]
88

@@ -29,7 +29,7 @@ jobs:
2929
- name: setup dotnet
3030
uses: actions/setup-dotnet@v4
3131
with:
32-
dotnet-version: 8
32+
dotnet-version: 10
3333

3434
- name: restore
3535
run: dotnet restore

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: setup dotnet
2929
uses: actions/setup-dotnet@v4
3030
with:
31-
dotnet-version: 8
31+
dotnet-version: 10
3232

3333
- name: restore
3434
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>2.0.0</VersionPrefix>
5-
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
66
<LangVersion>12.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>net48;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net10.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)