-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathProtobuff.csproj
More file actions
50 lines (45 loc) · 1.88 KB
/
Protobuff.csproj
File metadata and controls
50 lines (45 loc) · 1.88 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Protobuf.Network.Library</PackageId>
<Title>Protobuf Network Library</Title>
<Authors>ReferenceType</Authors>
<Description>Message passing and P2P network library using protobuf .net </Description>
<RepositoryUrl>https://github.com/ReferenceType/StandardNetworkLibrary</RepositoryUrl>
<Copyright>Apache-2.0</Copyright>
<Product>ProtobufNetworkLibrary</Product>
<AssemblyVersion>2.01</AssemblyVersion>
<Version>3.0.1</Version>
<FileVersion>2.0.1</FileVersion>
<PackageReleaseNotes></PackageReleaseNotes>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageTags>protobuf;network;p2p;holepunch;nat traversal;high performance;reliable udp</PackageTags>
<PackageLicenseFile>Licence.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="P2P\Generic\**" />
<EmbeddedResource Remove="P2P\Generic\**" />
<None Remove="P2P\Generic\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="protobuf-net" Version="3.1.22" />
<PackageReference Include="protobuf-net.Core" Version="3.1.25" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>ConsoleTest</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="..\Resources\Licence.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetworkLibrary\NetworkLibrary.csproj" />
</ItemGroup>
</Project>