2019-03-29 01:14:25 +03:00
|
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
2020-01-30 19:18:57 +03:00
|
|
|
const aspVersion = "2.2.0";
|
|
|
|
|
2020-08-03 21:29:15 +03:00
|
|
|
// Versions used by framework reference packages for reference assemblies
|
|
|
|
// and runtime assemblies respectively
|
|
|
|
const aspRefVersion = "3.1.3";
|
|
|
|
const aspRuntimeVersion = "3.1.5";
|
|
|
|
|
|
|
|
|
2019-03-29 01:14:25 +03:00
|
|
|
export const pkgs = [
|
2019-05-23 05:03:26 +03:00
|
|
|
// aspnet web api
|
2019-12-11 21:24:10 +03:00
|
|
|
{ id: "Microsoft.AspNet.WebApi.Client", version: "5.2.7" },
|
2019-03-29 01:14:25 +03:00
|
|
|
{ id: "Microsoft.AspNet.WebApi.Core", version: "5.2.3" },
|
|
|
|
{ id: "Microsoft.AspNet.WebApi.WebHost", version: "5.2.2" },
|
2019-05-23 05:03:26 +03:00
|
|
|
|
|
|
|
// aspnet core
|
2020-01-30 19:18:57 +03:00
|
|
|
{ id: "Microsoft.Extensions.Configuration.Abstractions", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Configuration.Binder", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Configuration", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.DependencyInjection.Abstractions", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Logging.Abstractions", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Logging", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Options", version: aspVersion },
|
|
|
|
{ id: "Microsoft.Extensions.Primitives", version: aspVersion },
|
2019-05-23 05:03:26 +03:00
|
|
|
|
2019-03-29 01:14:25 +03:00
|
|
|
{ id: "Microsoft.Net.Http", version: "2.2.29" },
|
2020-07-15 19:57:45 +03:00
|
|
|
|
2020-08-03 21:29:15 +03:00
|
|
|
{ id: "Microsoft.AspNetCore.App.Ref", version: aspRefVersion },
|
|
|
|
{ id: "Microsoft.AspNetCore.App.Runtime.win-x64", version: aspRuntimeVersion },
|
|
|
|
{ id: "Microsoft.AspNetCore.App.Runtime.linux-x64", version: aspRuntimeVersion },
|
|
|
|
{ id: "Microsoft.AspNetCore.App.Runtime.osx-x64", version: aspRuntimeVersion },
|
2019-03-29 01:14:25 +03:00
|
|
|
];
|