Skip to content

Commit d085b1d

Browse files
committed
Use .NET 10.0
1 parent 85e9dc4 commit d085b1d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
name: Build windows-latest
1414
runs-on: windows-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v6
1717
- name: Setup .NET Core
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v5
1919
with:
20-
dotnet-version: 8.0.*
20+
dotnet-version: 10.0.*
2121
- name: Install Dependencies
22-
run: dotnet restore
22+
run: dotnet restore --configfile ./NuGet.config
2323
- name: Build
2424
run: dotnet build --configuration Release --no-restore
2525
- name: Test

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>disable</Nullable>
66
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)