-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNetCode.csproj
More file actions
30 lines (25 loc) · 1.21 KB
/
Copy pathNetCode.csproj
File metadata and controls
30 lines (25 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<PackageId>NetCode</PackageId>
<Version>1.1.6</Version>
<Authors>Eugene Levchenkov</Authors>
<Title>NetCode</Title>
<Description>Fast and light BitWriter and BitReader</Description>
<PackageProjectUrl>https://github.com/Levchenkov/NetCode</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/Levchenkov/NetCode/blob/main/LICENSE</PackageLicenseUrl>
<PackageTags>bitreader bitwriter netcode serialization quantization</PackageTags>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' ">
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
</Project>