-
Notifications
You must be signed in to change notification settings - Fork 147
/
config.nuget.grpc.dsc
43 lines (35 loc) · 1.83 KB
/
config.nuget.grpc.dsc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Ideally these are same version, but ProtoBuf has a newer patch version.
const protoVersion = "3.28.0";
const protoToolsVersion = "3.24.1";
const grpcNetVersion = "2.51.0";
const grpcCoreVersion = "2.51.0";
export const pkgs = [
// grpc
{ id: "Grpc.Net.Client", version: grpcNetVersion },
{ id: "Grpc.Net.Client.Web", version: grpcNetVersion},
{ id: "Grpc.Net.ClientFactory", version: grpcNetVersion },
{ id: "Grpc.Net.Common", version: grpcNetVersion},
{ id: "Grpc.AspNetCore.Server.ClientFactory", version: grpcNetVersion},
{ id: "Grpc.AspNetCore.Server", version: grpcNetVersion},
{ id: "Grpc.AspNetCore", version: grpcNetVersion},
{ id: "Grpc.Core", version: "2.46.6" },
{ id: "Grpc.Core.Api", version: grpcCoreVersion },
{ id: "Grpc.Tools", version: grpcCoreVersion },
// protobuf
{ id: "Google.Protobuf", version: protoVersion },
{ id: "Google.Protobuf.Tools", version: protoToolsVersion },
// protobuf-net
{ id: "protobuf-net.Core", version: "3.0.101" },
{ id: "protobuf-net", version: "3.0.101" },
{ id: "protobuf-net.Grpc", version: "1.0.152" },
{ id: "protobuf-net.Grpc.Native", version: "1.0.152" },
{ id: "protobuf-net.Grpc.AspNetCore", version: "1.0.152" },
{ id: "System.ServiceModel.Http", version: "4.10.0" },
{ id: "System.ServiceModel.Primitives", version: "4.10.0" },
{ id: "System.Private.ServiceModel", version: "4.10.0" },
{ id: "Microsoft.Extensions.ObjectPool", version: "6.0.35" },
{ id: "Microsoft.Extensions.Hosting.Abstractions", version: "3.0.3" },
{ id: "Microsoft.Extensions.FileProviders.Abstractions", version: "3.0.3" },
];