aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/csharp/Helloworld/Greeter/Greeter.csproj
blob: 3d4be5da6b45d3b90805962797f537e59525ff4c (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.13.1" />
    <PackageReference Include="Grpc.Tools" Version="1.13.1" />
  </ItemGroup>

</Project>