aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/csharp/Helloworld/Greeter/Greeter.csproj
blob: 7989f795418c1bf56750091854a2cc6e23f7d3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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" />
  </ItemGroup>

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

</Project>