Major ECS API overhaul: added ComponentSet, refactored ComponentRegistry, and updated all entity/component creation methods. Introduced robust custom serialization infrastructure and per-component source generators for registration and (de)serialization. Updated editor, engine, and test code to use new APIs. Improved code quality, naming, and performance throughout. Removed obsolete code and updated dependencies.
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.2" />
|
|
<PackageReference Include="Misaki.HighPerformance.Jobs" Version="1.2.1" />
|
|
<PackageReference Include="Misaki.HighPerformance.LowLevel" Version="1.3.2" />
|
|
<PackageReference Include="Misaki.HighPerformance.Mathematics" Version="1.3.0" />
|
|
<PackageReference Include="System.IO.Hashing" Version="10.0.1" />
|
|
<PackageReference Include="TerraFX.Interop.Windows" Version="10.0.26100.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|