implement dispatch server

This commit is contained in:
Somebody
2024-02-24 22:42:19 +08:00
commit be9fec5a9f
544 changed files with 152440 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>EggLink.DanhengServer</RootNamespace>
<StartupObject>EggLink.DanhengServer.Program.EntryPoint</StartupObject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\WebServer\WebServer.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Server\" />
<Folder Include="Game\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SQLitePCLRaw.core" Version="2.1.8" />
<PackageReference Include="SQLitePCLRaw.provider.e_sqlite3" Version="2.1.8" />
</ItemGroup>
</Project>