-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommsLIB.csproj
32 lines (27 loc) · 1.21 KB
/
CommsLIB.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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>2.7.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Jesus Alvarez</Authors>
<Company>29Qbits</Company>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/wjax/CommsLIB</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TCPNETCommunicatorv2.cs" />
<Compile Remove="UDPNETCommunicatorv2.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="2.2.85" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="protobuf-net" Version="3.0.73" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
</ItemGroup>
</Project>