build(generator): 修正源代码生成器DLL包路径配置

- 修正 GFramework.Godot.SourceGenerators 项目的DLL包路径
- 修正 GFramework.SourceGenerators 项目的DLL包路径
- 移除多余的命名空间前缀 GeWuYou
- 确保生成器DLL正确包含到analyzers目录
This commit is contained in:
GwWuYou 2025-12-27 22:21:43 +08:00
parent 0126b69c5c
commit 74b807b063
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
<!-- ★关键:只把 Generator DLL 放进 analyzers --> <!-- ★关键:只把 Generator DLL 放进 analyzers -->
<ItemGroup> <ItemGroup>
<!-- Generator 本体 --> <!-- Generator 本体 -->
<None Include="$(OutputPath)\GeWuYou.GFramework.Godot.SourceGenerators.dll" <None Include="$(OutputPath)\GFramework.Godot.SourceGenerators.dll"
Pack="true" Pack="true"
PackagePath="analyzers/dotnet/cs" PackagePath="analyzers/dotnet/cs"
Visible="false"/> Visible="false"/>

View File

@ -34,7 +34,7 @@
<!-- ★关键:只把 Generator DLL 放进 analyzers --> <!-- ★关键:只把 Generator DLL 放进 analyzers -->
<ItemGroup> <ItemGroup>
<!-- Generator 本体 --> <!-- Generator 本体 -->
<None Include="$(OutputPath)\GeWuYou.GFramework.SourceGenerators.dll" <None Include="$(OutputPath)\GFramework.SourceGenerators.dll"
Pack="true" Pack="true"
PackagePath="analyzers/dotnet/cs" PackagePath="analyzers/dotnet/cs"
Visible="false"/> Visible="false"/>