mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 将多个项目的TargetFramework从netstandard2.0更新为net8.0;net9.0;net10.0 - 优化Directory.Build.props中的注释和配置说明 - 添加缺失的using System;引用 - 调整资源加载系统命名空间从GFramework.Godot.system到GFramework.Godot.assets - 修正ILogger.cs中的异常消息格式 - 移除BindableProperty.cs中多余的可空断言操作符
21 lines
1.0 KiB
XML
21 lines
1.0 KiB
XML
<Project>
|
||
<!-- 配置项目构建属性,包括目标框架、CI构建设置、源代码嵌入和语言版本 -->
|
||
<PropertyGroup>
|
||
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||
<LangVersion>preview</LangVersion>
|
||
</PropertyGroup>
|
||
<!-- 引用代码分析和Polyfill功能的NuGet包,用于增强代码质量和兼容性 -->
|
||
<ItemGroup>
|
||
<PackageReference Include="Meziantou.Analyzer" Version="2.0.264">
|
||
<PrivateAssets>all</PrivateAssets>
|
||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||
</PackageReference>
|
||
<PackageReference Include="Meziantou.Polyfill" Version="1.0.71">
|
||
<PrivateAssets>all</PrivateAssets>
|
||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||
</PackageReference>
|
||
</ItemGroup>
|
||
</Project>
|