Files
2024-09-27 19:07:08 +00:00

15 lines
453 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- We want to ensure that BSATN.Codegen on its own produces code compatible with Unity. -->
<!-- This means limiting project to .NET Standard 2.1 and C# 9. -->
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../../../BSATN.Runtime/BSATN.Runtime.csproj" />
</ItemGroup>
</Project>