12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <Version>8.0.4.0</Version>
- <Authors>Ivan Shynkarenka</Authors>
- <Copyright>Copyright (c) 2019-2023 Ivan Shynkarenka</Copyright>
- <RepositoryUrl>https://github.com/chronoxor/NetCoreServer</RepositoryUrl>
- <Description>Ultra fast and low latency asynchronous socket server & 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>
- <PackageTags>async;client;server;tcp;udp;ssl;tls;http;https;websocket;low latency;performance</PackageTags>
- </PropertyGroup>
- <PropertyGroup>
- <IncludeSymbols>true</IncludeSymbols>
- <SymbolPackageFormat>snupkg</SymbolPackageFormat>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <NoWarn>1591</NoWarn>
- </PropertyGroup>
- </Project>
|