2020-01-30 19:18:57 +03:00
|
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2021-07-12 20:34:51 +03:00
|
|
|
// Ideally these are same version, but ProtoBuf has a newer patch version.
|
2022-10-03 23:54:21 +03:00
|
|
|
const protoVersion = "3.19.5";
|
|
|
|
const protoToolsVersion = "3.19.5";
|
2021-07-12 20:34:51 +03:00
|
|
|
|
2023-01-27 01:47:53 +03:00
|
|
|
const grpcNetVersion = "2.51.0";
|
|
|
|
const grpcCoreVersion = "2.51.0";
|
2020-01-30 19:18:57 +03:00
|
|
|
|
|
|
|
export const pkgs = [
|
|
|
|
// grpc
|
2024-01-22 06:37:25 +03:00
|
|
|
{ id: "Grpc.Net.Client", version: grpcNetVersion, dependentPackageIdsToSkip: [ "Microsoft.Extensions.Logging.Abstractions" ]},
|
2022-06-24 22:34:42 +03:00
|
|
|
{ id: "Grpc.Net.Client.Web", version: grpcNetVersion},
|
2023-05-18 21:32:07 +03:00
|
|
|
{ id: "Grpc.Net.ClientFactory", version: grpcNetVersion, dependentPackageIdsToSkip: [ "Microsoft.Extensions.Http" ]},
|
2022-06-24 22:34:42 +03:00
|
|
|
{ id: "Grpc.Net.Common", version: grpcNetVersion},
|
|
|
|
{ id: "Grpc.AspNetCore.Server.ClientFactory", version: grpcNetVersion},
|
|
|
|
{ id: "Grpc.AspNetCore.Server", version: grpcNetVersion},
|
|
|
|
{ id: "Grpc.AspNetCore", version: grpcNetVersion},
|
2022-01-14 02:51:44 +03:00
|
|
|
|
2022-07-09 03:51:16 +03:00
|
|
|
{ id: "Grpc.Core", version: "2.46.3", dependentPackageIdsToSkip: [ "System.Memory" ] },
|
2022-06-24 22:34:42 +03:00
|
|
|
{ id: "Grpc.Core.Api", version: grpcCoreVersion, dependentPackageIdsToSkip: [ "System.Memory" ] },
|
|
|
|
{ id: "Grpc.Tools", version: grpcCoreVersion },
|
2020-01-30 19:18:57 +03:00
|
|
|
|
|
|
|
// protobuf
|
|
|
|
{ id: "Google.Protobuf", version: protoVersion, dependentPackageIdsToSkip: [ "System.Memory" ] },
|
2021-07-12 20:34:51 +03:00
|
|
|
{ id: "Google.Protobuf.Tools", version: protoToolsVersion },
|
2021-05-07 05:24:18 +03:00
|
|
|
|
|
|
|
// protobuf-net
|
2021-06-22 01:19:32 +03:00
|
|
|
{ id: "protobuf-net.Core", version: "3.0.101",
|
|
|
|
dependentPackageIdsToSkip: [ "System.Memory" ] },
|
|
|
|
{ id: "protobuf-net", version: "3.0.101",
|
|
|
|
dependentPackageIdsToSkip: [ "System.Memory" ] },
|
|
|
|
{ id: "protobuf-net.Grpc", version: "1.0.152",
|
|
|
|
dependentPackageIdsToSkip: [ "System.Memory", "System.Threading.Channels", "Grpc.Core.Api" ] },
|
|
|
|
{ id: "protobuf-net.Grpc.Native", version: "1.0.152",
|
|
|
|
dependentPackageIdsToSkip: [ "System.Memory", "System.Threading.Channels", "Grpc.Core" ] },
|
2022-01-13 01:29:24 +03:00
|
|
|
{ id: "protobuf-net.Grpc.AspNetCore", version: "1.0.152",
|
|
|
|
dependentPackageIdsToSkip: [ "System.Memory", "System.Threading.Channels", "Grpc.Core" ] },
|
2021-05-07 05:24:18 +03:00
|
|
|
|
2023-01-20 20:07:54 +03:00
|
|
|
{ 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: "5.0.10" },
|
2021-05-07 05:24:18 +03:00
|
|
|
|
2021-07-24 05:56:39 +03:00
|
|
|
{ id: "Microsoft.Extensions.Hosting.Abstractions", version: "3.0.3" },
|
|
|
|
{ id: "Microsoft.Extensions.FileProviders.Abstractions", version: "3.0.3" },
|
2020-01-30 19:18:57 +03:00
|
|
|
];
|