-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBlueye.Protocol.Protobuf.csproj
31 lines (27 loc) · 1.3 KB
/
Blueye.Protocol.Protobuf.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>13.0</LangVersion>
<PackageId>Blueye.Protocol.Protobuf</PackageId>
<VersionPrefix>4.7.0</VersionPrefix>
<Company>Blueye Robotics AS</Company>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<PackageDescription>Library with dotnet representation of the ProtocolDefinition protobuf files.</PackageDescription>
<RepositoryUrl>https://github.com/BluEye-Robotics/ProtocolDefinitions</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.29.3" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.29.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Grpc.Tools" Version="2.69.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Protobuf Include="**/*.proto" ProtoRoot="protobuf_definitions" GrpcServices="None" />
</ItemGroup>
</Project>