forked from jamescourtney/FlatSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSamples.csproj
More file actions
34 lines (30 loc) · 1.56 KB
/
Copy pathSamples.csproj
File metadata and controls
34 lines (30 loc) · 1.56 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<OutputType>exe</OutputType>
</PropertyGroup>
<ItemGroup>
<FlatSharpSchema Include="Example2-SchemaFiles\SchemaFilesExample.fbs" />
<FlatSharpSchema Include="Example3-SchemaFiles2\SchemaFilesExample2.fbs" />
<FlatSharpSchema Include="Example4-IOOptions\IOOptionsExample.fbs" />
<FlatSharpSchema Include="Example5-gRPC\GrpcExample.fbs" />
<FlatSharpSchema Include="Example6-CopyConstructors\CopyConstructorsExample.fbs" />
<FlatSharpSchema Include="Example7-Includes\A.fbs" />
<FlatSharpSchema Include="Example7-Includes\Subdirectory\B.fbs" />
<FlatSharpSchema Include="Example7-Includes\IncludesExample.fbs" />
<FlatSharpSchema Include="Example8-SortedVectors\SortedVectors.fbs" />
<FlatSharpSchema Include="Example9-Unions\Unions.fbs" />
<FlatSharpSchema Include="Example10-SharedStrings\SharedStrings.fbs" />
<FlatSharpSchema Include="Example11-IndexedVectors\IndexedVectors.fbs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FlatSharp" Version="4.1.0" />
<PackageReference Include="FlatSharp.Compiler" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FlatSharp.Runtime" Version="4.1.0" />
<PackageReference Include="FlatSharp.Unsafe" Version="4.1.0" />
<PackageReference Include="Grpc" Version="2.32.0" />
</ItemGroup>
</Project>