aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/csharp/RouteGuide/RouteGuide/RouteGuide.csproj
blob: 4c6949488c7040e93db010830cd2c45e931f9846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netstandard1.5</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Google.Protobuf" Version="3.6.1" />
    <PackageReference Include="Grpc" Version="1.17.0" />
    <PackageReference Include="Grpc.Tools" Version="1.17.0" PrivateAssets="All" />
    <PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
  </ItemGroup>

  <ItemGroup>
    <Protobuf Include="..\..\..\protos\route_guide.proto" Link="protos\route_guide.proto" />
  </ItemGroup>

  <ItemGroup>
    <None Include="route_guide_db.json" CopyToOutputDirectory="PreserveNewest" />
  </ItemGroup>

</Project>