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

  <PropertyGroup>
    <AssemblyTitle>Greeter</AssemblyTitle>
    <TargetFrameworks>netcoreapp1.0</TargetFrameworks>
    <DebugType>portable</DebugType>
    <AssemblyName>Greeter</AssemblyName>
    <PackageId>Greeter</PackageId>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Google.Protobuf" Version="3.5.0" />
    <PackageReference Include="Google.Protobuf.Tools" Version="3.5.0" />
    <PackageReference Include="Grpc" Version="1.8.0" />
    <PackageReference Include="Grpc.Tools" Version="1.8.0" />
  </ItemGroup>

</Project>