Files
DanhengServer-OpenSource/Program/Program.csproj
Somebody c7c7a071be Fix Chess Rogue Bug & Feature: MuipServer PlayerInformation
- Fix when enter the layer 3's last room, there wont be any select menu
- Add web Handler for getting information
2024-07-08 14:15:07 +08:00

29 lines
853 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>EggLink.DanhengServer.Program</RootNamespace>
<AssemblyName>DanhengServer</AssemblyName>
<ApplicationIcon>Danheng.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="Danheng.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Command\Command.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\GameServer\GameServer.csproj" />
<ProjectReference Include="..\WebServer\WebServer.csproj" />
</ItemGroup>
</Project>