forked from LiveOrDevTrying/Tcp.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTcp.NET.Client.csproj
30 lines (26 loc) · 1.14 KB
/
Tcp.NET.Client.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ApplicationIcon>Logo.ico</ApplicationIcon>
<Version>7.0.0</Version>
<Authors>Rob Engel - LiveOrDevTrying</Authors>
<Company>Rob Engel - LiveOrDevTrying - Pixel Horror Studios</Company>
<PackageProjectUrl>https://github.com/LiveOrDevTrying/Tcp.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/LiveOrDevTrying/Tcp.NET</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>Tcp server client Tcp.NET TcpNET async dotnet net SSL authorization auth authentication liveordevtrying await async</PackageTags>
<Description>The client module for a simple SSL or non-SSL Tcp Client with authentication.</Description>
<Copyright>Copyright 2023</Copyright>
<PackageIcon>Logo.png</PackageIcon>
<RepositoryType>GitHub</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Tcp.NET.Core" Version="7.0.*" />
</ItemGroup>
<ItemGroup>
<None Include="Logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>