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.
47 lines
1.4 KiB
47 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<Import Project="..\Grpc.Core\Common.csproj.include" /> |
|
|
|
<PropertyGroup> |
|
<TargetFrameworks>net45;netcoreapp2.1</TargetFrameworks> |
|
<OutputType>Exe</OutputType> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="../Grpc.Auth/Grpc.Auth.csproj" /> |
|
<ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Google.Protobuf" Version="$(GoogleProtobufVersion)" /> |
|
<PackageReference Include="CommandLineParser" Version="2.3.0" /> |
|
<PackageReference Include="NUnit" Version="3.10.1" /> |
|
<PackageReference Include="NUnitLite" Version="3.10.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
<Reference Include="System" /> |
|
<Reference Include="Microsoft.CSharp" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="..\Grpc.Core.Api\Version.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="data\server1.pem"> |
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
<Pack>false</Pack> |
|
</Content> |
|
<Content Include="data\server1.key"> |
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
<Pack>false</Pack> |
|
</Content> |
|
<Content Include="data\ca.pem"> |
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
|
<Pack>false</Pack> |
|
</Content> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|