1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <Authors>The gRPC Authors</Authors> 4 <Copyright>Copyright 2015 The gRPC Authors</Copyright> 5 <Description>Metapackage for gRPC C#</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 </PropertyGroup> 12 13 <PropertyGroup> 14 <TargetFrameworks>net45;netstandard1.5;netstandard2.0</TargetFrameworks> 15 <!-- This is only a metapackage --> 16 <IncludeBuildOutput>false</IncludeBuildOutput> 17 <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> 18 </PropertyGroup> 19 20 <ItemGroup> 21 <!-- PrivateAssets set to None to ensure the build targets/props are propagated to parent project --> 22 <ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" PrivateAssets="None" /> 23 </ItemGroup> 24</Project> 25