mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 在 GFramework.Core 项目中添加 net10.0 目标框架 - 在 GFramework.Core.Godot 项目中添加 net10.0 目标框架 - 在主 GFramework 项目中添加 net10.0 目标框架 - 调整目标框架顺序,将 net8.0 置于首位
25 lines
750 B
XML
25 lines
750 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>GeWuYou.GFramework.Core.Godot</PackageId>
|
|
<Product>GeWuYou.GFramework.Core.Godot</Product>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Godot.SourceGenerators" Version="4.5.1"/>
|
|
<PackageReference Include="GodotSharpEditor" Version="4.5.1"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="extensions\ControlExtensions.cs"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|