2024-02-07 21:41:39 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\KcpSharp\KcpSharp.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Protocol\Protocol.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-10 19:11:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2024-02-10 22:28:35 +00:00
|
|
|
|
<None Update="gameplay.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2024-02-10 19:11:16 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-07 21:41:39 +00:00
|
|
|
|
</Project>
|