Files
hjha-server/CloudAPI/CloudAPI.csproj
xiaoou e9616125ce feat: initial commit - HJHA game server full source
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
2026-07-07 12:02:15 +08:00

72 lines
2.6 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>CloudAPI</RootNamespace>
<AssemblyName>CloudAPI</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Platforms>AnyCPU</Platforms>
</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</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aliyun.OSS.SDK" />
<PackageReference Include="AlibabaCloud.EndpointUtil" />
<PackageReference Include="AlibabaCloud.GatewaySpi" />
<PackageReference Include="AlibabaCloud.OpenApiClient" />
<PackageReference Include="AlibabaCloud.OpenApiUtil" />
<PackageReference Include="AlibabaCloud.SDK.Dypnsapi20170525" />
<PackageReference Include="AlibabaCloud.TeaUtil" />
<PackageReference Include="AlibabaCloud.TeaXML" />
<PackageReference Include="Aliyun.Credentials" />
<PackageReference Include="Tea" />
<PackageReference Include="HuaweiCloud.SDK.Core" />
<PackageReference Include="HuaweiCloud.SDK.Cdn" />
<PackageReference Include="System.Memory" />
</ItemGroup>
<!-- <ItemGroup>-->
<!-- <Compile Include="..\..\hjha_Client\Assets\ScriptCode\Editor\Cloud\**\*.cs">-->
<!-- <Link>Cloud\%(RecursiveDir)%(Filename)%(Extension)</Link>-->
<!-- </Compile>-->
<!-- </ItemGroup>-->
<ItemGroup>
<Reference Include="Aliyun.Api.LogService">
<HintPath>..\dll\Aliyun.Api.LogService.dll</HintPath>
</Reference>
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MrWu\MrWu.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Cloud\Huawei\" />
</ItemGroup>
</Project>