feat: 项目初始化 + 3D方块世界原型 + AI助搭系统
CI / Go Backend (push) Canceled after 0s

初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器

HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块

Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚

AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
This commit is contained in:
xyou
2026-08-08 14:07:56 +08:00
parent 9500c4c80a
commit f70b061d1a
1972 changed files with 159760 additions and 6 deletions
+103
View File
@@ -0,0 +1,103 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- 项目属性 -->
<PropertyGroup>
<AssemblyTitle>PCL.Core</AssemblyTitle>
<AssemblyName>PCL.Core</AssemblyName>
<Description>PCL Community 为 PCL 开发的启动器核心库</Description>
<Company>PCL Community</Company>
<Product>PCL.Core</Product>
<Copyright>Copyright © PCL Community</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<Configurations>Debug;CI;Release;Beta</Configurations>
<Platforms>AnyCPU;x64;ARM64</Platforms>
<ProjectGuid>{A0C2209D-64FB-4C11-9459-8E86304B6F94}</ProjectGuid>
<RootNamespace>PCL.Core</RootNamespace>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<OutputPath>bin\$(Configuration)-$(Platform)\</OutputPath>
<PlatformTarget>$(Platform)</PlatformTarget>
<NoWarn>$(NoWarn);CS9113</NoWarn>
</PropertyGroup>
<!-- 构建配置 -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug' Or '$(Configuration)' == 'CI' Or '$(Configuration)' == 'DebugCI'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants Condition="'$(Configuration)' == 'Debug'">DEBUG;TRACE</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'CI' Or '$(Configuration)' == 'DebugCI'">CI;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Beta' Or '$(Configuration)' == 'Release' Or '$(Configuration)' == 'Publish'">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<DefineConstants Condition="'$(Configuration)' == 'Release' Or '$(Configuration)' == 'Publish'">RELEASE;PUBLISH</DefineConstants>
<DefineConstants Condition="'$(Configuration)' == 'Beta'">BETA;PUBLISH</DefineConstants>
</PropertyGroup>
<!-- NuGet 引用 -->
<ItemGroup>
<!-- UI -->
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.142" />
<PackageReference Include="Wacton.Unicolour" Version="8.0.0" />
<!-- 语言和系统特性 -->
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Management" Version="10.0.9" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.9" />
<PackageReference Include="PlainToolkit.CngProtectedData" Version="2.1.0" />
<!-- 归档文件 -->
<PackageReference Include="SharpZipLib" Version="1.4.2" />
<!-- 配置文件和数据库 -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.9" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
<PackageReference Include="System.Text.Json" Version="10.0.9" />
<PackageReference Include="YamlDotNet" Version="18.1.0" />
<PackageReference Include="fNbt" Version="1.0.0" />
<PackageReference Include="LiteDB" Version="5.0.21" />
<!-- 网络 -->
<PackageReference Include="Ae.Dns.Client" Version="3.1.0" />
<PackageReference Include="Stun.Net" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.9" />
<PackageReference Include="Polly" Version="8.7.0" />
<!-- 本地化 -->
<PackageReference Include="Humanizer.Core.zh-CN" Version="3.0.10" />
<!-- 日志与遥测 -->
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Sentry" Version="6.6.0" />
<!-- 身份认证 -->
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.19.1" />
<!-- 验证 -->
<PackageReference Include="FluentValidation" Version="12.1.1" />
</ItemGroup>
<!-- 信不过巨硬的智障代码,手动包含需要的文件 -->
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
<EnableDefaultApplicationDefinition>false</EnableDefaultApplicationDefinition>
<EnableDefaultPageItems>false</EnableDefaultPageItems>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" Exclude="bin\**;obj\**;publish\**;**\*.g.cs;SourceGenerators\**" />
<Page Include="**\*.xaml" Exclude="bin\**;obj\**;publish\**" />
<Resource Include="UI\Assets\*" />
<Resource Include="UI\Assets\Shaders\*.ps" />
<Resource Include="UI\Assets\IconPacks\**\*.svg" />
</ItemGroup>
<!-- 项目自定义源生成器 -->
<ItemGroup>
<AdditionalFiles Include="App\IoC\LifecycleState.cs" />
<ProjectReference Include="..\PCL.Core.SourceGenerators\PCL.Core.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>