forked from EggLinks/DanhengServer-Public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.csproj
30 lines (25 loc) · 909 Bytes
/
Program.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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>
<ProjectReference Include="..\Command\Command.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\GameServer\GameServer.csproj" />
<ProjectReference Include="..\WebServer\WebServer.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="DanhengKcpSharp">
<HintPath>..\DanhengKcpSharp\DanhengKcpSharp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>