mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 21:04:41 +01:00
23 lines
746 B
XML
23 lines
746 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<CETCompat>false</CETCompat>
|
|
<RootNamespace>KianaBH.GameServer</RootNamespace>
|
|
<StartupObject></StartupObject>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssemblyName>KianaGameServer</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
<ProjectReference Include="..\KcpSharp\KcpSharp.csproj" />
|
|
<ProjectReference Include="..\Proto\Proto.csproj" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|