1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <Authors>The gRPC Authors</Authors> 4 <Copyright>Copyright 2015 The gRPC Authors</Copyright> 5 <Description>Debug symbols for the native library contained in Grpc.Core</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 package only carries native debug symbols --> 16 <IncludeBuildOutput>false</IncludeBuildOutput> 17 <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> 18 </PropertyGroup> 19 20 <ItemGroup> 21 <None Include="..\nativelibs\csharp_ext_windows_x86\grpc_csharp_ext.dll"> 22 <PackagePath>runtimes/win-x86/native/grpc_csharp_ext.x86.dll</PackagePath> 23 <Pack>true</Pack> 24 </None> 25 <None Include="..\nativelibs\csharp_ext_windows_x86\grpc_csharp_ext.pdb"> 26 <PackagePath>runtimes/win-x86/native/grpc_csharp_ext.x86.pdb</PackagePath> 27 <Pack>true</Pack> 28 </None> 29 <None Include="..\nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll"> 30 <PackagePath>runtimes/win-x64/native/grpc_csharp_ext.x64.dll</PackagePath> 31 <Pack>true</Pack> 32 </None> 33 <None Include="..\nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.pdb"> 34 <PackagePath>runtimes/win-x64/native/grpc_csharp_ext.x64.pdb</PackagePath> 35 <Pack>true</Pack> 36 </None> 37 </ItemGroup> 38</Project> 39