rebuild structures, implement basic muip server, implement basic mail system

This commit is contained in:
Somebody
2024-06-06 17:08:16 +08:00
parent 9c705a17b0
commit 005aad70c8
68 changed files with 994 additions and 111 deletions

19
Program/Program.csproj Normal file
View File

@@ -0,0 +1,19 @@
<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>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Command\Command.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\GameServer\GameServer.csproj" />
<ProjectReference Include="..\WebServer\WebServer.csproj" />
</ItemGroup>
</Project>