The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<Import Project="..\Grpc.Core\Version.csproj.include" /> |
|
<Import Project="..\Grpc.Core\Common.csproj.include" /> |
|
|
|
<PropertyGroup> |
|
<Copyright>Copyright 2016, Google Inc.</Copyright> |
|
<AssemblyTitle>gRPC C# Reflection</AssemblyTitle> |
|
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> |
|
<Authors>Google Inc.</Authors> |
|
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks> |
|
<AssemblyName>Grpc.Reflection</AssemblyName> |
|
<PackageId>Grpc.Reflection</PackageId> |
|
<PackageTags>gRPC reflection</PackageTags> |
|
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl> |
|
<PackageLicenseUrl>https://github.com/grpc/grpc/blob/master/LICENSE</PackageLicenseUrl> |
|
<IncludeSymbols>true</IncludeSymbols> |
|
<IncludeSource>true</IncludeSource> |
|
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="..\Grpc.Core\Version.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="../Grpc.Core/Grpc.Core.csproj"> |
|
<PrivateAssets>None</PrivateAssets> |
|
</ProjectReference> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Google.Protobuf" Version="$(GoogleProtobufVersion)" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
<Reference Include="System" /> |
|
<Reference Include="Microsoft.CSharp" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|