1<Project Sdk="Microsoft.NET.Sdk">
2
3  <PropertyGroup>
4    <OutputType>Exe</OutputType>
5    <TargetFramework>netcoreapp2.1</TargetFramework>
6    <LangVersion>latest</LangVersion>
7    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8    <DefineConstants>$(DefineConstants);UNSAFE_BYTEBUFFER;BYTEBUFFER_NO_BOUNDS_CHECK;ENABLE_SPAN_T</DefineConstants>
9  </PropertyGroup>
10
11  <ItemGroup>
12    <PackageReference Include="BenchmarkDotNet" Version="0.11.3" />
13    <PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.11.3" />
14  </ItemGroup>
15
16  <ItemGroup>
17    <Compile Include="..\..\net\FlatBuffers\*.cs" Link="FlatBuffers\%(FileName).cs" />
18    <Compile Include="..\MyGame\**\*.cs" Link="MyGame\Example\%(FileName).cs" />
19  </ItemGroup>
20
21</Project>
22