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.
44 lines
1.5 KiB
44 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<Import Project="..\Grpc.Core\Common.csproj.include" /> |
|
|
|
<PropertyGroup> |
|
<Authors>The gRPC Authors</Authors> |
|
<Copyright>Copyright 2015 The gRPC Authors</Copyright> |
|
<Description>gRPC C# Authentication Library</Description> |
|
<PackageIconUrl>https://github.com/grpc/grpc.github.io/raw/master/img/grpc_square_reverse_4x.png</PackageIconUrl> |
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
|
<PackageProjectUrl>https://github.com/grpc/grpc</PackageProjectUrl> |
|
<PackageTags>gRPC RPC HTTP/2 Auth OAuth2</PackageTags> |
|
<VersionPrefix>$(GrpcCsharpVersion)</VersionPrefix> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<TargetFrameworks>net45;netstandard1.5;netstandard2.0</TargetFrameworks> |
|
<DefineConstants>$(DefineConstants);SIGNED</DefineConstants> |
|
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
</PropertyGroup> |
|
|
|
<Import Project="..\Grpc.Core\SourceLink.csproj.include" /> |
|
|
|
<ItemGroup> |
|
<Compile Include="..\Grpc.Core.Api\Version.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="../Grpc.Core/Grpc.Core.csproj"> |
|
<PrivateAssets>None</PrivateAssets> |
|
</ProjectReference> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Google.Apis.Auth" Version="1.21.0" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
<Reference Include="System" /> |
|
<Reference Include="Microsoft.CSharp" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|