mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 11:14:30 +08:00
- 将 Meziantou.Analyzer 从 2.0.283 更新到 2.0.286 - 将 Godot 相关包从 4.5.1 更新到 4.6.0 - 统一所有项目中的代码分析器版本 - 保持依赖包版本一致性
22 lines
950 B
XML
22 lines
950 B
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>
|
|
</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"/>
|
|
</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>
|