-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrism.csproj
28 lines (24 loc) · 1.07 KB
/
Prism.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Specify output directory for generated code -->
<Protobuf_OutputDir>Generated</Protobuf_OutputDir>
<PackageId>Polypheny.Prism</PackageId>
<RootNamespace>Polypheny.Prism</RootNamespace>
<PackageDescription>API communication library for the Polypheny Prism query protocol.</PackageDescription>
</PropertyGroup>
<!-- Add necessary package references -->
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
<PackageReference Include="Grpc.Tools" Version="2.63.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- Protobuf configurations -->
<ItemGroup>
<Protobuf Include="org/polypheny/prism/*.proto" OutputDir="$(Protobuf_OutputDir)" GrpcServices="None" />
</ItemGroup>
</Project>