- Updated Misaki.HighPerformance package versions in Core and Graphics projects. - Added IsTrimmable to Ghost.Engine.csproj for trimming support. - Renamed GetOrRegisterComponent to GetOrRegisterComponentID and updated all usages. - Component registration codegen now uses a static class with [ModuleInitializer], no longer requires [EngineEntry]. - Improved JSON serialization: added string support, introduced Utf8JsonObjectScope/ArrayScope, and new extension methods for cleaner JSON writing. - Removed [SkipLocalsInit] from Hierarchy and LocalToWorld. - Fixed Entity.Invalid to use INVALID_ID for both fields. - Minor cleanup: clarified comments, reorganized Ghost.Generator in solution, and disabled component serialization generator.
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<IsAotCompatible>True</IsAotCompatible>
|
|
<DefineConstants>$(DefineConstants);PLATEFORME_WIN64</DefineConstants>
|
|
<IsTrimmable>True</IsTrimmable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<IsAotCompatible>True</IsAotCompatible>
|
|
<DefineConstants>$(DefineConstants);PLATEFORME_WIN64</DefineConstants>
|
|
<IsTrimmable>True</IsTrimmable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Misaki.HighPerformance" Version="1.0.3" />
|
|
<PackageReference Include="Misaki.HighPerformance.Jobs" Version="1.2.2" />
|
|
<PackageReference Include="Misaki.HighPerformance.LowLevel" Version="1.3.3" />
|
|
<PackageReference Include="Misaki.HighPerformance.Mathematics" Version="1.3.1" />
|
|
<PackageReference Include="System.IO.Hashing" Version="10.0.1" />
|
|
<PackageReference Include="TerraFX.Interop.Windows" Version="10.0.26100.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|