WutheringWaves/GameServer/GameServer.csproj

30 lines
824 B
XML
Raw Normal View History

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="..\Core\Core.csproj" />
2024-02-07 21:41:39 +00:00
<ProjectReference Include="..\KcpSharp\KcpSharp.csproj" />
<ProjectReference Include="..\Protocol\Protocol.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="gameplay.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2024-02-07 21:41:39 +00:00
</Project>