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
69 lines
2.8 KiB
XML
69 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>NetWorkMessage</RootNamespace>
|
|
<AssemblyName>NetWorkMessage</AssemblyName>
|
|
<LangVersion>9.0</LangVersion>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE;Server</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE;Server</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="MessagePack" />
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
|
|
<PackageReference Include="Microsoft.NET.StringTools" />
|
|
<PackageReference Include="System.Buffers" />
|
|
<PackageReference Include="System.Memory" />
|
|
<PackageReference Include="System.Numerics.Vectors" />
|
|
<PackageReference Include="System.Collections.Immutable" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" />
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- <Compile Include="..\..\hjha_Client\Assets\ScriptCode\GameData\GameData\**\*.cs">-->
|
|
<!-- <Link>GameData\Server\%(RecursiveDir)%(Filename)%(Extension)</Link>-->
|
|
<!-- </Compile>-->
|
|
<!-- <Compile Include="..\..\hjha_Client\Assets\ScriptCode\GamePack\Struct\**\*.cs">-->
|
|
<!-- <Link>OldPack\Struct\%(RecursiveDir)%(Filename)%(Extension)</Link>-->
|
|
<!-- </Compile>-->
|
|
<!-- <Compile Include="..\..\hjha_Client\Assets\ScriptCode\GameData\Message\**\*.cs">-->
|
|
<!-- <Link>MessageObject\%(RecursiveDir)%(Filename)%(Extension)</Link>-->
|
|
<!-- </Compile>-->
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
<ProjectReference Include="..\MrWu\MrWu.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="ServerData\Team\" />
|
|
</ItemGroup>
|
|
</Project> |