mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-01 10:16:58 -05:00
29 lines
814 B
XML
29 lines
814 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FlatSharp.Runtime" Version="7.4.0" />
|
|
<PackageReference Include="FlatSharp.Compiler" Version="7.4.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<FlatSharpDeserializers>GreedyMutable</FlatSharpDeserializers>
|
|
<FlatSharpInputFilesOnly>true</FlatSharpInputFilesOnly>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FlatSharpSchema Include="Schemas\**\*.fbs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Schemas\**\*.fbs" />
|
|
</ItemGroup>
|
|
</Project>
|