feat(battle-engine): scaffold empty SVSim.BattleEngine library

This commit is contained in:
gamer147
2026-06-05 16:34:46 -04:00
parent 13f902ce58
commit bb80815b01
5 changed files with 22 additions and 0 deletions

View File

View File

View File

@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<!-- Decompiled code is not nullable-clean and uses explicit usings. -->
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Decompiled code triggers many benign warnings; do not fail on them. -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS0108;CS0114;CS0162;CS0164;CS0219;CS0414;CS0649;CS0660;CS0661;CS1998</NoWarn>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
</Project>

View File