mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 新增 docfx.json 配置文件用于 API 文档生成 - 在所有项目文件中启用 GenerateDocumentationFile 选项 - 添加 GitHub Actions 工作流 publish-docs.yml 实现文档自动发布 - 配置工作流触发条件支持标签推送和特定提交信息 - 设置文档构建环境使用 .NET 10.0 和 DocFX 工具 - 实现文档站点部署到 GitHub Pages 的完整流程 - [release doc]
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>GeWuYou.$(AssemblyName)</PackageId>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Godot.SourceGenerators" Version="4.6.0" PrivateAssets="all"/>
|
|
<PackageReference Include="GodotSharp" Version="4.6.0"/>
|
|
<PackageReference Include="GodotSharpEditor" Version="4.6.0" PrivateAssets="all"/>
|
|
<PackageReference Include="LanguageExt.Core" Version="4.4.9"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Game\GFramework.Game.csproj"/>
|
|
<ProjectReference Include="..\GFramework.Game.Abstractions\GFramework.Game.Abstractions.csproj" PrivateAssets="all"/>
|
|
<ProjectReference Include="..\GFramework.Core.Abstractions\GFramework.Core.Abstractions.csproj" PrivateAssets="all"/>
|
|
</ItemGroup>
|
|
</Project>
|