From 94f8886a64eebdf018af9a23dfdff1335c0eb5b8 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 12 Feb 2024 18:10:02 +0000 Subject: [PATCH] chore!: remove netstandard2.1 target --- README.md | 2 +- TcpDotNet/TcpDotNet.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 264e42d..339255f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

### About -TcpDotNet is a .NET Standard 2.1 package that enables you to perform server/client communications over the TCP protocol. +TcpDotNet is a .NET package that enables you to perform server/client communications over the TCP protocol. This package is a work-in-progress and not deemed ready for production use. However, it is available on NuGet as a very crude and early development build. This package will be maintained as I see fit. *(I'm also [dogfooding](https://www.pcmag.com/encyclopedia/term/dogfooding) this library, so there's that.)* diff --git a/TcpDotNet/TcpDotNet.csproj b/TcpDotNet/TcpDotNet.csproj index aa54b53..13471c9 100644 --- a/TcpDotNet/TcpDotNet.csproj +++ b/TcpDotNet/TcpDotNet.csproj @@ -1,7 +1,7 @@ - netstandard2.1;net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0 enable enable 10