mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 在所有项目中禁用 ImplicitUsings 配置 - 为所有项目添加 GlobalUsings.cs 文件统一管理常用命名空间 - 统一添加 System、System.Collections.Generic、System.Linq、System.Threading 和 System.Threading.Tasks 的全局引用 - 更新项目文件中的 PackageReference 格式规范化 - 移除各个源文件顶部的重复 using 语句 - 添加标准版权头注释到全局引用文件
22 lines
953 B
XML
22 lines
953 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.5.1" PrivateAssets="all" />
|
|
<PackageReference Include="GodotSharp" Version="4.5.1" />
|
|
<PackageReference Include="GodotSharpEditor" Version="4.5.1" 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>
|