6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
77 lines
2.8 KiB
XML
77 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>GameDAL</RootNamespace>
|
|
<AssemblyName>GameDAL</AssemblyName>
|
|
<LangVersion>8.0</LangVersion>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
<Configurations>Debug;Release</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
<DefineConstants>DEBUG;TRACE;Server</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>none</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
|
<DefineConstants>TRACE;Server</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" />
|
|
<PackageReference Include="System.Data.SQLite.Core" />
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" />
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="StackExchange.Redis">
|
|
<HintPath>..\dll\StackExchange.Redis.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CloudAPI\CloudAPI.csproj" />
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
<ProjectReference Include="..\NetWorkMessage\NetWorkMessage.csproj" />
|
|
<ProjectReference Include="..\ObjectModel\ObjectModel.csproj" />
|
|
<ProjectReference Include="..\ServerCore\ServerCore.csproj" />
|
|
<ProjectReference Include="..\ServerData\ServerData.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="db\redis\RedisTable.txt">
|
|
<LastGenOutput>RedisTable.txt</LastGenOutput>
|
|
</None>
|
|
<None Remove="Club\**" />
|
|
<None Remove="Eml\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="DBCore\DB\" />
|
|
<Folder Include="Game\Promoter\" />
|
|
<Folder Include="Web\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Club\**" />
|
|
<Compile Remove="Eml\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="Club\**" />
|
|
<EmbeddedResource Remove="Eml\**" />
|
|
</ItemGroup>
|
|
</Project> |