From 5c67e4059b954258c8388fdd5ba5f93a91d9bc04 Mon Sep 17 00:00:00 2001 From: Brian Surowiec Date: Mon, 8 Apr 2024 23:55:42 -0400 Subject: [PATCH] Drop .net 6 support --- CHANGELOG.md | 1 + Directory.Build.props | 2 +- global.json | 2 -- sample/Sample.csproj | 5 ----- 4 files changed, 2 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c6d96..51a8374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased +- Dropped support for .NET 6 - Dropped support for .NET 7 - Added support for .NET 8 diff --git a/Directory.Build.props b/Directory.Build.props index 8523d69..7df8cef 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@ - net8.0;net6.0 + net8.0 preview enable enable diff --git a/global.json b/global.json index 85b9010..dd48e7e 100644 --- a/global.json +++ b/global.json @@ -7,8 +7,6 @@ "clean:bin": "dotnet rimraf **/bin **/obj", "build": "dotnet build", "test": "dotnet test", - "test:6": "dotnet test --framework net6.0", - "test:8": "dotnet test --framework net8.0", "pack": "dotnet pack --output ./artifacts", "ci": "dotnet r build test pack", "watch": "dotnet r [env:DOTNET_WATCH_RESTART_ON_RUDE_EDIT=true] watch:sample", diff --git a/sample/Sample.csproj b/sample/Sample.csproj index 1621a68..0355d87 100644 --- a/sample/Sample.csproj +++ b/sample/Sample.csproj @@ -1,10 +1,5 @@ - - net8.0 - - -