GameServer + packet types, we aren't parsing yet

This commit is contained in:
rfi
2023-10-08 21:12:01 +07:00
parent f753a0ffc4
commit 0eacd1bfe2
10 changed files with 306 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MessagePack" Version="2.5.129" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AscNet.Common\AscNet.Common.csproj" />
</ItemGroup>
</Project>