mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 将 Meziantou.Analyzer 从 2.0.302 版本更新到 3.0.9 版本 - 将 Godot.SourceGenerators 从 4.6.0 版本更新到 4.6.1 版本 - 在多个项目文件中统一更新了代码分析器依赖版本
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.1" PrivateAssets="all"/>
|
|
<PackageReference Include="GodotSharp" Version="4.6.1"/>
|
|
<PackageReference Include="GodotSharpEditor" Version="4.6.1" 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>
|