mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 19:58:24 -04:00
15 lines
453 B
XML
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>
|