forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.GrpcClient.csproj
More file actions
26 lines (22 loc) · 1.21 KB
/
ServiceStack.GrpcClient.csproj
File metadata and controls
26 lines (22 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>ServiceStack.GrpcClient</PackageId>
<AssemblyName>ServiceStack.GrpcClient</AssemblyName>
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<RootNamespace>ServiceStack</RootNamespace>
<LangVersion>default</LangVersion>
<Title>ServiceStack.GrpcClient</Title>
<PackageDescription>ServiceStack's gRPC GrpcServiceClient</PackageDescription>
<PackageTags>ServiceStack;ServiceClients;gRPC</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Grpc.Net.Client" Version="2.40.0" />
<PackageReference Include="Grpc.Core" Version="2.41.1" />
<PackageReference Include="protobuf-net.Grpc" Version="1.0.152" />
<!-- the transitive import of protobuf-net is lower; we need at least this -->
<PackageReference Include="protobuf-net" Version="3.0.101" />
<PackageReference Include="ServiceStack.Text" Version="$(Version)" />
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.csproj" />
</ItemGroup>
</Project>