Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add .netstandard 2.1 support #242

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
change description & upload to nuget
  • Loading branch information
Jennal committed Jul 27, 2023
commit 489377dcd285d5147db043be165c198e855c728e
13 changes: 8 additions & 5 deletions source/NetCoreServer/NetCoreServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@

<PropertyGroup>
<Version>7.0.0.0</Version>
<Authors>Ivan Shynkarenka</Authors>
<Copyright>Copyright (c) 2019-2022 Ivan Shynkarenka</Copyright>
<RepositoryUrl>https://github.com/chronoxor/NetCoreServer</RepositoryUrl>
<Description>Ultra fast and low latency asynchronous socket server &amp; client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution</Description>
<AssemblyName>GoPlay.NetCoreServer</AssemblyName>
<Authors>Jennal</Authors>
<Copyright>Copyright © What2d Ltd. 2023</Copyright>
<RepositoryUrl>https://github.com/jennal/NetCoreServer</RepositoryUrl>
<Description>Fork from [https://github.com/chronoxor/NetCoreServer](https://github.com/chronoxor/NetCoreServer), make it support .NET Standard 2.1

Ultra fast and low latency asynchronous socket server &amp; client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/chronoxor/NetCoreServer</PackageProjectUrl>
<PackageProjectUrl>https://github.com/jennal/NetCoreServer</PackageProjectUrl>
<PackageTags>async;client;server;tcp;udp;ssl;tls;http;https;websocket;low latency;performance</PackageTags>
<TargetFrameworks>net6.0;net7.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
Expand Down