1<Project Sdk="Microsoft.NET.Sdk">
2  <PropertyGroup>
3    <Authors>The gRPC Authors</Authors>
4    <Copyright>Copyright 2019 The gRPC Authors</Copyright>
5    <Description>gRPC C# Surface API</Description>
6    <PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl>
7    <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
8    <PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl>
9    <PackageTags>gRPC RPC HTTP/2</PackageTags>
10    <VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix>
11    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
12  </PropertyGroup>
13
14  <PropertyGroup>
15    <TargetFrameworks>net45;netstandard1.5;netstandard2.0</TargetFrameworks>
16    <GenerateDocumentationFile>true</GenerateDocumentationFile>
17    <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
18  </PropertyGroup>
19
20  <Import Project="..\Grpc.Core\SourceLink.csproj.include" />
21
22  <ItemGroup>
23    <PackageReference Include="System.Memory" Version="4.5.3" />
24  </ItemGroup>
25
26  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
27    <Reference Include="System" />
28    <Reference Include="Microsoft.CSharp" />
29  </ItemGroup>
30
31</Project>
32