mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
30 lines
926 B
XML
30 lines
926 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.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="Google.Protobuf" Version="3.33.1" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.33.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Command\Command.csproj" />
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
<ProjectReference Include="..\GameServer\GameServer.csproj" />
|
|
<ProjectReference Include="..\WebServer\WebServer.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|