Skip to content

Commit de1ef0d

Browse files
committed
Remove net6 support
1 parent 32eff9a commit de1ef0d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/dotnet.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- macOS-latest
2121
- windows-latest
2222
dotnet:
23-
- { sdk: 6.0.x, framework: net6.0 }
2423
- { sdk: 8.0.x, framework: net8.0 }
2524

2625
runs-on: ${{matrix.os}}
@@ -45,10 +44,10 @@ jobs:
4544
steps:
4645
- name: Checkout
4746
uses: actions/checkout@v4
48-
- name: Setup .NET SDK v6.0.x
47+
- name: Setup .NET SDK v8.0.x
4948
uses: actions/setup-dotnet@v4
5049
with:
51-
dotnet-version: 6.0.x
50+
dotnet-version: 8.0.x
5251
- name: Prepare .NET tools
5352
run: dotnet tool restore
5453
- name: Run Fantomas
@@ -61,10 +60,10 @@ jobs:
6160
uses: actions/checkout@v4
6261
with:
6362
fetch-depth: 0
64-
- name: Setup .NET SDK v6.0.x
63+
- name: Setup .NET SDK v8.0.x
6564
uses: actions/setup-dotnet@v4
6665
with:
67-
dotnet-version: 6.0.x
66+
dotnet-version: 8.0.x
6867
- name: Prepare .NET tools
6968
run: dotnet tool restore
7069
- name: Prepare analyzers
@@ -85,10 +84,10 @@ jobs:
8584
uses: actions/checkout@v4
8685
with:
8786
fetch-depth: 0 # so that NerdBank.GitVersioning has access to history
88-
- name: Setup .NET SDK v6.0.x
87+
- name: Setup .NET SDK v8.0.x
8988
uses: actions/setup-dotnet@v4
9089
with:
91-
dotnet-version: 6.0.x
90+
dotnet-version: 8.0.x
9291
- name: Build
9392
run: dotnet build ShapeSifter/ShapeSifter.fsproj --configuration Release
9493
- name: Pack

ShapeSifter.Test/ShapeSifter.Test.fsproj

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>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<WarningLevel>5</WarningLevel>
66
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
77
<WarningsAsErrors />

0 commit comments

Comments
 (0)