From accd807f67c4193037a3a013f882213016cc01b1 Mon Sep 17 00:00:00 2001 From: nietras Date: Sun, 12 Jan 2025 11:52:47 +0100 Subject: [PATCH] Remove net7.0 target (#218) Upcoming changes/refactorings will require using `UnsafeAccessor` to make `SepWriter` simpler and more efficient which is only available in net8.0+ so dropping .NET 7 support. --- README.md | 2 +- src/Directory.Build.props | 2 +- src/Sep.XyzTest/Sep.XyzTest.csproj | 4 ---- src/Sep/CompatibilitySuppressions.xml | 6 +++++- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 71d14cd3..619dbc0b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Sep - ~~Possibly~~ the World's Fastest .NET CSV Parser -![.NET](https://img.shields.io/badge/net7.0%20net8.0%20net9.0-5C2D91?logo=.NET&labelColor=gray) +![.NET](https://img.shields.io/badge/net8.0%20net9.0-5C2D91?logo=.NET&labelColor=gray) ![C#](https://img.shields.io/badge/C%23-13.0-239120?labelColor=gray) [![Build Status](https://github.com/nietras/Sep/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/nietras/Sep/actions/workflows/dotnet.yml) [![Super-Linter](https://github.com/nietras/Sep/actions/workflows/super-linter.yml/badge.svg)](https://github.com/marketplace/actions/super-linter) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 2ba34198..c268f2fd 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -10,7 +10,7 @@ Copyright © nietras A/S 2023 en - net9.0;net8.0;net7.0 + net9.0;net8.0 false 13.0 diff --git a/src/Sep.XyzTest/Sep.XyzTest.csproj b/src/Sep.XyzTest/Sep.XyzTest.csproj index d23f4b8a..2080118d 100644 --- a/src/Sep.XyzTest/Sep.XyzTest.csproj +++ b/src/Sep.XyzTest/Sep.XyzTest.csproj @@ -4,10 +4,6 @@ nietras.SeparatedValues.XyzTest true false - - - true diff --git a/src/Sep/CompatibilitySuppressions.xml b/src/Sep/CompatibilitySuppressions.xml index 2f7dfb84..adf9d71e 100644 --- a/src/Sep/CompatibilitySuppressions.xml +++ b/src/Sep/CompatibilitySuppressions.xml @@ -1,4 +1,8 @@  - + + + PKV006 + net7.0 + \ No newline at end of file