mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-06-26 05:21:15 +00:00
7633134a8a
Extract tile_provision.proto into GrpcContracts, add integration tests and validation hardening for DeliverRouteTiles streaming. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
767 B
XML
24 lines
767 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.71.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="tile_provision.proto" GrpcServices="Both" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|