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.
|
|
|
|
const protoVersion = "3.17.3";
|
|
|
|
const protoToolsVersion = "3.17.2";
|
|
|
|
|
2020-10-19 22:09:41 +03:00
|
|
|
const grpcVersion = "2.32.0";
|
2020-01-30 19:18:57 +03:00
|
|
|
|
|
|
|
export const pkgs = [
|
|
|
|
// grpc
|
2021-07-24 05:56:39 +03:00
|
|
|
{ id: "Grpc.Net.Client", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource", "Microsoft.Extensions.Logging.Abstractions"]},
|
|
|
|
{ id: "Grpc.Net.Client.Web", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource", "Microsoft.Extensions.Logging.Abstractions"]},
|
|
|
|
{ id: "Grpc.Net.ClientFactory", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource", "Microsoft.Extensions.Http"]},
|
|
|
|
{ id: "Grpc.Net.Common", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource"]},
|
|
|
|
{ id: "Grpc.AspNetCore.Server.ClientFactory", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource"]},
|
|
|
|
{ id: "Grpc.AspNetCore.Server", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource"]},
|
|
|
|
{ id: "Grpc.AspNetCore", version: grpcVersion, dependentPackageIdsToSkip: ["System.Diagnostics.DiagnosticSource"]},
|
|
|
|
|
2020-01-30 19:18:57 +03:00
|
|
|
{ id: "Grpc.Core", version: grpcVersion, dependentPackageIdsToSkip: [ "System.Memory" ] },
|
|
|
|
{ id: "Grpc.Core.Api", version: grpcVersion, dependentPackageIdsToSkip: [ "System.Memory" ] },
|
|
|
|
{ id: "Grpc.Tools", version: grpcVersion },
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
{ id: "System.ServiceModel.Http", version: "4.7.0" },
|
|
|
|
{ id: "System.ServiceModel.Primitives", version: "4.7.0" },
|
|
|
|
{ id: "System.Private.ServiceModel", version: "4.7.0" },
|
|
|
|
|
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
|
|
|
];
|