Skip to content

Commit f904322

Browse files
authored
Migrate to .NET9 SDK (#50)
1 parent 54ac4c8 commit f904322

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

Diff for: .github/workflows/publish-preview.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup .NET SDK
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: 8.0.x
28+
dotnet-version: 9.0.x
2929
source-url: https://nuget.pkg.github.com/destructurama/index.json
3030
env:
3131
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Diff for: .github/workflows/publish-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET SDK
2020
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 8.0.x
22+
dotnet-version: 9.0.x
2323
source-url: https://api.nuget.org/v3/index.json
2424
env:
2525
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}}

Diff for: .github/workflows/test.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ jobs:
3535
- name: Setup .NET SDKs
3636
uses: actions/setup-dotnet@v4
3737
with:
38-
dotnet-version: |
39-
6.0.x
40-
7.0.x
41-
8.0.x
38+
dotnet-version: 9.0.x
4239
source-url: https://nuget.pkg.github.com/destructurama/index.json
4340
env:
4441
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

Diff for: src/Destructurama.FSharp.Tests/Destructurama.FSharp.Tests.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<WarningsNotAsErrors>$(WarningsNotAsErrors);FS3261</WarningsNotAsErrors>
66
</PropertyGroup>
77

Diff for: src/Samples/Samples.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)