Add 34 offline integration checks for partial writes, malformed records, session joins, bounded history, file rotation, and recovery without game or model connections.
12 lines
435 B
XML
12 lines
435 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- Compile the same core files without Godot, game assemblies, or test packages. -->
|
|
<Compile Include="../Core/**/*.cs" Link="Core/%(Filename)%(Extension)" />
|
|
</ItemGroup>
|
|
</Project>
|