mirror of https://github.com/grpc/grpc.git
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.
32 lines
1.7 KiB
32 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFrameworks>netcoreapp1.0;net45</TargetFrameworks> |
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> |
|
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Grpc" Version="__GRPC_NUGET_VERSION__" /> |
|
<PackageReference Include="Grpc.Auth" Version="__GRPC_NUGET_VERSION__" /> |
|
<PackageReference Include="Grpc.Tools" Version="__GRPC_NUGET_VERSION__" /> |
|
<PackageReference Include="Google.Protobuf" Version="3.7.0" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Protobuf Include="**\*.proto" /> |
|
</ItemGroup> |
|
|
|
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'"> |
|
<!-- Workaround for https://github.com/dotnet/sdk/issues/335 --> |
|
<FrameworkPathOverride Condition="Exists('/usr/lib/mono/4.5-api')">/usr/lib/mono/4.5-api</FrameworkPathOverride> |
|
<FrameworkPathOverride Condition="Exists('/usr/local/lib/mono/4.5-api')">/usr/local/lib/mono/4.5-api</FrameworkPathOverride> |
|
<FrameworkPathOverride Condition="Exists('/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/4.5-api')">/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/4.5-api</FrameworkPathOverride> |
|
</PropertyGroup> |
|
</Project> |