BREAKING CHANGE: moved yaml serialization from Engine.Serialization to Engine.Integration

This commit is contained in:
2025-08-05 19:48:49 +03:00
parent 3d183b21cd
commit 65dcb0c564
29 changed files with 8 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Engine.Integration.Yaml</RootNamespace>
<AssemblyName>Engine.Integration.Yaml</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Engine\Engine.csproj" />
<ProjectReference Include="..\YamlDotNet\YamlDotNet\YamlDotNet.csproj" />
</ItemGroup>
</Project>