-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathSamples.csproj
42 lines (37 loc) · 1.89 KB
/
Samples.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>exe</OutputType>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<!-- Necessary only for the unsafe example. -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<FlatSharpSchema Include="Example00-Basics\Basics.fbs" />
<FlatSharpSchema Include="Example01-DeserializationModes\DeserializationModes.fbs" />
<FlatSharpSchema Include="Example02-Vectors\Vectors.fbs" />
<FlatSharpSchema Include="Example03-IOOptions\IOOptionsExample.fbs" />
<FlatSharpSchema Include="Example04-gRPC\GrpcExample.fbs" />
<FlatSharpSchema Include="Example05-CopyConstructors\CopyConstructorsExample.fbs" />
<FlatSharpSchema Include="Example06-Includes\**\*.fbs">
<IncludePath>Example06-Includes</IncludePath>
</FlatSharpSchema>
<FlatSharpSchema Include="Example07-SortedVectors\SortedVectors.fbs" />
<FlatSharpSchema Include="Example08-IndexedVectors\IndexedVectors.fbs" />
<FlatSharpSchema Include="Example09-Unions\Unions.fbs" />
<FlatSharpSchema Include="Example10-SharedStrings\SharedStrings.fbs" />
<FlatSharpSchema Include="Example11-StructVectors\StructVectors.fbs" />
<FlatSharpSchema Include="Example12-WriteThrough\WriteThrough.fbs" />
<FlatSharpSchema Include="Example13-ValueStructs\ValueStructs.fbs" />
<FlatSharpSchema Include="Example14-UnsafeOptions\UnsafeOptions.fbs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FlatSharp.Compiler" Version="7.5.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FlatSharp.Runtime" Version="7.5.1" />
<PackageReference Include="Grpc" Version="2.46.6" />
</ItemGroup>
</Project>