commit 82d5db9ecf95e1a1536ddab66957ce9a5531cc9e
Author: cKey <35512826+colinin@users.noreply.github.com>
Date: Fri May 15 23:48:30 2020 +0800
整合后台服务
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..051ce9c8b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,30 @@
+.DS_Store
+node_modules
+/dist
+vue.config.js
+.env.production
+task
+
+/tests/e2e/videos/
+/tests/e2e/screenshots/
+/tests/**/coverage/
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+.history
+.ionide
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw*
diff --git a/README.en.md b/README.en.md
new file mode 100644
index 000000000..85dd66395
--- /dev/null
+++ b/README.en.md
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+English | [简体中文](./README.md)
+
+## Overview
+
+[vue-typescript-admin-template](http://armour.github.io/vue-typescript-admin-template) is a production-ready front-end solution for admin interfaces based on [vue](https://github.com/vuejs/vue), [typescript](https://www.typescriptlang.org/) and UI Toolkit [element-ui](https://github.com/ElemeFE/element). The original Javascript version code [vue-element-admin](https://github.com/PanJiaChen/vue-element-admin/) was written by [PanJiaChen](https://github.com/PanJiaChen), many thanks to him for the awesome open source project! :)
+
+If you want to get started with a minimal template code instead of integration solution, you can take a look at the [minimal](https://github.com/Armour/vue-typescript-admin-template/tree/minimal) branch.
+
+## Documentation
+
+[Docs](https://armour.github.io/vue-typescript-admin-docs)
+
+## Live demo
+
+[Demo](https://armour.github.io/vue-typescript-admin-template)
+
+## Screenshots
+
+
+
+## Related Projects
+
+[Armour/vue-typescript-admin-mock-server](https://github.com/armour/vue-typescript-admin-mock-server) (mock server for this project)
+
+[Armour/vue-typescript-admin-docs](https://github.com/armour/vue-typescript-admin-docs) (documentation source for this project)
+
+Javascript version:
+
+[PanJiaChen/vue-admin-template](https://github.com/PanJiaChen/vue-admin-template) (a vue2.0 minimal admin template)
+
+[PanJiaChen/vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) (full features supported vue admin)
+
+[PanJiaChen/electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) (a vue electron admin project)
+
+## Features
+
+```txt
+- Login / Logout
+
+- Permission Authentication
+ - Page permission
+ - Directive permission
+ - Permission configuration page
+ - Two-step login
+
+- Multi-environment build
+ - Dev / Stage / Prod
+
+- Global Features
+ - I18n
+ - Dynamic themes
+ - Dynamic sidebar (supports multi-level routing)
+ - Dynamic breadcrumb
+ - Tags-view (supports right-click operation)
+ - Clipboard
+ - Svg icons
+ - Search
+ - Screenfull
+ - Settings
+ - Mock data / Mock server
+ - PWA support
+
+- Components
+ - Editors
+ - Rich Text Editor
+ - Markdown Editor
+ - JSON Editor
+ - Avatar Upload
+ - Back To Top
+ - CountTo
+ - Dropzone
+ - Draggable Dialog
+ - Draggable Kanban
+ - Draggable List
+ - Draggable Select
+ - ECharts
+ - Mixin
+ - SplitPane
+ - Sticky
+
+- Table
+ - Dynamic Table
+ - Draggable Table
+ - Inline Edit Table
+ - Complex Table
+
+- Excel
+ - Export Excel
+ - Upload Excel
+ - Excel Visualization
+
+- Zip
+ - Export zip
+
+- PDF
+ - Download pdf
+
+- Dashboard
+- Guide Page
+- Advanced Example Page
+- Error Log
+- Error Page
+ - 401
+ - 404
+```
+
+## Preparation
+
+You need to install [node](http://nodejs.org/) and [git](https://git-scm.com/) locally. The project is based on [typescript](https://www.typescriptlang.org/), [vue](https://vuejs.org/index.html), [vuex](https://vuex.vuejs.org/), [vue-router](https://router.vuejs.org/), [vue-cli](https://github.com/vuejs/vue-cli) , [axios](https://github.com/axios/axios) and [element-ui](https://github.com/ElemeFE/element), all request data is simulated using [faker.js](https://github.com/Marak/Faker.js).
+Understanding and learning these knowledge in advance will greatly help you on using this project.
+
+## Project Structure
+
+```bash
+├── mock/ # mock server & mock data
+├── public # public static assets (directly copied)
+│ │── favicon.ico # favicon
+│ │── manifest.json # PWA config file
+│ └── index.html # index.html template
+├── src # main source code
+│ ├── api # api service
+│ ├── assets # module assets like fonts, images (processed by webpack)
+│ ├── components # global components
+│ ├── directives # global directives
+│ ├── filters # global filter
+│ ├── icons # svg icons
+│ ├── lang # i18n language
+│ ├── layout # global layout
+│ ├── pwa # PWA service worker related files
+│ ├── router # router
+│ ├── store # store
+│ ├── styles # global css
+│ ├── utils # global utils
+│ ├── views # views
+│ ├── App.vue # main app component
+│ ├── main.ts # app entry file
+│ ├── permission.ts # permission authentication
+│ ├── settings.ts # setting file
+│ └── shims.d.ts # type definition shims
+├── tests/ # tests
+├── .circleci/ # automated CI configuration
+├── .browserslistrc # browserslist config file (to support Autoprefixer)
+├── .editorconfig # editor code format consistency config
+├── .env.xxx # env variable configuration
+├── .eslintrc.js # eslint config
+├── babel.config.js # babel config
+├── cypress.json # e2e test config
+├── jest.config.js # jest unit test config
+├── package.json # package.json
+├── postcss.config.js # postcss config
+├── tsconfig.json # typescript config
+└── vue.config.js # vue-cli config
+```
+
+## Project setup
+
+With [yarn](https://yarnpkg.com/lang/en/) or [npm](https://www.npmjs.com/get-npm)
+
+#### Install dependencies
+
+```bash
+yarn install
+```
+
+#### Compiles and hot-reloads for development
+
+```bash
+yarn run serve
+```
+
+#### Compiles and minifies for production
+
+```bash
+yarn run build:prod
+```
+
+#### Lints and fixes files
+
+```bash
+yarn run lint
+```
+
+#### Run your unit tests
+
+```bash
+yarn run test:unit
+```
+
+#### Run your end-to-end tests
+
+```bash
+yarn run test:e2e
+```
+
+#### Generate all svg components
+
+```bash
+yarn run svg
+```
+
+#### Customize Vue configuration
+
+See [Configuration Reference](https://cli.vuejs.org/config/).
+
+## Browsers support
+
+Modern browsers and Internet Explorer 10+.
+
+| [
](http://godban.github.io/browsers-support-badges/)IE / Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
+| --------- | --------- | --------- | --------- |
+| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions
+
+## Contributing
+
+See [CONTRIBUTING.md](https://github.com/Armour/vue-typescript-admin-template/blob/master/.github/CONTRIBUTING.md)
+
+## License
+
+[MIT License](https://github.com/Armour/vue-typescript-admin-template/blob/master/LICENSE)
diff --git a/README.md b/README.md
new file mode 100644
index 000000000..6a72ecb58
--- /dev/null
+++ b/README.md
@@ -0,0 +1,289 @@
+
+[English](./README.en.md) | 简体中文
+
+## 总览
+
+[vue-typescript-admin-template](http://armour.github.io/vue-typescript-admin-template) 是一个后台前端解决方案,它基于 [vue](https://github.com/vuejs/vue), [typescript](https://www.typescriptlang.org/) 和 [element-ui](https://github.com/ElemeFE/element)实现。原始的 Javascript 版本的代码是由 [PanJiaChen](https://github.com/PanJiaChen) 开发维护的 [vue-element-admin](https://github.com/PanJiaChen/vue-element-admin/), 十分感谢大佬对开源社区做出的贡献 :)
+
+如果你想从一个十分简单的基础模版开始,而不是直接使用这个功能丰富的集成方案的话,你可以看一看本项目的 [minimal](https://github.com/Armour/vue-typescript-admin-template/tree/minimal) 分支.
+
+通过这个前端框架,作者尝试集成后台abp框架,提供管理页面的支持
+
+## 线上文档
+
+[文档](https://armour.github.io/vue-typescript-admin-docs/zh)
+
+## 线上地址
+
+[示例](https://armour.github.io/vue-typescript-admin-template)
+
+## 截图
+
+
+
+
+
+
+
+## 相关项目
+
+后端项目
+
+[abpframework/abp](https://github.com/abpframework/abp) (abp vNext)
+
+Typescript 版本:
+
+[Armour/vue-typescript-admin-mock-server](https://github.com/armour/vue-typescript-admin-mock-server) (mock server for this project)
+
+[Armour/vue-typescript-admin-docs](https://github.com/armour/vue-typescript-admin-docs) (documentation source for this project)
+
+Javascript 版本:
+
+[PanJiaChen/vue-admin-template](https://github.com/PanJiaChen/vue-admin-template) (a vue2.0 minimal admin template)
+
+[PanJiaChen/vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) (full features supported vue admin)
+
+[PanJiaChen/electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) (a vue electron admin project)
+
+## 功能
+
+```txt
+- 登录 / 注销
+
+- 权限验证
+ - 页面权限
+ - 指令权限
+ - 权限配置
+ - 二步登录
+
+- 多环境发布
+ - Dev / Stage / Prod
+
+- 全局功能
+ - 国际化多语言
+ - 动态换肤
+ - 动态侧边栏(支持多级路由嵌套)
+ - 动态面包屑
+ - 快捷导航(支持右键操作)
+ - 粘贴板
+ - Svg 图标
+ - 搜索
+ - 全屏
+ - 设置
+ - Mock 数据 / Mock 服务器
+ - 支持 PWA
+
+- 组件
+ - 编辑器
+ - 富文本编辑器
+ - Markdown 编辑器
+ - JSON 编辑器
+ - 头像上传
+ - 返回顶部
+ - CountTo
+ - 拖放区
+ - 拖拽弹窗
+ - 拖拽看板
+ - 拖拽列表
+ - 拖拽选择
+ - ECharts 图表
+ - Mixin
+ - 拆分窗格
+ - 黏性组件
+
+- 表格
+ - 动态表格
+ - 拖拽表格
+ - 内联编辑表格
+ - 复杂表格
+
+- Excel
+ - 导出excel
+ - 导入excel
+ - 前端可视化excel
+
+- Zip
+ - 导出zip
+
+- PDF
+ - 下载 pdf
+
+- 控制台
+- 引导页
+- 综合实例
+- 错误日志
+- 错误页面
+ - 401
+ - 404
+```
+
+## 前序准备
+
+你需要在本地安装 [node](http://nodejs.org/) 和 [git](https://git-scm.com/)。本项目技术栈基于 [typescript](https://www.typescriptlang.org/)、[vue](https://cn.vuejs.org/index.html)、[vuex](https://vuex.vuejs.org/zh-cn/)、[vue-router](https://router.vuejs.org/zh-cn/) 、[vue-cli](https://github.com/vuejs/vue-cli) 、[axios](https://github.com/axios/axios) 和 [element-ui](https://github.com/ElemeFE/element),所有的请求数据都使用[faker.js](https://github.com/Marak/Faker.js)进行模拟,提前了解和学习这些知识会对使用本项目有很大的帮助。
+
+## 目录结构
+
+本项目已经为你生成了一个完整的开发框架,提供了涵盖后台开发的各类功能和坑位,下面是整个项目的目录结构。
+
+```bash
+├── mock # mock 服务器 与 模拟数据
+├── public # 静态资源 (会被直接复制)
+│ │── favicon.ico # favicon图标
+│ │── manifest.json # PWA 配置文件
+│ └── index.html # html模板
+├── src # 源代码
+│ ├── api # 所有请求
+│ ├── assets # 主题 字体等静态资源 (由 webpack 处理加载)
+│ ├── components # 全局组件
+│ ├── directive # 全局指令
+│ ├── filters # 全局过滤函数
+│ ├── icons # svg 图标
+│ ├── lang # 国际化
+│ ├── layout # 全局布局
+│ ├── pwa # PWA service worker 相关的文件
+│ ├── router # 路由
+│ ├── store # 全局 vuex store
+│ ├── styles # 全局样式
+│ ├── utils # 全局方法
+│ ├── views # 所有页面
+│ ├── App.vue # 入口页面
+│ ├── main.js # 入口文件 加载组件 初始化等
+│ ├── permission.ts # 权限管理
+│ ├── settings.ts # 设置文件
+│ └── shims.d.ts # 模块注入
+├── tests # 测试
+├── .circleci/ # 自动化 CI 配置
+├── .browserslistrc # browserslistrc 配置文件 (用于支持 Autoprefixer)
+├── .editorconfig # 编辑相关配置
+├── .env.xxx # 环境变量配置
+├── .eslintrc.js # eslint 配置
+├── babel.config.js # babel-loader 配置
+├── cypress.json # e2e 测试配置
+├── jest.config.js # jest 单元测试配置
+├── package.json # package.json 依赖
+├── postcss.config.js # postcss 配置
+├── tsconfig.json # typescript 配置
+└── vue.config.js # vue-cli 配置
+```
+
+## 如何设置以及启动项目
+
+### 安装依赖
+
+```bash
+yarn install
+```
+
+### 更改配置文件名称
+
+[.env.Github.production](./.env.Github.production) 变更为 .env.production
+
+[vue.config.github.js ](./vue.config.github.js ) 变更为 vue.config.js
+
+修改开发环境用于代理的服务器地址,以下提供了三个分别为IdentityService、IdentityServer、ApiService地址,如果有网关的话可以只需要一个网关地址即可
+
+```bash
+
+ proxy: {
+ [process.env.VUE_APP_BASE_IDENTITY_SERVER]: {
+ target: '你的identityService地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_IDENTITY_SERVER]: ''
+ }
+ },
+ [process.env.VUE_APP_BASE_IDENTITY_SERVICE]: {
+ target: '你的identityServer服务器地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_IDENTITY_SERVICE]: ''
+ }
+ },
+ [process.env.VUE_APP_BASE_API]: {
+ target: '你的api网关地址',
+ changeOrigin: true,
+ pathRewrite: {
+ ['^' + process.env.VUE_APP_BASE_API]: ''
+ }
+ }
+ }
+
+```
+
+修改生产环境真实地址,如上
+
+```bash
+
+# Base api
+# Remeber to change this to your production server address
+# Here I used my mock server for this project
+# VUE_APP_BASE_API = 'https://vue-typescript-admin-mock-server.armour.now.sh/mock-api/v1/'
+
+VUE_APP_BASE_API = '你的api网关服务器地址'
+
+VUE_APP_BASE_IDENTITY_SERVICE = '你的identityService服务器地址'
+
+VUE_APP_BASE_IDENTITY_SERVER = '你的identityServer服务器地址'
+
+# 客户端标识
+VUE_APP_CLIENT_ID = 'vue-admin-element'
+# 客户端密钥
+VUE_APP_CLIENT_SECRET = '1q2w3e*'
+
+```
+
+### 启动本地开发环境(自带热启动)
+
+```bash
+yarn serve
+```
+
+### 构建生产环境 (自带压缩)
+
+```bash
+yarn build:prod
+```
+
+### 代码格式检查以及自动修复
+
+```bash
+yarn lint
+```
+
+### 运行单元测试
+
+```bash
+yarn test:unit
+```
+
+### 运行端对端测试
+
+```bash
+yarn test:e2e
+```
+
+### 自动生成 svg 组件
+
+```bash
+yarn run svg
+```
+
+### 自定义 Vue 配置
+
+请看 [Configuration Reference](https://cli.vuejs.org/config/).
+
+## 浏览器支持
+
+Modern browsers and Internet Explorer 10+.
+
+| [
](http://godban.github.io/browsers-support-badges/)IE / Edge | [
](http://godban.github.io/browsers-support-badges/)Firefox | [
](http://godban.github.io/browsers-support-badges/)Chrome | [
](http://godban.github.io/browsers-support-badges/)Safari |
+| --------- | --------- | --------- | --------- |
+| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions
+
+## 参与贡献
+
+请看 [CONTRIBUTING.md](https://github.com/Armour/vue-typescript-admin-template/blob/master/.github/CONTRIBUTING.md)
+
+## License
+
+[MIT License](https://github.com/Armour/vue-typescript-admin-template/blob/master/LICENSE)
diff --git a/aspnet-core/.gitignore b/aspnet-core/.gitignore
new file mode 100644
index 000000000..360ea127f
--- /dev/null
+++ b/aspnet-core/.gitignore
@@ -0,0 +1 @@
+.vs
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj
new file mode 100644
index 000000000..6e2e554f6
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj
@@ -0,0 +1,26 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayApplicationContractsModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayApplicationContractsModule.cs
new file mode 100644
index 000000000..4c3ed3a7c
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayApplicationContractsModule.cs
@@ -0,0 +1,27 @@
+using LINGYUN.ApiGateway.Localization;
+using Volo.Abp.Application;
+using Volo.Abp.Localization;
+using Volo.Abp.Modularity;
+using Volo.Abp.VirtualFileSystem;
+
+namespace LINGYUN.ApiGateway
+{
+ [DependsOn(typeof(ApiGatewayDomainSharedModule), typeof(AbpDddApplicationModule))]
+ public class ApiGatewayApplicationContractsModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ Configure(options =>
+ {
+ options.FileSets.AddEmbedded();
+ });
+
+ Configure(options =>
+ {
+ options.Resources
+ .Get()
+ .AddVirtualJson("/LINGYUN/ApiGateway/Localization/ApplicationContracts");
+ });
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissionDefinitionProvider.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissionDefinitionProvider.cs
new file mode 100644
index 000000000..e9e5ba4d9
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissionDefinitionProvider.cs
@@ -0,0 +1,55 @@
+using LINGYUN.ApiGateway.Localization;
+using Volo.Abp.Authorization.Permissions;
+using Volo.Abp.Localization;
+using Volo.Abp.MultiTenancy;
+
+namespace LINGYUN.ApiGateway
+{
+ public class ApiGatewayPermissionDefinitionProvider : PermissionDefinitionProvider
+ {
+ public override void Define(IPermissionDefinitionContext context)
+ {
+ var group = context.AddGroup(ApiGatewayPermissions.GroupName, L("Permissions:ApiGateway"), MultiTenancySides.Host);
+
+ var router = group.AddPermission(ApiGatewayPermissions.RouteGroup.Default, L("Permissions:RouteGroup"), MultiTenancySides.Host);
+ router.AddChild(ApiGatewayPermissions.RouteGroup.Create, L("Permissions:Create"), MultiTenancySides.Host);
+ router.AddChild(ApiGatewayPermissions.RouteGroup.Update, L("Permissions:Update"), MultiTenancySides.Host);
+ router.AddChild(ApiGatewayPermissions.RouteGroup.Export, L("Permissions:Export"), MultiTenancySides.Host);
+ router.AddChild(ApiGatewayPermissions.RouteGroup.Import, L("Permissions:Import"), MultiTenancySides.Host);
+ router.AddChild(ApiGatewayPermissions.RouteGroup.Delete, L("Permissions:Delete"), MultiTenancySides.Host);
+
+ var global = group.AddPermission(ApiGatewayPermissions.Global.Default, L("Permissions:Global"), MultiTenancySides.Host);
+ global.AddChild(ApiGatewayPermissions.Global.Create, L("Permissions:Create"), MultiTenancySides.Host);
+ global.AddChild(ApiGatewayPermissions.Global.Update, L("Permissions:Update"), MultiTenancySides.Host);
+ global.AddChild(ApiGatewayPermissions.Global.Export, L("Permissions:Export"), MultiTenancySides.Host);
+ global.AddChild(ApiGatewayPermissions.Global.Import, L("Permissions:Import"), MultiTenancySides.Host);
+ global.AddChild(ApiGatewayPermissions.Global.Delete, L("Permissions:Delete"), MultiTenancySides.Host);
+
+ var route = group.AddPermission(ApiGatewayPermissions.Route.Default, L("Permissions:Route"), MultiTenancySides.Host);
+ route.AddChild(ApiGatewayPermissions.Route.Create, L("Permissions:Create"), MultiTenancySides.Host);
+ route.AddChild(ApiGatewayPermissions.Route.Update, L("Permissions:Update"), MultiTenancySides.Host);
+ route.AddChild(ApiGatewayPermissions.Route.Export, L("Permissions:Export"), MultiTenancySides.Host);
+ route.AddChild(ApiGatewayPermissions.Route.Import, L("Permissions:Import"), MultiTenancySides.Host);
+ route.AddChild(ApiGatewayPermissions.Route.Delete, L("Permissions:Delete"), MultiTenancySides.Host);
+
+ var dynamicRoute = group.AddPermission(ApiGatewayPermissions.DynamicRoute.Default, L("Permissions:DynamicRoute"), MultiTenancySides.Host);
+ dynamicRoute.AddChild(ApiGatewayPermissions.DynamicRoute.Create, L("Permissions:Create"), MultiTenancySides.Host);
+ dynamicRoute.AddChild(ApiGatewayPermissions.DynamicRoute.Update, L("Permissions:Update"), MultiTenancySides.Host);
+ dynamicRoute.AddChild(ApiGatewayPermissions.DynamicRoute.Export, L("Permissions:Export"), MultiTenancySides.Host);
+ dynamicRoute.AddChild(ApiGatewayPermissions.DynamicRoute.Import, L("Permissions:Import"), MultiTenancySides.Host);
+ dynamicRoute.AddChild(ApiGatewayPermissions.DynamicRoute.Delete, L("Permissions:Delete"), MultiTenancySides.Host);
+
+ var aggregateRoute = group.AddPermission(ApiGatewayPermissions.AggregateRoute.Default, L("Permissions:AggregateRoute"), MultiTenancySides.Host);
+ aggregateRoute.AddChild(ApiGatewayPermissions.AggregateRoute.Create, L("Permissions:Create"), MultiTenancySides.Host);
+ aggregateRoute.AddChild(ApiGatewayPermissions.AggregateRoute.Update, L("Permissions:Update"), MultiTenancySides.Host);
+ aggregateRoute.AddChild(ApiGatewayPermissions.AggregateRoute.Export, L("Permissions:Export"), MultiTenancySides.Host);
+ aggregateRoute.AddChild(ApiGatewayPermissions.AggregateRoute.Import, L("Permissions:Import"), MultiTenancySides.Host);
+ aggregateRoute.AddChild(ApiGatewayPermissions.AggregateRoute.Delete, L("Permissions:Delete"), MultiTenancySides.Host);
+ }
+
+ protected virtual LocalizableString L(string name)
+ {
+ return LocalizableString.Create(name);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissions.cs
new file mode 100644
index 000000000..ca9e091f5
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/ApiGatewayPermissions.cs
@@ -0,0 +1,56 @@
+namespace LINGYUN.ApiGateway
+{
+ public static class ApiGatewayPermissions
+ {
+ public const string GroupName = "ApiGateway";
+
+ public static class RouteGroup
+ {
+ public const string Default = GroupName + ".RouteGroup";
+ public const string Create = Default + ".Create";
+ public const string Update = Default + ".Update";
+ public const string Delete = Default + ".Delete";
+ public const string Export = Default + ".Export";
+ public const string Import = Default + ".Import";
+ }
+ public static class Global
+ {
+ public const string Default = GroupName + ".Global";
+ public const string Create = Default + ".Create";
+ public const string Update = Default + ".Update";
+ public const string Delete = Default + ".Delete";
+ public const string Export = Default + ".Export";
+ public const string Import = Default + ".Import";
+ }
+
+ public static class Route
+ {
+ public const string Default = GroupName + ".Route";
+ public const string Create = Default + ".Create";
+ public const string Update = Default + ".Update";
+ public const string Delete = Default + ".Delete";
+ public const string Export = Default + ".Export";
+ public const string Import = Default + ".Import";
+ }
+
+ public static class DynamicRoute
+ {
+ public const string Default = GroupName + ".DynamicRoute";
+ public const string Create = Default + ".Create";
+ public const string Update = Default + ".Update";
+ public const string Delete = Default + ".Delete";
+ public const string Export = Default + ".Export";
+ public const string Import = Default + ".Import";
+ }
+
+ public static class AggregateRoute
+ {
+ public const string Default = GroupName + ".AggregateRoute";
+ public const string Create = Default + ".Create";
+ public const string Update = Default + ".Update";
+ public const string Delete = Default + ".Delete";
+ public const string Export = Default + ".Export";
+ public const string Import = Default + ".Import";
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/en.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/en.json
new file mode 100644
index 000000000..5c7fbad97
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/en.json
@@ -0,0 +1,15 @@
+{
+ "culture": "en",
+ "texts": {
+ "Permissions:ApiGateway": "Apigateway",
+ "Permissions:RouteGroup": "Route group",
+ "Permissions:Global": "Global",
+ "Permissions:Route": "Route",
+ "Permissions:DynamicRoute": "Dynamic",
+ "Permissions:AggregateRoute": "Aggregate",
+ "Permissions:Update": "Update",
+ "Permissions:Export": "Export",
+ "Permissions:Import": "Import",
+ "Permissions:Delete": "Delete"
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/zh-Hans.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/zh-Hans.json
new file mode 100644
index 000000000..583a6da24
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Localization/ApplicationContracts/zh-Hans.json
@@ -0,0 +1,16 @@
+{
+ "culture": "zh-Hans",
+ "texts": {
+ "Permissions:ApiGateway": "网关管理",
+ "Permissions:RouteGroup": "路由组",
+ "Permissions:Global": "基础配置",
+ "Permissions:Route": "路由配置",
+ "Permissions:DynamicRoute": "动态路由",
+ "Permissions:AggregateRoute": "路由聚合",
+ "Permissions:Create": "新增",
+ "Permissions:Update": "编辑",
+ "Permissions:Export": "导出",
+ "Permissions:Import": "导入",
+ "Permissions:Delete": "删除"
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByAppIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByAppIdInputDto.cs
new file mode 100644
index 000000000..1ff5751c1
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByAppIdInputDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class AggregateRouteGetByAppIdInputDto
+ {
+ [Required]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByPagedInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByPagedInputDto.cs
new file mode 100644
index 000000000..4ccc6b3ad
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/AggregateRouteGetByPagedInputDto.cs
@@ -0,0 +1,14 @@
+using System.ComponentModel.DataAnnotations;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class AggregateRouteGetByPagedInputDto : PagedAndSortedResultRequestDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+
+ public string Filter { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/AggregateReRouteDtoBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/AggregateReRouteDtoBase.cs
new file mode 100644
index 000000000..16f3448c7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/AggregateReRouteDtoBase.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class AggregateReRouteDtoBase
+ {
+ public List ReRouteKeys { get; set; }
+ public List ReRouteKeysConfig { get; set; }
+ public string UpstreamPathTemplate { get; set; }
+ public string UpstreamHost { get; set; }
+ public bool ReRouteIsCaseSensitive { get; set; }
+ public string Aggregator { get; set; }
+ public int Priority { get; set; }
+ public List UpstreamHttpMethod { get; set; }
+ public AggregateReRouteDtoBase()
+ {
+ ReRouteKeys = new List();
+ UpstreamHttpMethod = new List();
+ ReRouteKeysConfig = new List();
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/DynamicReRouteDtoBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/DynamicReRouteDtoBase.cs
new file mode 100644
index 000000000..fb9c83ab1
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/DynamicReRouteDtoBase.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class DynamicReRouteDtoBase
+ {
+ public string ServiceName { get; set; }
+ public string DownstreamHttpVersion { get; set; }
+ public RateLimitRuleDto RateLimitRule { get; set; }
+
+ public DynamicReRouteDtoBase()
+ {
+ RateLimitRule = new RateLimitRuleDto();
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/GlobalConfigurationDtoBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/GlobalConfigurationDtoBase.cs
new file mode 100644
index 000000000..5004624d8
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/GlobalConfigurationDtoBase.cs
@@ -0,0 +1,35 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class GlobalConfigurationDtoBase
+ {
+ public string RequestIdKey { get; set; }
+
+ public ServiceDiscoveryProviderDto ServiceDiscoveryProvider { get; set; }
+
+ public RateLimitOptionsDto RateLimitOptions { get; set; }
+
+ public QosOptionsDto QoSOptions { get; set; }
+
+ public string BaseUrl { get; set; }
+
+ public LoadBalancerOptionsDto LoadBalancerOptions { get; set; }
+
+ public string DownstreamScheme { get; set; }
+
+ public HttpHandlerOptionsDto HttpHandlerOptions { get; set; }
+
+ public string DownstreamHttpVersion { get; set; }
+
+ public GlobalConfigurationDtoBase()
+ {
+ ServiceDiscoveryProvider = new ServiceDiscoveryProviderDto();
+ RateLimitOptions = new RateLimitOptionsDto();
+ QoSOptions = new QosOptionsDto();
+ LoadBalancerOptions = new LoadBalancerOptionsDto();
+ HttpHandlerOptions = new HttpHandlerOptionsDto();
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/ReRouteDtoBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/ReRouteDtoBase.cs
new file mode 100644
index 000000000..962bbb3e7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Base/ReRouteDtoBase.cs
@@ -0,0 +1,64 @@
+using System;
+using System.Collections.Generic;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class ReRouteDtoBase
+ {
+ public string DownstreamPathTemplate { get; set; }
+ public Dictionary ChangeDownstreamPathTemplate { get; set; }
+ public string UpstreamPathTemplate { get; set; }
+ public List UpstreamHttpMethod { get; set; }
+ public Dictionary AddHeadersToRequest { get; set; }
+ public Dictionary UpstreamHeaderTransform { get; set; }
+ public Dictionary DownstreamHeaderTransform { get; set; }
+ public Dictionary AddClaimsToRequest { get; set; }
+ public Dictionary RouteClaimsRequirement { get; set; }
+ public Dictionary AddQueriesToRequest { get; set; }
+ public string RequestIdKey { get; set; }
+ public CacheOptionsDto FileCacheOptions { get; set; }
+ public bool ReRouteIsCaseSensitive { get; set; }
+ public string ServiceName { get; set; }
+ public string ServiceNamespace { get; set; }
+ public string DownstreamScheme { get; set; }
+ public QosOptionsDto QoSOptions { get; set; }
+ public LoadBalancerOptionsDto LoadBalancerOptions { get; set; }
+ public RateLimitRuleDto RateLimitOptions { get; set; }
+ public AuthenticationOptionsDto AuthenticationOptions { get; set; }
+ public HttpHandlerOptionsDto HttpHandlerOptions { get; set; }
+ public List DownstreamHostAndPorts { get; set; }
+ public string UpstreamHost { get; set; }
+ public string Key { get; set; }
+ public List DelegatingHandlers { get; set; }
+ public int? Priority { get; set; }
+ public int? Timeout { get; set; }
+ public bool DangerousAcceptAnyServerCertificateValidator { get; set; }
+ public string DownstreamHttpVersion { get; set; }
+ public string DownstreamHttpMethod { get; set; }
+ public SecurityOptionsDto SecurityOptions { get; set; }
+
+ public ReRouteDtoBase()
+ {
+ ChangeDownstreamPathTemplate = new Dictionary();
+ AddHeadersToRequest = new Dictionary();
+ UpstreamHeaderTransform = new Dictionary();
+ DownstreamHeaderTransform = new Dictionary();
+ AddClaimsToRequest = new Dictionary();
+ RouteClaimsRequirement = new Dictionary();
+ AddQueriesToRequest = new Dictionary();
+
+ DownstreamHostAndPorts = new List();
+ UpstreamHttpMethod = new List();
+ DelegatingHandlers = new List();
+
+ FileCacheOptions = new CacheOptionsDto();
+ QoSOptions = new QosOptionsDto();
+ LoadBalancerOptions = new LoadBalancerOptionsDto();
+ RateLimitOptions = new RateLimitRuleDto();
+ AuthenticationOptions = new AuthenticationOptionsDto();
+ HttpHandlerOptions = new HttpHandlerOptionsDto();
+ SecurityOptions = new SecurityOptionsDto();
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/DynamicRouteGetByAppIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/DynamicRouteGetByAppIdInputDto.cs
new file mode 100644
index 000000000..99d552cc8
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/DynamicRouteGetByAppIdInputDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class DynamicRouteGetByAppIdInputDto
+ {
+ [Required]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalCreateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalCreateDto.cs
new file mode 100644
index 000000000..70c14908a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalCreateDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class GlobalCreateDto : GlobalConfigurationDtoBase
+ {
+ [Required]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByAppIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByAppIdInputDto.cs
new file mode 100644
index 000000000..9a2a9f476
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByAppIdInputDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class GlobalGetByAppIdInputDto
+ {
+ [Required]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByPagedInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByPagedInputDto.cs
new file mode 100644
index 000000000..eee7ba072
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalGetByPagedInputDto.cs
@@ -0,0 +1,9 @@
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class GlobalGetByPagedInputDto : PagedAndSortedResultRequestDto
+ {
+ public string Filter { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalUpdateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalUpdateDto.cs
new file mode 100644
index 000000000..a6f962054
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/GlobalUpdateDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class GlobalUpdateDto : GlobalConfigurationDtoBase
+ {
+ [Required]
+ public long ItemId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteCreateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteCreateDto.cs
new file mode 100644
index 000000000..af86e521c
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteCreateDto.cs
@@ -0,0 +1,15 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteCreateDto : ReRouteDtoBase
+ {
+ [Required]
+ [StringLength(50)]
+ public string ReRouteName { get; set; }
+
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByAppIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByAppIdInputDto.cs
new file mode 100644
index 000000000..36caa6cef
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByAppIdInputDto.cs
@@ -0,0 +1,11 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteGetByAppIdInputDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByIdInputDto.cs
new file mode 100644
index 000000000..ac2ef4f57
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByIdInputDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteGetByIdInputDto
+ {
+ [Required]
+ public long RouteId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByNameInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByNameInputDto.cs
new file mode 100644
index 000000000..d06fbc91a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByNameInputDto.cs
@@ -0,0 +1,11 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteGetByNameInputDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string RouteName { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByPagedInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByPagedInputDto.cs
new file mode 100644
index 000000000..47a5ca856
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteGetByPagedInputDto.cs
@@ -0,0 +1,14 @@
+using System.ComponentModel.DataAnnotations;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteGetByPagedInputDto : PagedAndSortedResultRequestDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+
+ public string Filter { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteUpdateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteUpdateDto.cs
new file mode 100644
index 000000000..4b3cf0a65
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/ReRouteUpdateDto.cs
@@ -0,0 +1,17 @@
+using Newtonsoft.Json;
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRouteUpdateDto : ReRouteDtoBase
+ {
+ [Required]
+ public string ReRouteId { get; set; }
+
+ [Required]
+ public string ConcurrencyStamp { get; set; }
+
+ [StringLength(50)]
+ public string ReRouteName { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteConfigDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteConfigDto.cs
new file mode 100644
index 000000000..073cbcfd8
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteConfigDto.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class AggregateReRouteConfigDto
+ {
+ public string ReRouteKey { get; set; }
+ public string Parameter { get; set; }
+ public string JsonPath { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteDto.cs
new file mode 100644
index 000000000..53ead89cd
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AggregateReRouteDto.cs
@@ -0,0 +1,16 @@
+using Newtonsoft.Json;
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class AggregateReRouteDto : AggregateReRouteDtoBase
+ {
+ [JsonConverter(typeof(HexLongConverter))]
+ public long ReRouteId { get; set; }
+
+ public AggregateReRouteDto()
+ {
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AuthenticationOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AuthenticationOptionsDto.cs
new file mode 100644
index 000000000..85842a703
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/AuthenticationOptionsDto.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class AuthenticationOptionsDto
+ {
+ public string AuthenticationProviderKey { get; set; }
+ public List AllowedScopes { get; set; }
+ public AuthenticationOptionsDto()
+ {
+ AllowedScopes = new List();
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/CacheOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/CacheOptionsDto.cs
new file mode 100644
index 000000000..138728271
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/CacheOptionsDto.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class CacheOptionsDto
+ {
+ public int? TtlSeconds { get; set; }
+ public string Region { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/DynamicReRouteDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/DynamicReRouteDto.cs
new file mode 100644
index 000000000..cd025b9c6
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/DynamicReRouteDto.cs
@@ -0,0 +1,12 @@
+using Newtonsoft.Json;
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class DynamicReRouteDto : DynamicReRouteDtoBase
+ {
+ [JsonConverter(typeof(HexLongConverter))]
+ public virtual long DynamicReRouteId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/GlobalConfigurationDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/GlobalConfigurationDto.cs
new file mode 100644
index 000000000..cb4ccf613
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/GlobalConfigurationDto.cs
@@ -0,0 +1,17 @@
+using Newtonsoft.Json;
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class GlobalConfigurationDto : GlobalConfigurationDtoBase
+ {
+ [JsonConverter(typeof(HexLongConverter))]
+ public long ItemId { get; set; }
+
+ public string AppId { get; set; }
+ public GlobalConfigurationDto()
+ {
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HostAndPortDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HostAndPortDto.cs
new file mode 100644
index 000000000..de45a5484
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HostAndPortDto.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class HostAndPortDto
+ {
+ public string Host { get; set; }
+ public int? Port { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HttpHandlerOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HttpHandlerOptionsDto.cs
new file mode 100644
index 000000000..6bfe53a0c
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/HttpHandlerOptionsDto.cs
@@ -0,0 +1,18 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class HttpHandlerOptionsDto
+ {
+ public bool AllowAutoRedirect { get; set; }
+
+ public bool UseCookieContainer { get; set; }
+
+ public bool UseTracing { get; set; }
+
+ public bool UseProxy { get; set; }
+
+ public int? MaxConnectionsPerServer { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/LoadBalancerOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/LoadBalancerOptionsDto.cs
new file mode 100644
index 000000000..6864630af
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/LoadBalancerOptionsDto.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class LoadBalancerOptionsDto
+ {
+ public string Type { get; set; }
+ public string Key { get; set; }
+ public int? Expiry { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/QosOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/QosOptionsDto.cs
new file mode 100644
index 000000000..6ecb0c8cc
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/QosOptionsDto.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class QosOptionsDto
+ {
+ public int? ExceptionsAllowedBeforeBreaking { get; set; }
+
+ public int? DurationOfBreak { get; set; }
+
+ public int? TimeoutValue { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitOptionsDto.cs
new file mode 100644
index 000000000..c63c0dad5
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitOptionsDto.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class RateLimitOptionsDto
+ {
+ public string ClientIdHeader { get; set; }
+ public string QuotaExceededMessage { get; set; }
+ public string RateLimitCounterPrefix { get; set; }
+ public bool DisableRateLimitHeaders { get; set; }
+ public int? HttpStatusCode { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitRuleDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitRuleDto.cs
new file mode 100644
index 000000000..aa65810d7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/RateLimitRuleDto.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class RateLimitRuleDto
+ {
+ public List ClientWhitelist { get; set; }
+
+ public bool EnableRateLimiting { get; set; }
+
+ public string Period { get; set; }
+
+ public double? PeriodTimespan { get; set; }
+
+ public long? Limit { get; set; }
+ public RateLimitRuleDto()
+ {
+ ClientWhitelist = new List();
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ReRouteDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ReRouteDto.cs
new file mode 100644
index 000000000..822f173c2
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ReRouteDto.cs
@@ -0,0 +1,20 @@
+using Newtonsoft.Json;
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class ReRouteDto : ReRouteDtoBase
+ {
+ public int Id { get; set; }
+
+ [JsonConverter(typeof(HexLongConverter))]
+ public long ReRouteId { get; set; }
+ public string ConcurrencyStamp { get; set; }
+ public string ReRouteName { get; set; }
+ public string AppId { get; set; }
+ public ReRouteDto()
+ {
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/SecurityOptionsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/SecurityOptionsDto.cs
new file mode 100644
index 000000000..48ad4d9eb
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/SecurityOptionsDto.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class SecurityOptionsDto
+ {
+ public List IPAllowedList { get; set; }
+
+ public List IPBlockedList { get; set; }
+ public SecurityOptionsDto()
+ {
+ IPAllowedList = new List();
+ IPBlockedList = new List();
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ServiceDiscoveryProviderDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ServiceDiscoveryProviderDto.cs
new file mode 100644
index 000000000..c53c7c0f1
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/Result/ServiceDiscoveryProviderDto.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Serializable]
+ public class ServiceDiscoveryProviderDto
+ {
+ public string Host { get; set; }
+ public int? Port { get; set; }
+ public string Type { get; set; }
+ public string Token { get; set; }
+ public string ConfigurationKey { get; set; }
+ public int? PollingInterval { get; set; }
+ public string Namespace { get; set; }
+ public string Scheme { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupAppIdsDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupAppIdsDto.cs
new file mode 100644
index 000000000..b7379b8be
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupAppIdsDto.cs
@@ -0,0 +1,13 @@
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupAppIdsDto
+ {
+ public string AppId { get; }
+ public string AppName { get; }
+ public RouteGroupAppIdsDto(string appId, string appName)
+ {
+ AppId = appId;
+ AppName = appName;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupCreateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupCreateDto.cs
new file mode 100644
index 000000000..843cc1e46
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupCreateDto.cs
@@ -0,0 +1,27 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupCreateDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string Name { get; set; }
+
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+
+ [Required]
+ [StringLength(100)]
+ public string AppName { get; set; }
+
+ [StringLength(256)]
+ public string AppIpAddress { get; set; }
+
+ [StringLength(256)]
+ public string Description { get; set; }
+
+ public bool IsActive { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupDto.cs
new file mode 100644
index 000000000..7e8c6d796
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupDto.cs
@@ -0,0 +1,15 @@
+using System;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupDto : FullAuditedEntityDto
+ {
+ public string Name { get; set; }
+ public string AppId { get; set; }
+ public string AppName { get; set; }
+ public string AppIpAddress { get; set; }
+ public string Description { get; set; }
+ public bool IsActive { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByAppIdInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByAppIdInputDto.cs
new file mode 100644
index 000000000..fd3ee19b7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByAppIdInputDto.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupGetByAppIdInputDto
+ {
+ [Required]
+ public string AppId { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByPagedInputDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByPagedInputDto.cs
new file mode 100644
index 000000000..895d0f460
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupGetByPagedInputDto.cs
@@ -0,0 +1,9 @@
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupGetByPagedInputDto : PagedAndSortedResultRequestDto
+ {
+ public string Filter { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupUpdateDto.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupUpdateDto.cs
new file mode 100644
index 000000000..cc1b4661b
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/Dto/RouteGroupUpdateDto.cs
@@ -0,0 +1,19 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupUpdateDto
+ {
+ [Required]
+ [StringLength(50)]
+ public string AppId { get; set; }
+
+ [StringLength(50)]
+ public string Name { get; set; }
+
+ [StringLength(256)]
+ public string Description { get; set; }
+
+ public bool IsActive { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IAggregateReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IAggregateReRouteAppService.cs
new file mode 100644
index 000000000..fdfca3348
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IAggregateReRouteAppService.cs
@@ -0,0 +1,13 @@
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Application.Services;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IAggregateReRouteAppService : IApplicationService
+ {
+ Task> GetAsync(AggregateRouteGetByAppIdInputDto aggregateRouteGetByAppId);
+
+ Task> GetPagedListAsync(AggregateRouteGetByPagedInputDto aggregateRouteGetByPaged);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IDynamicReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IDynamicReRouteAppService.cs
new file mode 100644
index 000000000..d18206029
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IDynamicReRouteAppService.cs
@@ -0,0 +1,11 @@
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Application.Services;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IDynamicReRouteAppService : IApplicationService
+ {
+ Task> GetAsync(DynamicRouteGetByAppIdInputDto dynamicRouteGetByAppId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IGlobalConfigurationAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IGlobalConfigurationAppService.cs
new file mode 100644
index 000000000..2046dade9
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IGlobalConfigurationAppService.cs
@@ -0,0 +1,19 @@
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Application.Services;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IGlobalConfigurationAppService : IApplicationService
+ {
+ Task GetAsync(GlobalGetByAppIdInputDto globalGetByAppId);
+
+ Task CreateAsync(GlobalCreateDto globalCreateDto);
+
+ Task UpdateAsync(GlobalUpdateDto globalUpdateDto);
+
+ Task> GetAsync(GlobalGetByPagedInputDto globalGetPaged);
+
+ Task DeleteAsync(GlobalGetByAppIdInputDto globalGetByAppId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IReRouteAppService.cs
new file mode 100644
index 000000000..0a035ab13
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IReRouteAppService.cs
@@ -0,0 +1,25 @@
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Application.Services;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IReRouteAppService : IApplicationService
+ {
+ Task> GetAsync(ReRouteGetByAppIdInputDto routeGetByAppId);
+
+ Task> GetPagedListAsync(ReRouteGetByPagedInputDto routeGetByPaged);
+
+ Task GetByRouteNameAsync(ReRouteGetByNameInputDto routeGetByName);
+
+ Task GetAsync(ReRouteGetByIdInputDto routeGetById);
+
+ Task CreateAsync(ReRouteCreateDto routeCreateDto);
+
+ Task UpdateAsync(ReRouteUpdateDto routeUpdateDto);
+
+ Task DeleteAsync(ReRouteGetByIdInputDto routeGetById);
+
+ Task RemoveAsync(ReRouteGetByAppIdInputDto routeGetByAppId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IRouteGroupAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IRouteGroupAppService.cs
new file mode 100644
index 000000000..9daec74c7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/LINGYUN/ApiGateway/Ocelot/IRouteGroupAppService.cs
@@ -0,0 +1,20 @@
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IRouteGroupAppService
+ {
+ Task> GetActivedAsync();
+
+ Task GetAsync(RouteGroupGetByAppIdInputDto routerGetByAppId);
+
+ Task> GetAsync(RouteGroupGetByPagedInputDto routerGetByPagedInput);
+
+ Task CreateAsync(RouteGroupCreateDto routerCreateDto);
+
+ Task UpdateAsync(RouteGroupUpdateDto routerUpdateDto);
+
+ Task DeleteAsync(RouteGroupGetByAppIdInputDto routerGetByAppId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.deps.json
new file mode 100644
index 000000000..43a465fc8
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.deps.json
@@ -0,0 +1,1780 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "dependencies": {
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "NETStandard.Library": "2.0.3",
+ "Volo.Abp.Ddd.Application": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Application.Contracts.dll": {}
+ }
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {
+ "assemblyVersion": "3.3.1.0",
+ "fileVersion": "3.3.1.0"
+ }
+ }
+ },
+ "Fody/6.0.2": {},
+ "JetBrains.Annotations/2019.1.3": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2019.1.3.0",
+ "fileVersion": "2019.1.3.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6801"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6801"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "dependencies": {
+ "System.Memory": "4.5.3",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "NETStandard.Library/2.0.3": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.0.19.0",
+ "fileVersion": "1.0.19.0"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Memory/4.5.3": {
+ "dependencies": {
+ "System.Buffers": "4.5.0",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.6.27617.2"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {
+ "assemblyVersion": "4.1.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "4.0.6.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.700.20.6702"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "4.2.0.0",
+ "fileVersion": "4.6.27129.4"
+ }
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.AspNetCore.Authorization": "3.1.2",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Authorization": "2.7.0",
+ "Volo.Abp.Ddd.Application.Contracts": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0",
+ "Volo.Abp.Features": "2.7.0",
+ "Volo.Abp.Http.Abstractions": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "path": "configureawait.fody/3.3.1",
+ "hashPath": "configureawait.fody.3.3.1.nupkg.sha512"
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "path": "fody/6.0.2",
+ "hashPath": "fody.6.0.2.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "path": "jetbrains.annotations/2019.1.3",
+ "hashPath": "jetbrains.annotations.2019.1.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bbu9qMsOdmNjLLaRawhT3OfjFHleK9D2ICGfmjvkMVNyfx42P5NgypOlqKgK6SDoqtex3DisWd4E3nePtohPCw==",
+ "path": "microsoft.aspnetcore.authorization/3.1.2",
+ "hashPath": "microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4ML2fUxRyfrpXnAppHi8c7MDiTOr9yJ5/Sp6p8XktVw8H5CJJSs6KesM/mc9vREpg6FgC8EvgDRNKom6PLPcjQ==",
+ "path": "microsoft.aspnetcore.metadata/3.1.2",
+ "hashPath": "microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "hashPath": "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "hashPath": "microsoft.extensions.localization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "hashPath": "microsoft.extensions.logging.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "path": "microsoft.extensions.options/3.1.2",
+ "hashPath": "microsoft.extensions.options.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "hashPath": "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "hashPath": "microsoft.extensions.primitives.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "path": "netstandard.library/2.0.3",
+ "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "path": "system.buffers/4.5.0",
+ "hashPath": "system.buffers.4.5.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "path": "system.collections.immutable/1.7.0",
+ "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "hashPath": "system.linq.dynamic.core.1.0.19.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "path": "system.linq.queryable/4.3.0",
+ "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "path": "system.memory/4.5.3",
+ "hashPath": "system.memory.4.5.3.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "path": "system.text.encodings.web/4.7.0",
+ "hashPath": "system.text.encodings.web.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "path": "system.text.json/4.7.1",
+ "hashPath": "system.text.json.4.7.1.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "path": "volo.abp.auditing/2.7.0",
+ "hashPath": "volo.abp.auditing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bteE8BdsxQczy5KjpA0j5S7tZNjvlHkTZyFFswGZxqJvrRmDqNuKDZmM7cBcoumIa2ZRVSVIGu9qKNPIvoZMGw==",
+ "path": "volo.abp.authorization/2.7.0",
+ "hashPath": "volo.abp.authorization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "path": "volo.abp.core/2.7.0",
+ "hashPath": "volo.abp.core.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "path": "volo.abp.data/2.7.0",
+ "hashPath": "volo.abp.data.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y8ecym5Jpm8vtifJRYZpEy7haeFvOJNLRjKSjJqoq48A1B0RevERonY+bB1daaD5RyzDJXtXw0DKwyvfKTyDtQ==",
+ "path": "volo.abp.ddd.application/2.7.0",
+ "hashPath": "volo.abp.ddd.application.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SHSx5Ah1JMkHTUZv4Sqs9px9slpdCt2bYOzPWB299CPOMXkPSFHNGCzxasv3X8a8hGeLeZWSNaMJQsReT7Jo1w==",
+ "path": "volo.abp.ddd.application.contracts/2.7.0",
+ "hashPath": "volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "hashPath": "volo.abp.ddd.domain.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "path": "volo.abp.eventbus/2.7.0",
+ "hashPath": "volo.abp.eventbus.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lvn24lSfUuGdJk847U2iLl/bAZtbSui1r/Owf50xXpl1NvgxH2G3vvjLhwn46Bji9rf1s7zKQhLkw9HGk4sAVg==",
+ "path": "volo.abp.features/2.7.0",
+ "hashPath": "volo.abp.features.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "path": "volo.abp.guids/2.7.0",
+ "hashPath": "volo.abp.guids.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6XUGFBwNRc+f28YKrQzjxpWzAg1R9om741BCXDpAuIphMx0rr/nFeq8JeU5nTtJj61538ejkdSwoUfNbgsrejA==",
+ "path": "volo.abp.http.abstractions/2.7.0",
+ "hashPath": "volo.abp.http.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "path": "volo.abp.json/2.7.0",
+ "hashPath": "volo.abp.json.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "path": "volo.abp.localization/2.7.0",
+ "hashPath": "volo.abp.localization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "hashPath": "volo.abp.localization.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "hashPath": "volo.abp.multitenancy.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "path": "volo.abp.objectextending/2.7.0",
+ "hashPath": "volo.abp.objectextending.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "hashPath": "volo.abp.objectmapping.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "path": "volo.abp.security/2.7.0",
+ "hashPath": "volo.abp.security.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "path": "volo.abp.settings/2.7.0",
+ "hashPath": "volo.abp.settings.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "path": "volo.abp.threading/2.7.0",
+ "hashPath": "volo.abp.threading.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "path": "volo.abp.timing/2.7.0",
+ "hashPath": "volo.abp.timing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "path": "volo.abp.uow/2.7.0",
+ "hashPath": "volo.abp.uow.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c5wErWwq4QD95sUGr2vGn+SKaNqC+uJeh34u7J62pse/SreQnBqdaKj+xjdh8A8mIsikPk+KauAkpOjRIZTqUg==",
+ "path": "volo.abp.validation/2.7.0",
+ "hashPath": "volo.abp.validation.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "hashPath": "volo.abp.validation.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "hashPath": "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll
new file mode 100644
index 000000000..9c02a855f
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb
new file mode 100644
index 000000000..ab341e4ab
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll
new file mode 100644
index 000000000..2bac2737c
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb
new file mode 100644
index 000000000..9ca6845e4
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs
new file mode 100644
index 000000000..7d5c8742f
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.Application.Contracts")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("LINGYUN.ApiGateway.Application.Contracts")]
+[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.Application.Contracts")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache
new file mode 100644
index 000000000..8d155269b
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+38563a23ff7b2ec39042ab8efd13a2b3e581a151
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.assets.cache
new file mode 100644
index 000000000..e0fa4c51b
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.assets.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CopyComplete
new file mode 100644
index 000000000..e69de29bb
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CoreCompileInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CoreCompileInputs.cache
new file mode 100644
index 000000000..7128c9a0f
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+05d2e1f53650cb86c4348471113d51741fb76ff0
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000..48e16ef46
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csproj.FileListAbsolute.txt
@@ -0,0 +1,23 @@
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.deps.json
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.deps.json
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.csproj.CoreCompileInputs.cache
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache
new file mode 100644
index 000000000..93572b14d
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.csprojAssemblyReference.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll
new file mode 100644
index 000000000..9c02a855f
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb
new file mode 100644
index 000000000..ab341e4ab
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.cache
new file mode 100644
index 000000000..38e8e0a4a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "bpGXe7Rd9lA3QR5pBR6P7HOvvpyhcVNuzhwEzgcwkkdGKaOr1i1Kqyd+nJXiTN3ul6YWEgU1sxyiEllniXCbkQ==",
+ "success": true
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.dgspec.json
new file mode 100644
index 000000000..1d1395142
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.dgspec.json
@@ -0,0 +1,142 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj": {}
+ },
+ "projects": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "projectName": "LINGYUN.ApiGateway.Application.Contracts",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Ddd.Application": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain.Shared",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Localization": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.props
new file mode 100644
index 000000000..2528351cf
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\iVarKey\.nuget\packages\;D:\Microsoft\Xamarin\NuGet\;C:\Program Files (x86)\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.4.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.targets
new file mode 100644
index 000000000..c6394fd66
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/LINGYUN.ApiGateway.Application.Contracts.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.assets.json
new file mode 100644
index 000000000..a924b09c0
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.assets.json
@@ -0,0 +1,4166 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETStandard,Version=v2.0": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {}
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.2",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Buffers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ }
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.AspNetCore.Authorization": "3.1.2",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {}
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Authorization": "2.7.0",
+ "Volo.Abp.Ddd.Application.Contracts": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0",
+ "Volo.Abp.Features": "2.7.0",
+ "Volo.Abp.Http.Abstractions": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ }
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {}
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ }
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ }
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {}
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.0",
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "compile": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "sha512": "R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "type": "package",
+ "path": "configureawait.fody/3.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/ConfigureAwait.Fody.props",
+ "configureawait.fody.3.3.1.nupkg.sha512",
+ "configureawait.fody.nuspec",
+ "lib/net452/ConfigureAwait.dll",
+ "lib/net452/ConfigureAwait.xml",
+ "lib/netstandard2.0/ConfigureAwait.dll",
+ "lib/netstandard2.0/ConfigureAwait.xml",
+ "weaver/ConfigureAwait.Fody.dll",
+ "weaver/ConfigureAwait.Fody.xcf"
+ ]
+ },
+ "Fody/6.0.2": {
+ "sha512": "Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "type": "package",
+ "path": "fody/6.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Fody.targets",
+ "fody.6.0.2.nupkg.sha512",
+ "fody.nuspec",
+ "netclassictask/Fody.dll",
+ "netclassictask/FodyCommon.dll",
+ "netclassictask/FodyHelpers.dll",
+ "netclassictask/FodyIsolated.dll",
+ "netclassictask/Mono.Cecil.Pdb.dll",
+ "netclassictask/Mono.Cecil.Pdb.pdb",
+ "netclassictask/Mono.Cecil.Rocks.dll",
+ "netclassictask/Mono.Cecil.Rocks.pdb",
+ "netclassictask/Mono.Cecil.dll",
+ "netclassictask/Mono.Cecil.pdb",
+ "netstandardtask/Fody.dll",
+ "netstandardtask/FodyCommon.dll",
+ "netstandardtask/FodyHelpers.dll",
+ "netstandardtask/FodyIsolated.dll",
+ "netstandardtask/Mono.Cecil.Pdb.dll",
+ "netstandardtask/Mono.Cecil.Pdb.pdb",
+ "netstandardtask/Mono.Cecil.Rocks.dll",
+ "netstandardtask/Mono.Cecil.Rocks.pdb",
+ "netstandardtask/Mono.Cecil.dll",
+ "netstandardtask/Mono.Cecil.pdb"
+ ]
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "sha512": "E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2019.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "sha512": "bbu9qMsOdmNjLLaRawhT3OfjFHleK9D2ICGfmjvkMVNyfx42P5NgypOlqKgK6SDoqtex3DisWd4E3nePtohPCw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
+ "microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "sha512": "4ML2fUxRyfrpXnAppHi8c7MDiTOr9yJ5/Sp6p8XktVw8H5CJJSs6KesM/mc9vREpg6FgC8EvgDRNKom6PLPcjQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.metadata/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
+ "microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512",
+ "microsoft.aspnetcore.metadata.nuspec"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "sha512": "voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "sha512": "AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "sha512": "1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "sha512": "eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
+ "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.composite.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "sha512": "oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "sha512": "s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "sha512": "IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "type": "package",
+ "path": "microsoft.extensions.options/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "sha512": "NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.0": {
+ "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "type": "package",
+ "path": "system.buffers/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.0.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "sha512": "GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.Memory/4.5.3": {
+ "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "type": "package",
+ "path": "system.memory/4.5.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.3.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Numerics.Vectors.dll",
+ "lib/netstandard1.0/System.Numerics.Vectors.xml",
+ "lib/netstandard2.0/System.Numerics.Vectors.dll",
+ "lib/netstandard2.0/System.Numerics.Vectors.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.Numerics.Vectors.dll",
+ "ref/net45/System.Numerics.Vectors.xml",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Numerics.Vectors.dll",
+ "ref/netstandard1.0/System.Numerics.Vectors.xml",
+ "ref/netstandard2.0/System.Numerics.Vectors.dll",
+ "ref/netstandard2.0/System.Numerics.Vectors.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
+ "system.numerics.vectors.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "type": "package",
+ "path": "system.text.encodings.web/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard1.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.1/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.4.7.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Json/4.7.1": {
+ "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "type": "package",
+ "path": "system.text.json/4.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.4.7.1.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "sha512": "cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "type": "package",
+ "path": "volo.abp.auditing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll",
+ "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
+ "volo.abp.auditing.2.7.0.nupkg.sha512",
+ "volo.abp.auditing.nuspec"
+ ]
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "sha512": "bteE8BdsxQczy5KjpA0j5S7tZNjvlHkTZyFFswGZxqJvrRmDqNuKDZmM7cBcoumIa2ZRVSVIGu9qKNPIvoZMGw==",
+ "type": "package",
+ "path": "volo.abp.authorization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll",
+ "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
+ "volo.abp.authorization.2.7.0.nupkg.sha512",
+ "volo.abp.authorization.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "sha512": "OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "type": "package",
+ "path": "volo.abp.core/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "volo.abp.core.2.7.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "sha512": "J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "type": "package",
+ "path": "volo.abp.data/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Data.dll",
+ "lib/netstandard2.0/Volo.Abp.Data.pdb",
+ "volo.abp.data.2.7.0.nupkg.sha512",
+ "volo.abp.data.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "sha512": "Y8ecym5Jpm8vtifJRYZpEy7haeFvOJNLRjKSjJqoq48A1B0RevERonY+bB1daaD5RyzDJXtXw0DKwyvfKTyDtQ==",
+ "type": "package",
+ "path": "volo.abp.ddd.application/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb",
+ "volo.abp.ddd.application.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.application.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "sha512": "SHSx5Ah1JMkHTUZv4Sqs9px9slpdCt2bYOzPWB299CPOMXkPSFHNGCzxasv3X8a8hGeLeZWSNaMJQsReT7Jo1w==",
+ "type": "package",
+ "path": "volo.abp.ddd.application.contracts/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb",
+ "volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.application.contracts.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "sha512": "UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "type": "package",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
+ "volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.domain.nuspec"
+ ]
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "sha512": "dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "type": "package",
+ "path": "volo.abp.eventbus/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll",
+ "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
+ "volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "volo.abp.eventbus.nuspec"
+ ]
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "sha512": "Lvn24lSfUuGdJk847U2iLl/bAZtbSui1r/Owf50xXpl1NvgxH2G3vvjLhwn46Bji9rf1s7zKQhLkw9HGk4sAVg==",
+ "type": "package",
+ "path": "volo.abp.features/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Features.dll",
+ "lib/netstandard2.0/Volo.Abp.Features.pdb",
+ "volo.abp.features.2.7.0.nupkg.sha512",
+ "volo.abp.features.nuspec"
+ ]
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "sha512": "8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "type": "package",
+ "path": "volo.abp.guids/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Guids.dll",
+ "lib/netstandard2.0/Volo.Abp.Guids.pdb",
+ "volo.abp.guids.2.7.0.nupkg.sha512",
+ "volo.abp.guids.nuspec"
+ ]
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "sha512": "6XUGFBwNRc+f28YKrQzjxpWzAg1R9om741BCXDpAuIphMx0rr/nFeq8JeU5nTtJj61538ejkdSwoUfNbgsrejA==",
+ "type": "package",
+ "path": "volo.abp.http.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb",
+ "volo.abp.http.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.http.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "sha512": "QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "type": "package",
+ "path": "volo.abp.json/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Json.dll",
+ "lib/netstandard2.0/Volo.Abp.Json.pdb",
+ "volo.abp.json.2.7.0.nupkg.sha512",
+ "volo.abp.json.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "sha512": "DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "type": "package",
+ "path": "volo.abp.localization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.pdb",
+ "volo.abp.localization.2.7.0.nupkg.sha512",
+ "volo.abp.localization.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "sha512": "iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "type": "package",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
+ "volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.localization.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "sha512": "Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "type": "package",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
+ "volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "volo.abp.multitenancy.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "sha512": "X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "type": "package",
+ "path": "volo.abp.objectextending/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
+ "volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "volo.abp.objectextending.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "sha512": "pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "type": "package",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
+ "volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "volo.abp.objectmapping.nuspec"
+ ]
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "sha512": "Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "type": "package",
+ "path": "volo.abp.security/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Security.dll",
+ "lib/netstandard2.0/Volo.Abp.Security.pdb",
+ "volo.abp.security.2.7.0.nupkg.sha512",
+ "volo.abp.security.nuspec"
+ ]
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "sha512": "vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "type": "package",
+ "path": "volo.abp.settings/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Settings.dll",
+ "lib/netstandard2.0/Volo.Abp.Settings.pdb",
+ "volo.abp.settings.2.7.0.nupkg.sha512",
+ "volo.abp.settings.nuspec"
+ ]
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "sha512": "uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "type": "package",
+ "path": "volo.abp.threading/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Threading.dll",
+ "lib/netstandard2.0/Volo.Abp.Threading.pdb",
+ "volo.abp.threading.2.7.0.nupkg.sha512",
+ "volo.abp.threading.nuspec"
+ ]
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "sha512": "2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "type": "package",
+ "path": "volo.abp.timing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Timing.dll",
+ "lib/netstandard2.0/Volo.Abp.Timing.pdb",
+ "volo.abp.timing.2.7.0.nupkg.sha512",
+ "volo.abp.timing.nuspec"
+ ]
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "sha512": "Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "type": "package",
+ "path": "volo.abp.uow/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Uow.dll",
+ "lib/netstandard2.0/Volo.Abp.Uow.pdb",
+ "volo.abp.uow.2.7.0.nupkg.sha512",
+ "volo.abp.uow.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "sha512": "c5wErWwq4QD95sUGr2vGn+SKaNqC+uJeh34u7J62pse/SreQnBqdaKj+xjdh8A8mIsikPk+KauAkpOjRIZTqUg==",
+ "type": "package",
+ "path": "volo.abp.validation/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.pdb",
+ "volo.abp.validation.2.7.0.nupkg.sha512",
+ "volo.abp.validation.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "sha512": "oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "type": "package",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
+ "volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.validation.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "sha512": "lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "type": "package",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
+ "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512",
+ "volo.abp.virtualfilesystem.nuspec"
+ ]
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "path": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "msbuildProject": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETStandard,Version=v2.0": [
+ "LINGYUN.ApiGateway.Domain.Shared >= 1.0.0",
+ "NETStandard.Library >= 2.0.3",
+ "Volo.Abp.Ddd.Application >= 2.7.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\iVarKey\\.nuget\\packages\\": {},
+ "D:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "projectName": "LINGYUN.ApiGateway.Application.Contracts",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Ddd.Application": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.nuget.cache
new file mode 100644
index 000000000..67a7cc825
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application.Contracts/obj/project.nuget.cache
@@ -0,0 +1,103 @@
+{
+ "version": 2,
+ "dgSpecHash": "bpGXe7Rd9lA3QR5pBR6P7HOvvpyhcVNuzhwEzgcwkkdGKaOr1i1Kqyd+nJXiTN3ul6YWEgU1sxyiEllniXCbkQ==",
+ "success": true,
+ "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\iVarKey\\.nuget\\packages\\configureawait.fody\\3.3.1\\configureawait.fody.3.3.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\fody\\6.0.2\\fody.6.0.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\jetbrains.annotations\\2019.1.3\\jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.authorization\\3.1.2\\microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.metadata\\3.1.2\\microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.2\\microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.2\\microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.2\\microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\3.1.2\\microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\3.1.2\\microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\3.1.2\\microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.json\\3.1.2\\microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\3.1.2\\microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.2\\microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.2\\microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.2\\microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\3.1.2\\microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\3.1.2\\microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\3.1.2\\microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.2\\microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization\\3.1.2\\microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\3.1.2\\microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging\\3.1.2\\microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.2\\microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options\\3.1.2\\microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\3.1.2\\microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.2\\microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.collections.immutable\\1.7.0\\system.collections.immutable.1.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.dynamic.core\\1.0.19\\system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.0\\system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.encodings.web\\4.7.0\\system.text.encodings.web.4.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.json\\4.7.1\\system.text.json.4.7.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.2\\system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.auditing\\2.7.0\\volo.abp.auditing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.authorization\\2.7.0\\volo.abp.authorization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.core\\2.7.0\\volo.abp.core.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.data\\2.7.0\\volo.abp.data.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.application\\2.7.0\\volo.abp.ddd.application.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.application.contracts\\2.7.0\\volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.domain\\2.7.0\\volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.eventbus\\2.7.0\\volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.features\\2.7.0\\volo.abp.features.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.guids\\2.7.0\\volo.abp.guids.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.http.abstractions\\2.7.0\\volo.abp.http.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.json\\2.7.0\\volo.abp.json.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization\\2.7.0\\volo.abp.localization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization.abstractions\\2.7.0\\volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.multitenancy\\2.7.0\\volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectextending\\2.7.0\\volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectmapping\\2.7.0\\volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.security\\2.7.0\\volo.abp.security.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settings\\2.7.0\\volo.abp.settings.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.threading\\2.7.0\\volo.abp.threading.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.timing\\2.7.0\\volo.abp.timing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.uow\\2.7.0\\volo.abp.uow.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation\\2.7.0\\volo.abp.validation.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation.abstractions\\2.7.0\\volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.virtualfilesystem\\2.7.0\\volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN.ApiGateway.Application.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN.ApiGateway.Application.csproj
new file mode 100644
index 000000000..9251af785
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN.ApiGateway.Application.csproj
@@ -0,0 +1,17 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationAutoMapperProfile.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationAutoMapperProfile.cs
new file mode 100644
index 000000000..c898fc2ec
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationAutoMapperProfile.cs
@@ -0,0 +1,206 @@
+using AutoMapper;
+using LINGYUN.ApiGateway.Ocelot;
+using LINGYUN.ApiGateway.Snowflake;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Volo.Abp.DependencyInjection;
+
+namespace LINGYUN.ApiGateway
+{
+ public class ApiGatewayApplicationAutoMapperProfile : Profile, ISingletonDependency
+ {
+ public ApiGatewayApplicationAutoMapperProfile(ISnowflakeIdGenerator snowflakeIdGenerator)
+ {
+ //Configure your AutoMapper mapping configuration here...
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap()
+ .ForMember(dto => dto.ClientWhitelist, map => map.MapFrom((m, n) =>
+ {
+ if (!m.ClientWhitelist.IsNullOrWhiteSpace())
+ {
+ return m.ClientWhitelist.Split(',').ToList();
+ }
+ return new List();
+ }));
+
+ CreateMap()
+ .ForMember(dto => dto.AllowedScopes, map => map.MapFrom(m => !string.IsNullOrWhiteSpace(m.AllowedScopes)
+ ? m.AllowedScopes.Split(',').ToList()
+ : new List()));
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap()
+ .ForMember(dto => dto.IPAllowedList, map => map.MapFrom((m, n) =>
+ {
+ if (!m.IPAllowedList.IsNullOrWhiteSpace())
+ {
+ return m.IPAllowedList.Split(',').ToList();
+ }
+ return new List();
+ }))
+ .ForMember(dto => dto.IPBlockedList, map => map.MapFrom((m, n) =>
+ {
+ if (!m.IPBlockedList.IsNullOrWhiteSpace())
+ {
+ return m.IPBlockedList.Split(',').ToList();
+ }
+ return new List();
+ }));
+
+ CreateMap();
+
+ CreateMap()
+ .ForMember(dto => dto.ReRouteKeys, map => map.MapFrom(m => !m.ReRouteKeys.IsNullOrWhiteSpace() && m.ReRouteKeys.Contains(",")
+ ? m.ReRouteKeys.Split(',').ToList()
+ : new List()))
+ .ForMember(dto => dto.UpstreamHttpMethod, map => map.MapFrom(m => !m.UpstreamHttpMethod.IsNullOrWhiteSpace() && m.UpstreamHttpMethod.Contains(",")
+ ? m.UpstreamHttpMethod.Split(',').ToList()
+ : new List()));
+
+ CreateMap();
+
+ CreateMap();
+
+ CreateMap()
+ .ForMember(frr => frr.AddClaimsToRequest, map => map.MapFrom(m => MapperDictionary(m.AddClaimsToRequest)))
+ .ForMember(frr => frr.AddHeadersToRequest, map => map.MapFrom(m => MapperDictionary(m.AddHeadersToRequest)))
+ .ForMember(frr => frr.AddQueriesToRequest, map => map.MapFrom(m => MapperDictionary(m.AddQueriesToRequest)))
+ .ForMember(frr => frr.DelegatingHandlers, map => map.MapFrom(m => MapperList(m.DelegatingHandlers)))
+ .ForMember(frr => frr.DownstreamHeaderTransform, map => map.MapFrom(m => MapperDictionary(m.DownstreamHeaderTransform)))
+ .ForMember(frr => frr.RouteClaimsRequirement, map => map.MapFrom(m => MapperDictionary(m.RouteClaimsRequirement)))
+ .ForMember(frr => frr.UpstreamHeaderTransform, map => map.MapFrom(m => MapperDictionary(m.UpstreamHeaderTransform)))
+ .ForMember(frr => frr.ChangeDownstreamPathTemplate, map => map.MapFrom(m => MapperDictionary(m.ChangeDownstreamPathTemplate)))
+ .ForMember(frr => frr.UpstreamHttpMethod, map => map.MapFrom(m => MapperList(m.UpstreamHttpMethod)))
+ .ForMember(frr => frr.DownstreamHostAndPorts, map => map.MapFrom(m => MapperHostAndPortList(m.DownstreamHostAndPorts)));
+
+ CreateMap()
+ .ForCtorParam("rerouteId", x => x.MapFrom(m => snowflakeIdGenerator.NextId()))
+ .ForCtorParam("routeName", x => x.MapFrom(m => m.ReRouteName))
+ .ForCtorParam("appId", x => x.MapFrom(m => m.AppId))
+ .ForMember(s => s.DelegatingHandlers, d => d.MapFrom((dto, src) =>
+ {
+ src.SetDelegatingHandler(dto.DelegatingHandlers);
+ return src.DelegatingHandlers;
+ }))
+ .ForMember(s => s.DownstreamHeaderTransform, d => d.MapFrom((dto, src) =>
+ {
+ src.SetDownstreamHeader(dto.DownstreamHeaderTransform);
+ return src.DownstreamHeaderTransform;
+ }))
+ .ForMember(s => s.AddQueriesToRequest, d => d.MapFrom((dto, src) =>
+ {
+ src.SetQueriesParamter(dto.AddQueriesToRequest);
+ return src.AddQueriesToRequest;
+ }))
+ .ForMember(s => s.AddClaimsToRequest, d => d.MapFrom((dto, src) =>
+ {
+ src.SetRequestClaims(dto.AddClaimsToRequest);
+ return src.AddClaimsToRequest;
+ }))
+ .ForMember(s => s.AddHeadersToRequest, d => d.MapFrom((dto, src) =>
+ {
+ src.SetRequestHeader(dto.AddHeadersToRequest);
+ return src.AddHeadersToRequest;
+ }))
+ .ForMember(s => s.RouteClaimsRequirement, d => d.MapFrom((dto, src) =>
+ {
+ src.SetRouteClaims(dto.RouteClaimsRequirement);
+ return src.RouteClaimsRequirement;
+ }))
+ .ForMember(s => s.UpstreamHeaderTransform, d => d.MapFrom((dto, src) =>
+ {
+ src.SetUpstreamHeader(dto.UpstreamHeaderTransform);
+ return src.UpstreamHeaderTransform;
+ }))
+ .ForMember(s => s.ChangeDownstreamPathTemplate, d => d.MapFrom((dto, src) =>
+ {
+ src.SetChangeDownstreamPath(dto.ChangeDownstreamPathTemplate);
+ return src.ChangeDownstreamPathTemplate;
+ }))
+ .ForMember(map => map.QoSOptions, dto => dto.Ignore())
+ .ForMember(map => map.CacheOptions, dto => dto.Ignore())
+ .ForMember(map => map.LoadBalancerOptions, dto => dto.Ignore())
+ .ForMember(map => map.RateLimitOptions, dto => dto.Ignore())
+ .ForMember(map => map.AuthenticationOptions, dto => dto.Ignore())
+ .ForMember(map => map.HttpHandlerOptions, dto => dto.Ignore())
+ .ForMember(map => map.SecurityOptions, dto => dto.Ignore());
+
+ CreateMap();
+ }
+
+ private Dictionary MapperDictionary(string sourceString)
+ {
+ var dictionary = new Dictionary();
+
+ if (!string.IsNullOrWhiteSpace(sourceString))
+ {
+ var headers = sourceString.Split(',').ToList();
+
+ if (headers != null && headers.Count > 0)
+ {
+ foreach (var header in headers)
+ {
+ var current = header.Split(':');
+ if (current != null && current.Length == 2)
+ {
+ dictionary.Add(current[0], current[1]);
+ }
+ }
+ }
+ }
+ return dictionary;
+ }
+
+ private List MapperList(string sourceString)
+ {
+ var list = new List();
+ if (!string.IsNullOrWhiteSpace(sourceString))
+ {
+ var srcList = sourceString.Split(',');
+ foreach (var src in srcList)
+ {
+ if (!src.IsNullOrWhiteSpace())
+ {
+ list.Add(src);
+ }
+ }
+ }
+ return list;
+ }
+
+ private List MapperHostAndPortList(string sourceString)
+ {
+ var list = new List();
+ if (!string.IsNullOrWhiteSpace(sourceString))
+ {
+ var sourceList = sourceString.Split(',').ToList();
+ foreach (var source in sourceList)
+ {
+ var current = source.Split(':');
+ if (current != null && current.Length == 2)
+ {
+ var hostAndPort = new HostAndPortDto();
+ hostAndPort.Host = current[0];
+ hostAndPort.Port = int.Parse(current[1]);
+ list.Add(hostAndPort);
+ }
+ }
+ }
+ return list;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationModule.cs
new file mode 100644
index 000000000..62a61fc10
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationModule.cs
@@ -0,0 +1,26 @@
+using Microsoft.Extensions.DependencyInjection;
+using Volo.Abp.AutoMapper;
+using Volo.Abp.Modularity;
+
+namespace LINGYUN.ApiGateway
+{
+ [DependsOn(
+ typeof(ApiGatewayDomainModule),
+ typeof(ApiGatewayApplicationContractsModule),
+ typeof(AbpAutoMapperModule)
+ )]
+ public class ApiGatewayApplicationModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ Configure(options =>
+ {
+ options.Configurators.Add(ctx =>
+ {
+ var mapperProfile = ctx.ServiceProvider.GetService();
+ ctx.MapperConfiguration.AddProfile(mapperProfile);
+ });
+ });
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationServiceBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationServiceBase.cs
new file mode 100644
index 000000000..551258740
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/ApiGatewayApplicationServiceBase.cs
@@ -0,0 +1,13 @@
+using LINGYUN.ApiGateway.Localization;
+using Volo.Abp.Application.Services;
+
+namespace LINGYUN.ApiGateway
+{
+ public class ApiGatewayApplicationServiceBase : ApplicationService
+ {
+ protected ApiGatewayApplicationServiceBase()
+ {
+ LocalizationResource = typeof(ApiGatewayResource);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/AggregateReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/AggregateReRouteAppService.cs
new file mode 100644
index 000000000..78e28383b
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/AggregateReRouteAppService.cs
@@ -0,0 +1,38 @@
+using Microsoft.AspNetCore.Authorization;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Authorize(ApiGatewayPermissions.AggregateRoute.Default)]
+ public class AggregateReRouteAppService : ApiGatewayApplicationServiceBase, IAggregateReRouteAppService
+ {
+ private readonly IAggregateReRouteRepository _aggregateReRouteRepository;
+
+ public AggregateReRouteAppService(
+ IAggregateReRouteRepository aggregateReRouteRepository)
+ {
+ _aggregateReRouteRepository = aggregateReRouteRepository;
+ }
+
+ [Authorize(ApiGatewayPermissions.AggregateRoute.Export)]
+ public async Task> GetAsync(AggregateRouteGetByAppIdInputDto aggregateRouteGetByAppId)
+ {
+ var reroutes = await _aggregateReRouteRepository.GetByAppIdAsync(aggregateRouteGetByAppId.AppId);
+
+ return new ListResultDto(ObjectMapper.Map, List>(reroutes));
+ }
+
+ public async Task> GetPagedListAsync(AggregateRouteGetByPagedInputDto aggregateRouteGetByPaged)
+ {
+ var reroutesTuple = await _aggregateReRouteRepository
+ .GetPagedListAsync(aggregateRouteGetByPaged.AppId, aggregateRouteGetByPaged.Filter,
+ aggregateRouteGetByPaged.Sorting, aggregateRouteGetByPaged.SkipCount,
+ aggregateRouteGetByPaged.MaxResultCount);
+
+ return new PagedResultDto(reroutesTuple.total,
+ ObjectMapper.Map, List>(reroutesTuple.routes));
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/DynamicReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/DynamicReRouteAppService.cs
new file mode 100644
index 000000000..905464ddb
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/DynamicReRouteAppService.cs
@@ -0,0 +1,25 @@
+using Microsoft.AspNetCore.Authorization;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Authorize(ApiGatewayPermissions.DynamicRoute.Default)]
+ public class DynamicReRouteAppService : ApiGatewayApplicationServiceBase, IDynamicReRouteAppService
+ {
+ private readonly IDynamicReRouteRepository _dynamicReRouteRepository;
+ public DynamicReRouteAppService(IDynamicReRouteRepository dynamicReRouteRepository)
+ {
+ _dynamicReRouteRepository = dynamicReRouteRepository;
+ }
+
+ [Authorize(ApiGatewayPermissions.DynamicRoute.Export)]
+ public async Task> GetAsync(DynamicRouteGetByAppIdInputDto dynamicRouteGetByAppId)
+ {
+ var dynamicReRoutes = await _dynamicReRouteRepository.GetByAppIdAsync(dynamicRouteGetByAppId.AppId);
+
+ return new ListResultDto(ObjectMapper.Map, List>(dynamicReRoutes));
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationAppService.cs
new file mode 100644
index 000000000..d2dffec1e
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationAppService.cs
@@ -0,0 +1,127 @@
+using DotNetCore.CAP;
+using LINGYUN.ApiGateway.EventBus;
+using LINGYUN.ApiGateway.Snowflake;
+using Microsoft.AspNetCore.Authorization;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Authorize(ApiGatewayPermissions.Global.Default)]
+ public class GlobalConfigurationAppService : ApiGatewayApplicationServiceBase, IGlobalConfigurationAppService
+ {
+ private readonly IRouteGroupChecker _routeGroupChecker;
+ private readonly IGlobalConfigRepository _globalConfigRepository;
+ private readonly ISnowflakeIdGenerator _snowflakeIdGenerator;
+ private readonly ICapPublisher _eventPublisher;
+ public GlobalConfigurationAppService(
+ ICapPublisher eventPublisher,
+ IRouteGroupChecker routeGroupChecker,
+ ISnowflakeIdGenerator snowflakeIdGenerator,
+ IGlobalConfigRepository globalConfigRepository
+ )
+ {
+ _eventPublisher = eventPublisher;
+ _routeGroupChecker = routeGroupChecker;
+ _snowflakeIdGenerator = snowflakeIdGenerator;
+ _globalConfigRepository = globalConfigRepository;
+ }
+
+ [Authorize(ApiGatewayPermissions.Global.Export)]
+ public virtual async Task GetAsync(GlobalGetByAppIdInputDto globalGetByAppId)
+ {
+ await _routeGroupChecker.CheckActiveAsync(globalGetByAppId.AppId);
+
+ var globalConfig = await _globalConfigRepository.GetByAppIdAsync(globalGetByAppId.AppId);
+
+ var globalConfigDto = ObjectMapper.Map(globalConfig);
+
+ return globalConfigDto;
+ }
+
+ [Authorize(ApiGatewayPermissions.Global.Create)]
+ public virtual async Task CreateAsync(GlobalCreateDto globalCreateDto)
+ {
+ await _routeGroupChecker.CheckActiveAsync(globalCreateDto.AppId);
+
+ var globalConfiguration = new GlobalConfiguration(_snowflakeIdGenerator.NextId(),
+ globalCreateDto.BaseUrl, globalCreateDto.AppId);
+ globalConfiguration.RequestIdKey = globalCreateDto.RequestIdKey;
+ globalConfiguration.DownstreamScheme = globalCreateDto.DownstreamScheme;
+ globalConfiguration.DownstreamHttpVersion = globalCreateDto.DownstreamHttpVersion;
+
+ ApplyGlobalConfigurationOptions(globalConfiguration, globalCreateDto);
+
+ globalConfiguration = await _globalConfigRepository.InsertAsync(globalConfiguration, true);
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("Global", "Create"));
+
+ return ObjectMapper.Map(globalConfiguration);
+ }
+
+ [Authorize(ApiGatewayPermissions.Global.Update)]
+ public async Task UpdateAsync(GlobalUpdateDto globalUpdateDto)
+ {
+ var globalConfiguration = await _globalConfigRepository.GetByItemIdAsync(globalUpdateDto.ItemId);
+
+ globalConfiguration.BaseUrl = globalUpdateDto.BaseUrl;
+ globalConfiguration.RequestIdKey = globalUpdateDto.RequestIdKey;
+ globalConfiguration.DownstreamScheme = globalUpdateDto.DownstreamScheme;
+ globalConfiguration.DownstreamHttpVersion = globalUpdateDto.DownstreamHttpVersion;
+
+ ApplyGlobalConfigurationOptions(globalConfiguration, globalUpdateDto);
+
+ globalConfiguration = await _globalConfigRepository.UpdateAsync(globalConfiguration, true);
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("Global", "Modify"));
+
+ return ObjectMapper.Map(globalConfiguration);
+ }
+
+ public virtual async Task> GetAsync(GlobalGetByPagedInputDto globalGetPaged)
+ {
+ var globalsTupe = await _globalConfigRepository.GetPagedListAsync(globalGetPaged.Filter, globalGetPaged.Sorting,
+ globalGetPaged.SkipCount, globalGetPaged.MaxResultCount);
+ var globals = ObjectMapper.Map, List>(globalsTupe.Globals);
+
+ return new PagedResultDto(globalsTupe.TotalCount, globals);
+ }
+
+ [Authorize(ApiGatewayPermissions.Global.Delete)]
+ public virtual async Task DeleteAsync(GlobalGetByAppIdInputDto globalGetByAppId)
+ {
+ var globalConfiguration = await _globalConfigRepository.GetByAppIdAsync(globalGetByAppId.AppId);
+ await _globalConfigRepository.DeleteAsync(globalConfiguration);
+ }
+
+ private void ApplyGlobalConfigurationOptions(GlobalConfiguration globalConfiguration, GlobalConfigurationDtoBase configurationDto)
+ {
+ globalConfiguration.ServiceDiscoveryProvider.Type = configurationDto.ServiceDiscoveryProvider.Type;
+ globalConfiguration.ServiceDiscoveryProvider.ConfigurationKey = configurationDto.ServiceDiscoveryProvider.ConfigurationKey;
+ globalConfiguration.ServiceDiscoveryProvider.Namespace = configurationDto.ServiceDiscoveryProvider.Namespace;
+ globalConfiguration.ServiceDiscoveryProvider.PollingInterval = configurationDto.ServiceDiscoveryProvider.PollingInterval;
+ globalConfiguration.ServiceDiscoveryProvider.Scheme = configurationDto.ServiceDiscoveryProvider.Scheme;
+ globalConfiguration.ServiceDiscoveryProvider.Token = configurationDto.ServiceDiscoveryProvider.Token;
+ globalConfiguration.ServiceDiscoveryProvider
+ .BindServiceRegister(configurationDto.ServiceDiscoveryProvider.Host, configurationDto.ServiceDiscoveryProvider.Port);
+
+ globalConfiguration.HttpHandlerOptions.ApplyAllowAutoRedirect(configurationDto.HttpHandlerOptions.AllowAutoRedirect);
+ globalConfiguration.HttpHandlerOptions.ApplyCookieContainer(configurationDto.HttpHandlerOptions.UseCookieContainer);
+ globalConfiguration.HttpHandlerOptions.ApplyHttpProxy(configurationDto.HttpHandlerOptions.UseProxy);
+ globalConfiguration.HttpHandlerOptions.ApplyHttpTracing(configurationDto.HttpHandlerOptions.UseTracing);
+ globalConfiguration.HttpHandlerOptions.SetMaxConnections(configurationDto.HttpHandlerOptions.MaxConnectionsPerServer);
+
+ globalConfiguration.QoSOptions.ApplyQosOptions(configurationDto.QoSOptions.ExceptionsAllowedBeforeBreaking, configurationDto.QoSOptions.DurationOfBreak,
+ configurationDto.QoSOptions.TimeoutValue);
+
+ globalConfiguration.RateLimitOptions.SetLimitHeadersStatus(configurationDto.RateLimitOptions.DisableRateLimitHeaders);
+ globalConfiguration.RateLimitOptions.ApplyRateLimitOptions(configurationDto.RateLimitOptions.ClientIdHeader, configurationDto.RateLimitOptions.QuotaExceededMessage,
+ configurationDto.RateLimitOptions.HttpStatusCode);
+
+ globalConfiguration.LoadBalancerOptions.ApplyLoadBalancerOptions(configurationDto.LoadBalancerOptions.Type, configurationDto.LoadBalancerOptions.Key,
+ configurationDto.LoadBalancerOptions.Expiry);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/ReRouteAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/ReRouteAppService.cs
new file mode 100644
index 000000000..643002669
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/ReRouteAppService.cs
@@ -0,0 +1,166 @@
+using DotNetCore.CAP;
+using LINGYUN.ApiGateway.EventBus;
+using Microsoft.AspNetCore.Authorization;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp;
+using Volo.Abp.Application.Dtos;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Authorize(ApiGatewayPermissions.Route.Default)]
+ public class ReRouteAppService : ApiGatewayApplicationServiceBase, IReRouteAppService
+ {
+ private readonly IRouteGroupChecker _routeGroupChecker;
+ private readonly IReRouteRepository _reRouteRepository;
+ private readonly ICapPublisher _eventPublisher;
+
+ public ReRouteAppService(
+ ICapPublisher eventPublisher,
+ IRouteGroupChecker routeGroupChecker,
+ IReRouteRepository reRouteRepository
+ )
+ {
+ _eventPublisher = eventPublisher;
+ _routeGroupChecker = routeGroupChecker;
+ _reRouteRepository = reRouteRepository;
+ }
+
+ [Authorize(ApiGatewayPermissions.Route.Create)]
+ public async Task CreateAsync(ReRouteCreateDto routeCreateDto)
+ {
+ var reRoute = ObjectMapper.Map(routeCreateDto);
+
+ ApplyReRouteOptions(reRoute, routeCreateDto);
+
+ reRoute = await _reRouteRepository.InsertAsync(reRoute, true);
+
+ var reRouteDto = ObjectMapper.Map(reRoute);
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("ReRoute", "Create"));
+
+ return reRouteDto;
+ }
+
+ [Authorize(ApiGatewayPermissions.Route.Update)]
+ public async Task UpdateAsync(ReRouteUpdateDto routeUpdateDto)
+ {
+ var reRoute = await _reRouteRepository.GetByReRouteIdAsync(long.Parse(routeUpdateDto.ReRouteId));
+
+ reRoute.DangerousAcceptAnyServerCertificateValidator = routeUpdateDto.DangerousAcceptAnyServerCertificateValidator;
+ reRoute.DownstreamScheme = routeUpdateDto.DownstreamScheme;
+ reRoute.Key = routeUpdateDto.Key;
+ reRoute.Priority = routeUpdateDto.Priority;
+ reRoute.RequestIdKey = routeUpdateDto.RequestIdKey;
+ reRoute.ReRouteIsCaseSensitive = routeUpdateDto.ReRouteIsCaseSensitive;
+ reRoute.ServiceName = routeUpdateDto.ServiceName;
+ reRoute.ServiceNamespace = routeUpdateDto.ServiceNamespace;
+ reRoute.Timeout = routeUpdateDto.Timeout;
+ reRoute.UpstreamHost = routeUpdateDto.UpstreamHost;
+ reRoute.DownstreamHttpVersion = routeUpdateDto.DownstreamHttpVersion;
+
+ reRoute.SetDownstreamHeader(routeUpdateDto.DownstreamHeaderTransform);
+ reRoute.SetQueriesParamter(routeUpdateDto.AddQueriesToRequest);
+ reRoute.SetRequestClaims(routeUpdateDto.AddClaimsToRequest);
+ reRoute.SetRequestHeader(routeUpdateDto.AddHeadersToRequest);
+ reRoute.SetRouteClaims(routeUpdateDto.RouteClaimsRequirement);
+ reRoute.SetUpstreamHeader(routeUpdateDto.UpstreamHeaderTransform);
+ reRoute.SetChangeDownstreamPath(routeUpdateDto.ChangeDownstreamPathTemplate);
+ reRoute.SetDelegatingHandler(routeUpdateDto.DelegatingHandlers);
+
+ ApplyReRouteOptions(reRoute, routeUpdateDto);
+
+ reRoute = await _reRouteRepository.UpdateAsync(reRoute, true);
+
+ var reRouteDto = ObjectMapper.Map(reRoute);
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("ReRoute", "Modify"));
+
+ return reRouteDto;
+ }
+
+ public async Task GetAsync(ReRouteGetByIdInputDto routeGetById)
+ {
+ var reRoute = await _reRouteRepository.GetByReRouteIdAsync(routeGetById.RouteId);
+
+ return ObjectMapper.Map(reRoute);
+ }
+
+ public async Task GetByRouteNameAsync(ReRouteGetByNameInputDto routeGetByName)
+ {
+ var reRoute = await _reRouteRepository.GetByNameAsync(routeGetByName.RouteName);
+
+ return ObjectMapper.Map(reRoute);
+ }
+
+ [Authorize(ApiGatewayPermissions.Route.Export)]
+ public async Task> GetAsync(ReRouteGetByAppIdInputDto routeGetByAppId)
+ {
+ await _routeGroupChecker.CheckActiveAsync(routeGetByAppId.AppId);
+
+ var routes = await _reRouteRepository.GetByAppIdAsync(routeGetByAppId.AppId);
+
+ return new ListResultDto(ObjectMapper.Map, List>(routes));
+ }
+
+ public async Task> GetPagedListAsync(ReRouteGetByPagedInputDto routeGetByPaged)
+ {
+ await _routeGroupChecker.CheckActiveAsync(routeGetByPaged.AppId);
+ var reroutesTuple = await _reRouteRepository
+ .GetPagedListAsync(routeGetByPaged.AppId, routeGetByPaged.Filter, routeGetByPaged.Sorting,
+ routeGetByPaged.SkipCount, routeGetByPaged.MaxResultCount);
+
+ return new PagedResultDto(reroutesTuple.total, ObjectMapper.Map, List>(reroutesTuple.routes));
+ }
+
+ [Authorize(ApiGatewayPermissions.Route.Delete)]
+ public async Task DeleteAsync(ReRouteGetByIdInputDto routeGetById)
+ {
+ await _reRouteRepository.DeleteAsync(x => x.ReRouteId.Equals(routeGetById.RouteId));
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("ReRoute", "Delete"));
+ }
+
+ [Authorize(ApiGatewayPermissions.Route.Delete)]
+ public async Task RemoveAsync(ReRouteGetByAppIdInputDto routeGetByAppId)
+ {
+ await _routeGroupChecker.CheckActiveAsync(routeGetByAppId.AppId);
+
+ await _reRouteRepository.DeleteAsync(x => x.AppId.Equals(routeGetByAppId.AppId));
+
+ await _eventPublisher.PublishAsync(ApigatewayConfigChangeCommand.EventName, new ApigatewayConfigChangeCommand("ReRoute", "Clean"));
+ }
+
+ protected virtual void ApplyReRouteOptions(ReRoute reRoute, ReRouteDtoBase routeDto)
+ {
+ var downHostPorts = string.Empty;
+ routeDto.DownstreamHostAndPorts.ForEach(hp => downHostPorts += hp.Host + ":" + hp.Port + ",");
+ reRoute.SetDownstream(routeDto.DownstreamPathTemplate, downHostPorts, routeDto.DownstreamHttpMethod);
+
+ var upHttpMethods = string.Empty;
+ routeDto.UpstreamHttpMethod.ForEach(hm => upHttpMethods += hm + ",");
+ reRoute.SetUpstream(routeDto.UpstreamPathTemplate, upHttpMethods);
+
+ reRoute.AuthenticationOptions.ApplyAuthOptions(routeDto.AuthenticationOptions.AuthenticationProviderKey, routeDto.AuthenticationOptions.AllowedScopes);
+
+ reRoute.CacheOptions.ApplyCacheOption(routeDto.FileCacheOptions.TtlSeconds, routeDto.FileCacheOptions.Region);
+
+ reRoute.HttpHandlerOptions.ApplyAllowAutoRedirect(routeDto.HttpHandlerOptions.AllowAutoRedirect);
+ reRoute.HttpHandlerOptions.ApplyCookieContainer(routeDto.HttpHandlerOptions.UseCookieContainer);
+ reRoute.HttpHandlerOptions.ApplyHttpProxy(routeDto.HttpHandlerOptions.UseProxy);
+ reRoute.HttpHandlerOptions.ApplyHttpTracing(routeDto.HttpHandlerOptions.UseTracing);
+ reRoute.HttpHandlerOptions.SetMaxConnections(routeDto.HttpHandlerOptions.MaxConnectionsPerServer);
+
+ reRoute.LoadBalancerOptions.ApplyLoadBalancerOptions(routeDto.LoadBalancerOptions.Type, routeDto.LoadBalancerOptions.Key, routeDto.LoadBalancerOptions.Expiry);
+
+ reRoute.QoSOptions.ApplyQosOptions(routeDto.QoSOptions.ExceptionsAllowedBeforeBreaking, routeDto.QoSOptions.DurationOfBreak, routeDto.QoSOptions.TimeoutValue);
+
+ reRoute.RateLimitOptions.ApplyRateLimit(routeDto.RateLimitOptions.EnableRateLimiting);
+ reRoute.RateLimitOptions.SetPeriodTimespan(routeDto.RateLimitOptions.Period, routeDto.RateLimitOptions.PeriodTimespan, routeDto.RateLimitOptions.Limit);
+ reRoute.RateLimitOptions.SetClientWhileList(routeDto.RateLimitOptions.ClientWhitelist);
+
+ reRoute.SecurityOptions.SetAllowIpList(routeDto.SecurityOptions.IPAllowedList);
+ reRoute.SecurityOptions.SetBlockIpList(routeDto.SecurityOptions.IPBlockedList);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/RouteGroupAppService.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/RouteGroupAppService.cs
new file mode 100644
index 000000000..ba2beba97
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/LINGYUN/ApiGateway/Ocelot/RouteGroupAppService.cs
@@ -0,0 +1,89 @@
+using LINGYUN.ApiGateway.Data.Filter;
+using Microsoft.AspNetCore.Authorization;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Application.Dtos;
+using Volo.Abp.Data;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ [Authorize(ApiGatewayPermissions.RouteGroup.Default)]
+ public class RouteGroupAppService : ApiGatewayApplicationServiceBase, IRouteGroupAppService
+ {
+ private IDataFilter _dataFilter;
+ protected IDataFilter DataFilter => LazyGetRequiredService(ref _dataFilter);
+ protected IRouteGroupRepository RouterRepository { get; }
+
+ public RouteGroupAppService(
+ IRouteGroupRepository routerRepository)
+ {
+ RouterRepository = routerRepository;
+ }
+
+ [Authorize(ApiGatewayPermissions.RouteGroup.Create)]
+ public virtual async Task CreateAsync(RouteGroupCreateDto routerCreateDto)
+ {
+ var router = new RouteGroup(routerCreateDto.AppId, routerCreateDto.AppName, routerCreateDto.AppIpAddress);
+ router.Name = routerCreateDto.Name;
+ router.IsActive = routerCreateDto.IsActive;
+ router.Description = routerCreateDto.Description;
+
+ router = await RouterRepository.InsertAsync(router, true);
+
+ return ObjectMapper.Map(router);
+ }
+
+ public virtual async Task GetAsync(RouteGroupGetByAppIdInputDto routerGetByAppId)
+ {
+ using (DataFilter.Disable())
+ {
+ var router = await RouterRepository.GetByAppIdAsync(routerGetByAppId.AppId);
+
+ return ObjectMapper.Map(router);
+ }
+ }
+
+ public virtual async Task> GetActivedAsync()
+ {
+ var appIdsDto = new List();
+ var appKeys = await RouterRepository.GetActivedAppsAsync();
+
+ foreach(var app in appKeys)
+ {
+ appIdsDto.Add(new RouteGroupAppIdsDto(app.AppId, app.AppName));
+ }
+
+ return new ListResultDto(appIdsDto);
+ }
+
+ public virtual async Task> GetAsync(RouteGroupGetByPagedInputDto routerGetByPagedInput)
+ {
+ using (DataFilter.Disable())
+ {
+ var routerTupes = await RouterRepository.GetPagedListAsync(routerGetByPagedInput.Filter,
+ routerGetByPagedInput.Sorting, routerGetByPagedInput.SkipCount, routerGetByPagedInput.MaxResultCount);
+ var routers = ObjectMapper.Map, List>(routerTupes.Routers);
+
+ return new PagedResultDto(routerTupes.TotalCount, routers);
+ }
+ }
+
+ [Authorize(ApiGatewayPermissions.RouteGroup.Update)]
+ public virtual async Task UpdateAsync(RouteGroupUpdateDto routerUpdateDto)
+ {
+ var router = await RouterRepository.GetByAppIdAsync(routerUpdateDto.AppId);
+ router.Name = routerUpdateDto.Name;
+ router.IsActive = routerUpdateDto.IsActive;
+ router.Description = routerUpdateDto.Description;
+
+ return ObjectMapper.Map(router);
+ }
+
+ [Authorize(ApiGatewayPermissions.RouteGroup.Delete)]
+ public virtual async Task DeleteAsync(RouteGroupGetByAppIdInputDto routerGetByAppId)
+ {
+ var router = await RouterRepository.GetByAppIdAsync(routerGetByAppId.AppId);
+ await RouterRepository.DeleteAsync(router);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll
new file mode 100644
index 000000000..584d1aaed
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb
new file mode 100644
index 000000000..ab341e4ab
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.deps.json
new file mode 100644
index 000000000..2fc2183ac
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.deps.json
@@ -0,0 +1,2005 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "LINGYUN.ApiGateway.Application/1.0.0": {
+ "dependencies": {
+ "LINGYUN.ApiGateway.Application.Contracts": "1.0.0",
+ "LINGYUN.ApiGateway.Domain": "1.0.0",
+ "NETStandard.Library": "2.0.3",
+ "Volo.Abp.AutoMapper": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Application.dll": {}
+ }
+ },
+ "AutoMapper/9.0.0": {
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/AutoMapper.dll": {
+ "assemblyVersion": "9.0.0.0",
+ "fileVersion": "9.0.0.0"
+ }
+ }
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {
+ "assemblyVersion": "3.3.1.0",
+ "fileVersion": "3.3.1.0"
+ }
+ }
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Diagnostics.DiagnosticSource": "4.7.0",
+ "System.Threading.Channels": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {
+ "assemblyVersion": "3.0.3.0",
+ "fileVersion": "3.0.3.0"
+ }
+ }
+ },
+ "Fody/6.0.2": {},
+ "JetBrains.Annotations/2019.1.3": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2019.1.3.0",
+ "fileVersion": "2019.1.3.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6801"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6801"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.CSharp.dll": {
+ "assemblyVersion": "4.0.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "dependencies": {
+ "System.Memory": "4.5.3",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "NETStandard.Library/2.0.3": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.0.19.0",
+ "fileVersion": "1.0.19.0"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Memory/4.5.3": {
+ "dependencies": {
+ "System.Buffers": "4.5.0",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.6.27617.2"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {
+ "assemblyVersion": "4.1.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "4.0.6.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.700.20.6702"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.Channels/4.7.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "4.2.0.0",
+ "fileVersion": "4.6.27129.4"
+ }
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.AspNetCore.Authorization": "3.1.2",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.AutoMapper/2.7.0": {
+ "dependencies": {
+ "AutoMapper": "9.0.0",
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.AutoMapper.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.Caching.Memory": "3.1.2",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Serialization": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Authorization": "2.7.0",
+ "Volo.Abp.Ddd.Application.Contracts": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0",
+ "Volo.Abp.Features": "2.7.0",
+ "Volo.Abp.Http.Abstractions": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "dependencies": {
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "Volo.Abp.Ddd.Application": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Application.Contracts.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "dependencies": {
+ "DotNetCore.CAP": "3.0.3",
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "Volo.Abp.Caching": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "LINGYUN.ApiGateway.Application/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AutoMapper/9.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xCqvoxT4HIrNY/xlXG9W+BA/awdrhWvMTKTK/igkGSRbhOhpl3Q8O8Gxlhzjc9JsYqE7sS6AxgyuUUvZ6R5/Bw==",
+ "path": "automapper/9.0.0",
+ "hashPath": "automapper.9.0.0.nupkg.sha512"
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "path": "configureawait.fody/3.3.1",
+ "hashPath": "configureawait.fody.3.3.1.nupkg.sha512"
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LVddNDKuuFyqPJIge+9Z6FU6zoTUulJbym7LUQdCwnpfqdleNVZPjAYR8h9HWcPmy3G2YQCTY2a6hXCMlA96jA==",
+ "path": "dotnetcore.cap/3.0.3",
+ "hashPath": "dotnetcore.cap.3.0.3.nupkg.sha512"
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "path": "fody/6.0.2",
+ "hashPath": "fody.6.0.2.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "path": "jetbrains.annotations/2019.1.3",
+ "hashPath": "jetbrains.annotations.2019.1.3.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bbu9qMsOdmNjLLaRawhT3OfjFHleK9D2ICGfmjvkMVNyfx42P5NgypOlqKgK6SDoqtex3DisWd4E3nePtohPCw==",
+ "path": "microsoft.aspnetcore.authorization/3.1.2",
+ "hashPath": "microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4ML2fUxRyfrpXnAppHi8c7MDiTOr9yJ5/Sp6p8XktVw8H5CJJSs6KesM/mc9vREpg6FgC8EvgDRNKom6PLPcjQ==",
+ "path": "microsoft.aspnetcore.metadata/3.1.2",
+ "hashPath": "microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "path": "microsoft.csharp/4.5.0",
+ "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
+ "path": "microsoft.extensions.caching.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
+ "path": "microsoft.extensions.caching.memory/3.1.2",
+ "hashPath": "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "hashPath": "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "hashPath": "microsoft.extensions.localization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "hashPath": "microsoft.extensions.logging.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "path": "microsoft.extensions.options/3.1.2",
+ "hashPath": "microsoft.extensions.options.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "hashPath": "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "hashPath": "microsoft.extensions.primitives.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "path": "netstandard.library/2.0.3",
+ "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "path": "system.buffers/4.5.0",
+ "hashPath": "system.buffers.4.5.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "path": "system.collections.immutable/1.7.0",
+ "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
+ "path": "system.diagnostics.diagnosticsource/4.7.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "hashPath": "system.linq.dynamic.core.1.0.19.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "path": "system.linq.queryable/4.3.0",
+ "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "path": "system.memory/4.5.3",
+ "hashPath": "system.memory.4.5.3.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "path": "system.text.encodings.web/4.7.0",
+ "hashPath": "system.text.encodings.web.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "path": "system.text.json/4.7.1",
+ "hashPath": "system.text.json.4.7.1.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Channels/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gdOOXBhtt2UpTxYJm1DRmoqNfYg5ypvhzhVt0vxKhzxXFjS81r8yIOSFsJYLRa1Jc14GBAqCnjxJstO3zBN7gg==",
+ "path": "system.threading.channels/4.7.0",
+ "hashPath": "system.threading.channels.4.7.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "path": "volo.abp.auditing/2.7.0",
+ "hashPath": "volo.abp.auditing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bteE8BdsxQczy5KjpA0j5S7tZNjvlHkTZyFFswGZxqJvrRmDqNuKDZmM7cBcoumIa2ZRVSVIGu9qKNPIvoZMGw==",
+ "path": "volo.abp.authorization/2.7.0",
+ "hashPath": "volo.abp.authorization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.AutoMapper/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qb8hxcPj6WZocqOfX/6NY533IrNPQ8PSyBMLyzh/ZUkrAoapOBfhfEY8xrNd2/I36+lAvGQRKd3EIyptqqEgjQ==",
+ "path": "volo.abp.automapper/2.7.0",
+ "hashPath": "volo.abp.automapper.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PB7seGXB3/Y7iJ8ugToLywHSgE9wMXwyuGFT1mO5Jd1tzWJkSaeSithfbp9ORs18UH/pZeXYSkRGx60o68lQsQ==",
+ "path": "volo.abp.caching/2.7.0",
+ "hashPath": "volo.abp.caching.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "path": "volo.abp.core/2.7.0",
+ "hashPath": "volo.abp.core.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "path": "volo.abp.data/2.7.0",
+ "hashPath": "volo.abp.data.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y8ecym5Jpm8vtifJRYZpEy7haeFvOJNLRjKSjJqoq48A1B0RevERonY+bB1daaD5RyzDJXtXw0DKwyvfKTyDtQ==",
+ "path": "volo.abp.ddd.application/2.7.0",
+ "hashPath": "volo.abp.ddd.application.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SHSx5Ah1JMkHTUZv4Sqs9px9slpdCt2bYOzPWB299CPOMXkPSFHNGCzxasv3X8a8hGeLeZWSNaMJQsReT7Jo1w==",
+ "path": "volo.abp.ddd.application.contracts/2.7.0",
+ "hashPath": "volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "hashPath": "volo.abp.ddd.domain.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "path": "volo.abp.eventbus/2.7.0",
+ "hashPath": "volo.abp.eventbus.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lvn24lSfUuGdJk847U2iLl/bAZtbSui1r/Owf50xXpl1NvgxH2G3vvjLhwn46Bji9rf1s7zKQhLkw9HGk4sAVg==",
+ "path": "volo.abp.features/2.7.0",
+ "hashPath": "volo.abp.features.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "path": "volo.abp.guids/2.7.0",
+ "hashPath": "volo.abp.guids.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6XUGFBwNRc+f28YKrQzjxpWzAg1R9om741BCXDpAuIphMx0rr/nFeq8JeU5nTtJj61538ejkdSwoUfNbgsrejA==",
+ "path": "volo.abp.http.abstractions/2.7.0",
+ "hashPath": "volo.abp.http.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "path": "volo.abp.json/2.7.0",
+ "hashPath": "volo.abp.json.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "path": "volo.abp.localization/2.7.0",
+ "hashPath": "volo.abp.localization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "hashPath": "volo.abp.localization.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "hashPath": "volo.abp.multitenancy.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "path": "volo.abp.objectextending/2.7.0",
+ "hashPath": "volo.abp.objectextending.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "hashPath": "volo.abp.objectmapping.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "path": "volo.abp.security/2.7.0",
+ "hashPath": "volo.abp.security.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2hRD3WeOmBsbT32jIjmaIAdF/tMg4L5bzBFp9MUYtFbANOa4ZRV9WJ68oTvWITWx+CqlIDWTZgR5mm2jdevNHw==",
+ "path": "volo.abp.serialization/2.7.0",
+ "hashPath": "volo.abp.serialization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "path": "volo.abp.settings/2.7.0",
+ "hashPath": "volo.abp.settings.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "path": "volo.abp.threading/2.7.0",
+ "hashPath": "volo.abp.threading.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "path": "volo.abp.timing/2.7.0",
+ "hashPath": "volo.abp.timing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "path": "volo.abp.uow/2.7.0",
+ "hashPath": "volo.abp.uow.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c5wErWwq4QD95sUGr2vGn+SKaNqC+uJeh34u7J62pse/SreQnBqdaKj+xjdh8A8mIsikPk+KauAkpOjRIZTqUg==",
+ "path": "volo.abp.validation/2.7.0",
+ "hashPath": "volo.abp.validation.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "hashPath": "volo.abp.validation.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "hashPath": "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ },
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll
new file mode 100644
index 000000000..612de2cf8
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb
new file mode 100644
index 000000000..c08d3f513
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll
new file mode 100644
index 000000000..4c59c3ba8
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb
new file mode 100644
index 000000000..9ca6845e4
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll
new file mode 100644
index 000000000..8840eca84
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb
new file mode 100644
index 000000000..17bb4683d
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfo.cs
new file mode 100644
index 000000000..98341b965
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.Application")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("LINGYUN.ApiGateway.Application")]
+[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.Application")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache
new file mode 100644
index 000000000..6a98ecac7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+465d0608383f2495a00b4af82da492ee6d2fb5d3
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.assets.cache
new file mode 100644
index 000000000..ea26fc600
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.assets.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.CopyComplete
new file mode 100644
index 000000000..e69de29bb
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000..348e9d040
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csproj.FileListAbsolute.txt
@@ -0,0 +1,30 @@
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.deps.json
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.deps.json
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Application\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.pdb
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache
new file mode 100644
index 000000000..950c59093
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.csprojAssemblyReference.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll
new file mode 100644
index 000000000..612de2cf8
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb
new file mode 100644
index 000000000..c08d3f513
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.cache
new file mode 100644
index 000000000..39fb6c3cf
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "ANJ7xVyFaVazsZHWVpZIpi8DZHZdDOaYYtXhmUiPEEJS4/HmM7N+Cr+6Nii0xQ1JfGMsr/0E3+OWQ6MQAHK+nA==",
+ "success": true
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.dgspec.json
new file mode 100644
index 000000000..ce50df98c
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.dgspec.json
@@ -0,0 +1,291 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj": {}
+ },
+ "projects": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "projectName": "LINGYUN.ApiGateway.Application.Contracts",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Ddd.Application": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj",
+ "projectName": "LINGYUN.ApiGateway.Application",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj"
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.AutoMapper": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain.Shared",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Localization": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "DotNetCore.CAP": {
+ "target": "Package",
+ "version": "[3.0.3, )"
+ },
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Caching": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ },
+ "Volo.Abp.Ddd.Domain": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.props
new file mode 100644
index 000000000..2528351cf
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\iVarKey\.nuget\packages\;D:\Microsoft\Xamarin\NuGet\;C:\Program Files (x86)\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.4.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.targets
new file mode 100644
index 000000000..c6394fd66
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/LINGYUN.ApiGateway.Application.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.assets.json
new file mode 100644
index 000000000..dfcb14b55
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.assets.json
@@ -0,0 +1,4560 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETStandard,Version=v2.0": {
+ "AutoMapper/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.CSharp": "4.5.0",
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/AutoMapper.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/AutoMapper.dll": {}
+ }
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
+ "Microsoft.Extensions.Options": "3.1.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Diagnostics.DiagnosticSource": "4.7.0",
+ "System.Threading.Channels": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {}
+ }
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll": {}
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ }
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.2",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Buffers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Channels/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ }
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.AspNetCore.Authorization": "3.1.2",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll": {}
+ }
+ },
+ "Volo.Abp.AutoMapper/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "AutoMapper": "9.0.0",
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.AutoMapper.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.AutoMapper.dll": {}
+ }
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.Caching.Memory": "3.1.2",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Serialization": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {}
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Authorization": "2.7.0",
+ "Volo.Abp.Ddd.Application.Contracts": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0",
+ "Volo.Abp.Features": "2.7.0",
+ "Volo.Abp.Http.Abstractions": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ }
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Validation": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Features.dll": {}
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ }
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ }
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {}
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ }
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.dll": {}
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.0",
+ "dependencies": {
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "Volo.Abp.Ddd.Application": "2.7.0"
+ },
+ "compile": {
+ "bin/placeholder/LINGYUN.ApiGateway.Application.Contracts.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/LINGYUN.ApiGateway.Application.Contracts.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.0",
+ "dependencies": {
+ "DotNetCore.CAP": "3.0.3",
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "Volo.Abp.Caching": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0"
+ },
+ "compile": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.0",
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "compile": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "AutoMapper/9.0.0": {
+ "sha512": "xCqvoxT4HIrNY/xlXG9W+BA/awdrhWvMTKTK/igkGSRbhOhpl3Q8O8Gxlhzjc9JsYqE7sS6AxgyuUUvZ6R5/Bw==",
+ "type": "package",
+ "path": "automapper/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "automapper.9.0.0.nupkg.sha512",
+ "automapper.nuspec",
+ "lib/net461/AutoMapper.dll",
+ "lib/net461/AutoMapper.pdb",
+ "lib/net461/AutoMapper.xml",
+ "lib/netstandard2.0/AutoMapper.dll",
+ "lib/netstandard2.0/AutoMapper.pdb",
+ "lib/netstandard2.0/AutoMapper.xml"
+ ]
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "sha512": "R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "type": "package",
+ "path": "configureawait.fody/3.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/ConfigureAwait.Fody.props",
+ "configureawait.fody.3.3.1.nupkg.sha512",
+ "configureawait.fody.nuspec",
+ "lib/net452/ConfigureAwait.dll",
+ "lib/net452/ConfigureAwait.xml",
+ "lib/netstandard2.0/ConfigureAwait.dll",
+ "lib/netstandard2.0/ConfigureAwait.xml",
+ "weaver/ConfigureAwait.Fody.dll",
+ "weaver/ConfigureAwait.Fody.xcf"
+ ]
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "sha512": "LVddNDKuuFyqPJIge+9Z6FU6zoTUulJbym7LUQdCwnpfqdleNVZPjAYR8h9HWcPmy3G2YQCTY2a6hXCMlA96jA==",
+ "type": "package",
+ "path": "dotnetcore.cap/3.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "dotnetcore.cap.3.0.3.nupkg.sha512",
+ "dotnetcore.cap.nuspec",
+ "lib/netstandard2.0/DotNetCore.CAP.dll",
+ "lib/netstandard2.0/DotNetCore.CAP.pdb",
+ "lib/netstandard2.0/DotNetCore.CAP.xml"
+ ]
+ },
+ "Fody/6.0.2": {
+ "sha512": "Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "type": "package",
+ "path": "fody/6.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Fody.targets",
+ "fody.6.0.2.nupkg.sha512",
+ "fody.nuspec",
+ "netclassictask/Fody.dll",
+ "netclassictask/FodyCommon.dll",
+ "netclassictask/FodyHelpers.dll",
+ "netclassictask/FodyIsolated.dll",
+ "netclassictask/Mono.Cecil.Pdb.dll",
+ "netclassictask/Mono.Cecil.Pdb.pdb",
+ "netclassictask/Mono.Cecil.Rocks.dll",
+ "netclassictask/Mono.Cecil.Rocks.pdb",
+ "netclassictask/Mono.Cecil.dll",
+ "netclassictask/Mono.Cecil.pdb",
+ "netstandardtask/Fody.dll",
+ "netstandardtask/FodyCommon.dll",
+ "netstandardtask/FodyHelpers.dll",
+ "netstandardtask/FodyIsolated.dll",
+ "netstandardtask/Mono.Cecil.Pdb.dll",
+ "netstandardtask/Mono.Cecil.Pdb.pdb",
+ "netstandardtask/Mono.Cecil.Rocks.dll",
+ "netstandardtask/Mono.Cecil.Rocks.pdb",
+ "netstandardtask/Mono.Cecil.dll",
+ "netstandardtask/Mono.Cecil.pdb"
+ ]
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "sha512": "E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2019.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Authorization/3.1.2": {
+ "sha512": "bbu9qMsOdmNjLLaRawhT3OfjFHleK9D2ICGfmjvkMVNyfx42P5NgypOlqKgK6SDoqtex3DisWd4E3nePtohPCw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
+ "microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Metadata/3.1.2": {
+ "sha512": "4ML2fUxRyfrpXnAppHi8c7MDiTOr9yJ5/Sp6p8XktVw8H5CJJSs6KesM/mc9vREpg6FgC8EvgDRNKom6PLPcjQ==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.metadata/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
+ "microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512",
+ "microsoft.aspnetcore.metadata.nuspec"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.CSharp/4.5.0": {
+ "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
+ "type": "package",
+ "path": "microsoft.csharp/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.3/Microsoft.CSharp.dll",
+ "lib/netstandard2.0/Microsoft.CSharp.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/uap10.0.16299/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "microsoft.csharp.4.5.0.nupkg.sha512",
+ "microsoft.csharp.nuspec",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/Microsoft.CSharp.dll",
+ "ref/netstandard1.0/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/de/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/es/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/it/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
+ "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
+ "ref/netstandard2.0/Microsoft.CSharp.dll",
+ "ref/netstandard2.0/Microsoft.CSharp.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/uap10.0.16299/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "sha512": "UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "sha512": "4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
+ "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "sha512": "voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "sha512": "AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "sha512": "1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "sha512": "eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
+ "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.composite.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "sha512": "oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "sha512": "s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "sha512": "IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "type": "package",
+ "path": "microsoft.extensions.options/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "sha512": "NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.0": {
+ "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "type": "package",
+ "path": "system.buffers/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.0.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net45/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net46/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net46/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "sha512": "GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.Memory/4.5.3": {
+ "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "type": "package",
+ "path": "system.memory/4.5.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.3.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Numerics.Vectors.dll",
+ "lib/netstandard1.0/System.Numerics.Vectors.xml",
+ "lib/netstandard2.0/System.Numerics.Vectors.dll",
+ "lib/netstandard2.0/System.Numerics.Vectors.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.Numerics.Vectors.dll",
+ "ref/net45/System.Numerics.Vectors.xml",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Numerics.Vectors.dll",
+ "ref/netstandard1.0/System.Numerics.Vectors.xml",
+ "ref/netstandard2.0/System.Numerics.Vectors.dll",
+ "ref/netstandard2.0/System.Numerics.Vectors.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
+ "system.numerics.vectors.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "type": "package",
+ "path": "system.text.encodings.web/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard1.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.1/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.4.7.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Json/4.7.1": {
+ "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "type": "package",
+ "path": "system.text.json/4.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.4.7.1.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Channels/4.7.0": {
+ "sha512": "gdOOXBhtt2UpTxYJm1DRmoqNfYg5ypvhzhVt0vxKhzxXFjS81r8yIOSFsJYLRa1Jc14GBAqCnjxJstO3zBN7gg==",
+ "type": "package",
+ "path": "system.threading.channels/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp3.0/System.Threading.Channels.dll",
+ "lib/netcoreapp3.0/System.Threading.Channels.xml",
+ "lib/netstandard1.3/System.Threading.Channels.dll",
+ "lib/netstandard1.3/System.Threading.Channels.xml",
+ "lib/netstandard2.0/System.Threading.Channels.dll",
+ "lib/netstandard2.0/System.Threading.Channels.xml",
+ "system.threading.channels.4.7.0.nupkg.sha512",
+ "system.threading.channels.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "sha512": "cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "type": "package",
+ "path": "volo.abp.auditing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll",
+ "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
+ "volo.abp.auditing.2.7.0.nupkg.sha512",
+ "volo.abp.auditing.nuspec"
+ ]
+ },
+ "Volo.Abp.Authorization/2.7.0": {
+ "sha512": "bteE8BdsxQczy5KjpA0j5S7tZNjvlHkTZyFFswGZxqJvrRmDqNuKDZmM7cBcoumIa2ZRVSVIGu9qKNPIvoZMGw==",
+ "type": "package",
+ "path": "volo.abp.authorization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Authorization.dll",
+ "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
+ "volo.abp.authorization.2.7.0.nupkg.sha512",
+ "volo.abp.authorization.nuspec"
+ ]
+ },
+ "Volo.Abp.AutoMapper/2.7.0": {
+ "sha512": "Qb8hxcPj6WZocqOfX/6NY533IrNPQ8PSyBMLyzh/ZUkrAoapOBfhfEY8xrNd2/I36+lAvGQRKd3EIyptqqEgjQ==",
+ "type": "package",
+ "path": "volo.abp.automapper/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.AutoMapper.dll",
+ "lib/netstandard2.0/Volo.Abp.AutoMapper.pdb",
+ "volo.abp.automapper.2.7.0.nupkg.sha512",
+ "volo.abp.automapper.nuspec"
+ ]
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "sha512": "PB7seGXB3/Y7iJ8ugToLywHSgE9wMXwyuGFT1mO5Jd1tzWJkSaeSithfbp9ORs18UH/pZeXYSkRGx60o68lQsQ==",
+ "type": "package",
+ "path": "volo.abp.caching/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Caching.dll",
+ "lib/netstandard2.0/Volo.Abp.Caching.pdb",
+ "volo.abp.caching.2.7.0.nupkg.sha512",
+ "volo.abp.caching.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "sha512": "OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "type": "package",
+ "path": "volo.abp.core/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "volo.abp.core.2.7.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "sha512": "J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "type": "package",
+ "path": "volo.abp.data/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Data.dll",
+ "lib/netstandard2.0/Volo.Abp.Data.pdb",
+ "volo.abp.data.2.7.0.nupkg.sha512",
+ "volo.abp.data.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Application/2.7.0": {
+ "sha512": "Y8ecym5Jpm8vtifJRYZpEy7haeFvOJNLRjKSjJqoq48A1B0RevERonY+bB1daaD5RyzDJXtXw0DKwyvfKTyDtQ==",
+ "type": "package",
+ "path": "volo.abp.ddd.application/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb",
+ "volo.abp.ddd.application.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.application.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Application.Contracts/2.7.0": {
+ "sha512": "SHSx5Ah1JMkHTUZv4Sqs9px9slpdCt2bYOzPWB299CPOMXkPSFHNGCzxasv3X8a8hGeLeZWSNaMJQsReT7Jo1w==",
+ "type": "package",
+ "path": "volo.abp.ddd.application.contracts/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb",
+ "volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.application.contracts.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "sha512": "UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "type": "package",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
+ "volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.domain.nuspec"
+ ]
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "sha512": "dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "type": "package",
+ "path": "volo.abp.eventbus/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll",
+ "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
+ "volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "volo.abp.eventbus.nuspec"
+ ]
+ },
+ "Volo.Abp.Features/2.7.0": {
+ "sha512": "Lvn24lSfUuGdJk847U2iLl/bAZtbSui1r/Owf50xXpl1NvgxH2G3vvjLhwn46Bji9rf1s7zKQhLkw9HGk4sAVg==",
+ "type": "package",
+ "path": "volo.abp.features/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Features.dll",
+ "lib/netstandard2.0/Volo.Abp.Features.pdb",
+ "volo.abp.features.2.7.0.nupkg.sha512",
+ "volo.abp.features.nuspec"
+ ]
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "sha512": "8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "type": "package",
+ "path": "volo.abp.guids/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Guids.dll",
+ "lib/netstandard2.0/Volo.Abp.Guids.pdb",
+ "volo.abp.guids.2.7.0.nupkg.sha512",
+ "volo.abp.guids.nuspec"
+ ]
+ },
+ "Volo.Abp.Http.Abstractions/2.7.0": {
+ "sha512": "6XUGFBwNRc+f28YKrQzjxpWzAg1R9om741BCXDpAuIphMx0rr/nFeq8JeU5nTtJj61538ejkdSwoUfNbgsrejA==",
+ "type": "package",
+ "path": "volo.abp.http.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb",
+ "volo.abp.http.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.http.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "sha512": "QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "type": "package",
+ "path": "volo.abp.json/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Json.dll",
+ "lib/netstandard2.0/Volo.Abp.Json.pdb",
+ "volo.abp.json.2.7.0.nupkg.sha512",
+ "volo.abp.json.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "sha512": "DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "type": "package",
+ "path": "volo.abp.localization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.pdb",
+ "volo.abp.localization.2.7.0.nupkg.sha512",
+ "volo.abp.localization.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "sha512": "iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "type": "package",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
+ "volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.localization.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "sha512": "Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "type": "package",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
+ "volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "volo.abp.multitenancy.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "sha512": "X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "type": "package",
+ "path": "volo.abp.objectextending/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
+ "volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "volo.abp.objectextending.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "sha512": "pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "type": "package",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
+ "volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "volo.abp.objectmapping.nuspec"
+ ]
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "sha512": "Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "type": "package",
+ "path": "volo.abp.security/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Security.dll",
+ "lib/netstandard2.0/Volo.Abp.Security.pdb",
+ "volo.abp.security.2.7.0.nupkg.sha512",
+ "volo.abp.security.nuspec"
+ ]
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "sha512": "2hRD3WeOmBsbT32jIjmaIAdF/tMg4L5bzBFp9MUYtFbANOa4ZRV9WJ68oTvWITWx+CqlIDWTZgR5mm2jdevNHw==",
+ "type": "package",
+ "path": "volo.abp.serialization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll",
+ "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
+ "volo.abp.serialization.2.7.0.nupkg.sha512",
+ "volo.abp.serialization.nuspec"
+ ]
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "sha512": "vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "type": "package",
+ "path": "volo.abp.settings/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Settings.dll",
+ "lib/netstandard2.0/Volo.Abp.Settings.pdb",
+ "volo.abp.settings.2.7.0.nupkg.sha512",
+ "volo.abp.settings.nuspec"
+ ]
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "sha512": "uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "type": "package",
+ "path": "volo.abp.threading/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Threading.dll",
+ "lib/netstandard2.0/Volo.Abp.Threading.pdb",
+ "volo.abp.threading.2.7.0.nupkg.sha512",
+ "volo.abp.threading.nuspec"
+ ]
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "sha512": "2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "type": "package",
+ "path": "volo.abp.timing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Timing.dll",
+ "lib/netstandard2.0/Volo.Abp.Timing.pdb",
+ "volo.abp.timing.2.7.0.nupkg.sha512",
+ "volo.abp.timing.nuspec"
+ ]
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "sha512": "Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "type": "package",
+ "path": "volo.abp.uow/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Uow.dll",
+ "lib/netstandard2.0/Volo.Abp.Uow.pdb",
+ "volo.abp.uow.2.7.0.nupkg.sha512",
+ "volo.abp.uow.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation/2.7.0": {
+ "sha512": "c5wErWwq4QD95sUGr2vGn+SKaNqC+uJeh34u7J62pse/SreQnBqdaKj+xjdh8A8mIsikPk+KauAkpOjRIZTqUg==",
+ "type": "package",
+ "path": "volo.abp.validation/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.pdb",
+ "volo.abp.validation.2.7.0.nupkg.sha512",
+ "volo.abp.validation.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "sha512": "oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "type": "package",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
+ "volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.validation.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "sha512": "lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "type": "package",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
+ "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512",
+ "volo.abp.virtualfilesystem.nuspec"
+ ]
+ },
+ "LINGYUN.ApiGateway.Application.Contracts/1.0.0": {
+ "type": "project",
+ "path": "../LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj",
+ "msbuildProject": "../LINGYUN.ApiGateway.Application.Contracts/LINGYUN.ApiGateway.Application.Contracts.csproj"
+ },
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "type": "project",
+ "path": "../LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj",
+ "msbuildProject": "../LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj"
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "path": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "msbuildProject": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETStandard,Version=v2.0": [
+ "LINGYUN.ApiGateway.Application.Contracts >= 1.0.0",
+ "LINGYUN.ApiGateway.Domain >= 1.0.0",
+ "NETStandard.Library >= 2.0.3",
+ "Volo.Abp.AutoMapper >= 2.7.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\iVarKey\\.nuget\\packages\\": {},
+ "D:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj",
+ "projectName": "LINGYUN.ApiGateway.Application",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application.Contracts\\LINGYUN.ApiGateway.Application.Contracts.csproj"
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.AutoMapper": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.nuget.cache
new file mode 100644
index 000000000..9b5e05627
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Application/obj/project.nuget.cache
@@ -0,0 +1,113 @@
+{
+ "version": 2,
+ "dgSpecHash": "ANJ7xVyFaVazsZHWVpZIpi8DZHZdDOaYYtXhmUiPEEJS4/HmM7N+Cr+6Nii0xQ1JfGMsr/0E3+OWQ6MQAHK+nA==",
+ "success": true,
+ "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Application\\LINGYUN.ApiGateway.Application.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\iVarKey\\.nuget\\packages\\automapper\\9.0.0\\automapper.9.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\configureawait.fody\\3.3.1\\configureawait.fody.3.3.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\dotnetcore.cap\\3.0.3\\dotnetcore.cap.3.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\fody\\6.0.2\\fody.6.0.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\jetbrains.annotations\\2019.1.3\\jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.authorization\\3.1.2\\microsoft.aspnetcore.authorization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.metadata\\3.1.2\\microsoft.aspnetcore.metadata.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.2\\microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.2\\microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.2\\microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.2\\microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.2\\microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\3.1.2\\microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\3.1.2\\microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\3.1.2\\microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.json\\3.1.2\\microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\3.1.2\\microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.2\\microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.2\\microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.2\\microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\3.1.2\\microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\3.1.2\\microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\3.1.2\\microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.2\\microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization\\3.1.2\\microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\3.1.2\\microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging\\3.1.2\\microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.2\\microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options\\3.1.2\\microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\3.1.2\\microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.2\\microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.collections.immutable\\1.7.0\\system.collections.immutable.1.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.dynamic.core\\1.0.19\\system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.0\\system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.encodings.web\\4.7.0\\system.text.encodings.web.4.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.json\\4.7.1\\system.text.json.4.7.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.channels\\4.7.0\\system.threading.channels.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.2\\system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.auditing\\2.7.0\\volo.abp.auditing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.authorization\\2.7.0\\volo.abp.authorization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.automapper\\2.7.0\\volo.abp.automapper.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.caching\\2.7.0\\volo.abp.caching.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.core\\2.7.0\\volo.abp.core.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.data\\2.7.0\\volo.abp.data.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.application\\2.7.0\\volo.abp.ddd.application.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.application.contracts\\2.7.0\\volo.abp.ddd.application.contracts.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.domain\\2.7.0\\volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.eventbus\\2.7.0\\volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.features\\2.7.0\\volo.abp.features.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.guids\\2.7.0\\volo.abp.guids.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.http.abstractions\\2.7.0\\volo.abp.http.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.json\\2.7.0\\volo.abp.json.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization\\2.7.0\\volo.abp.localization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization.abstractions\\2.7.0\\volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.multitenancy\\2.7.0\\volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectextending\\2.7.0\\volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectmapping\\2.7.0\\volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.security\\2.7.0\\volo.abp.security.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.serialization\\2.7.0\\volo.abp.serialization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settings\\2.7.0\\volo.abp.settings.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.threading\\2.7.0\\volo.abp.threading.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.timing\\2.7.0\\volo.abp.timing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.uow\\2.7.0\\volo.abp.uow.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation\\2.7.0\\volo.abp.validation.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation.abstractions\\2.7.0\\volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.virtualfilesystem\\2.7.0\\volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj
new file mode 100644
index 000000000..8a56afa78
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj
@@ -0,0 +1,22 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayConsts.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayConsts.cs
new file mode 100644
index 000000000..10ef22ca6
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayConsts.cs
@@ -0,0 +1,7 @@
+namespace LINGYUN.ApiGateway
+{
+ public class ApiGatewayConsts
+ {
+ public const string RemoteServiceName = "ApiGateway";
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayDomainSharedModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayDomainSharedModule.cs
new file mode 100644
index 000000000..b546dec10
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/ApiGatewayDomainSharedModule.cs
@@ -0,0 +1,32 @@
+using LINGYUN.ApiGateway.Localization;
+using Volo.Abp.Localization;
+using Volo.Abp.Localization.ExceptionHandling;
+using Volo.Abp.Modularity;
+using Volo.Abp.VirtualFileSystem;
+
+namespace LINGYUN.ApiGateway
+{
+ [DependsOn(typeof(AbpLocalizationModule))]
+ public class ApiGatewayDomainSharedModule : AbpModule
+ {
+ public override void ConfigureServices(ServiceConfigurationContext context)
+ {
+ Configure(options =>
+ {
+ options.FileSets.AddEmbedded();
+ });
+
+ Configure(options =>
+ {
+ options.Resources
+ .Add("zh-Hans")
+ .AddVirtualJson("/LINGYUN/ApiGateway/Localization/DomainShared");
+ });
+
+ Configure(options =>
+ {
+
+ });
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/EventBus/ApigatewayConfigChangeCommand.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/EventBus/ApigatewayConfigChangeCommand.cs
new file mode 100644
index 000000000..4843f33fb
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/EventBus/ApigatewayConfigChangeCommand.cs
@@ -0,0 +1,23 @@
+using System;
+
+namespace LINGYUN.ApiGateway.EventBus
+{
+ public class ApigatewayConfigChangeCommand
+ {
+ public const string EventName = nameof(ApigatewayConfigChangeCommand);
+ public DateTime DateTime { get; set; }
+ public string Method { get; set; }
+ public string Object { get; set; }
+ protected ApigatewayConfigChangeCommand()
+ {
+
+ }
+
+ public ApigatewayConfigChangeCommand(string @object, string @method)
+ {
+ DateTime = DateTime.Now;
+ Object = @object;
+ Method = @method;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/ApiGatewayResource.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/ApiGatewayResource.cs
new file mode 100644
index 000000000..3adc31639
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/ApiGatewayResource.cs
@@ -0,0 +1,10 @@
+using Volo.Abp.Localization;
+
+namespace LINGYUN.ApiGateway.Localization
+{
+ [LocalizationResourceName("ApiGateway")]
+ public class ApiGatewayResource
+ {
+
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/en.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/en.json
new file mode 100644
index 000000000..747d05d5a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/en.json
@@ -0,0 +1,83 @@
+{
+ "culture": "en",
+ "texts": {
+ "None": "None",
+ "Format": "format",
+ "Optional": "optional",
+ "Sample": "sample",
+ "Menu:Home": "Home",
+ "Menu:Logout": "Logout",
+ "Welcome": "Welcome",
+ "OcelotManager": "Ocelot manager center",
+ "Side:Ocelot": "Ocelot ApiGateway",
+ "Side:Ocelot:Global": "Global Config",
+ "Side:Ocelot:ReRoutes": "ReRoute Config",
+ "Side:Ocelot:Source": "Ocelot source",
+ "Side:ClusterOcelot": "Server cluster",
+ "Side:ClusterOcelot:ServerList": "Server list",
+ "Submit": "Save changed",
+ "Basic": "Basic options",
+ "BaseUrl": "Baseurl",
+ "RequestIdKey": "RequestIdKey",
+ "DownstreamScheme": "DownstreamScheme",
+ "Qos": "Qos options",
+ "ExceptionsAllowedBeforeBreaking": "Max exception",
+ "DurationOfBreak": "Melting(ms)",
+ "TimeoutValue": "Timeout(ms)",
+ "RateLimit": "Rate limit",
+ "ClientIdHeader": "ClientIdHeader",
+ "QuotaExceededMessage": "Exceeded message",
+ "HttpStatusCode": "Httpcode",
+ "DisableRateLimitHeaders": "Disable header",
+ "HttpOptions": "Http options",
+ "HttpHandler": "Http handler",
+ "OtherOptions": "Other options",
+ "AllowAutoRedirect": "Auto rediret",
+ "UseCookieContainer": "Cookie container",
+ "UseProxy": "Http proxy",
+ "UseTracing": "Http track",
+ "LoadBalancer": "Load balancer",
+ "LoadWay": "Balancer type",
+ "LeastConnection": "Least connection",
+ "RoundRobin": "Round robin",
+ "NoLoadBalance": "No load balance",
+ "ServiceDiscovery": "Service discovery",
+ "DiscoveryType": "Service type",
+ "Host": "Host",
+ "Port": "Port",
+ "RouteName": "Route name",
+ "ServiceName": "Service name",
+ "UpstreamPathTemplate": "UpstreamPathTemplate",
+ "DownstreamPathTemplate": "DownstreamPathTemplate",
+ "UpstreamHttpMethod": "UpstreamHttpMethod",
+ "DownstreamHostAndPorts": "DownstreamHostAndPorts",
+ "RouteClaimsRequirement": "RouteClaimsRequirement",
+ "AggregateKey": "AggregateKey",
+ "Priority": "Priority",
+ "CertificateValidator": "CertificateValidator",
+ "CaseSensitive": "CaseSensitive",
+ "UpstreamHeaderTransform": "UpstreamHeaderTransform",
+ "DownstreamHeaderTransform": "DownstreamHeaderTransform",
+ "AddHeadersToRequest": "AddHeadersToRequest",
+ "AddClaimsToRequest": "AddClaimsToRequest",
+ "AddQueriesToRequest": "AddQueriesToRequest",
+ "ClientWhitelist": "Client whitelist",
+ "Limit": "Limit",
+ "PeriodTimespan": "PeriodTimespan(s)",
+ "Period": "Period",
+ "EnableRateLimiting": "EnableRateLimiting",
+ "AuthenticationProviderKey": "AuthenticationProviderKey",
+ "AllowedScopes": "AllowedScopes",
+ "IpAllowedList": "IpAllowedList",
+ "IpBlockedList": "IpBlockedList",
+ "SecurityOptions": "SecurityOptions",
+ "RefreshList": "RefreshList",
+ "AddReoute": "AddReoute",
+ "EditRoute": "EditRoute",
+ "DeleteSelection": "DeleteSelection",
+ "DeleteAll": "DeleteAll",
+ "ExportJson": "Export json file",
+ "WellDeleteSelection": "Will delete the selected routes",
+ "WellDeleteAll": "Will delete the all routes"
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/zh-Hans.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/zh-Hans.json
new file mode 100644
index 000000000..b1995e18f
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Localization/DomainShared/zh-Hans.json
@@ -0,0 +1,83 @@
+{
+ "culture": "zh-Hans",
+ "texts": {
+ "None": "未指定",
+ "Format": "格式",
+ "Optional": "可选",
+ "Sample": "示例",
+ "Menu:Home": "首页",
+ "Menu:Logout": "退出",
+ "Welcome": "欢迎",
+ "OcelotManager": "Ocelot配置管理中心",
+ "Side:Ocelot": "网关配置",
+ "Side:Ocelot:Global": "全局配置",
+ "Side:Ocelot:ReRoutes": "路由配置",
+ "Side:Ocelot:Source": "配置文件",
+ "Side:ClusterOcelot": "服务器集群",
+ "Side:ClusterOcelot:ServerList": "服务器列表",
+ "Submit": "立即提交",
+ "Basic": "基础配置",
+ "BaseUrl": "访问路径",
+ "RequestIdKey": "访问标识",
+ "DownstreamScheme": "下游协议",
+ "Qos": "服务质量",
+ "ExceptionsAllowedBeforeBreaking": "最大异常请求",
+ "DurationOfBreak": "熔断时间(ms)",
+ "TimeoutValue": "超时时间(ms)",
+ "RateLimit": "流量控制",
+ "ClientIdHeader": "客户端请求头",
+ "QuotaExceededMessage": "过载错误消息",
+ "HttpStatusCode": "HTTP错误代码",
+ "DisableRateLimitHeaders": "禁用HTTP头",
+ "HttpOptions": "HTTP选项",
+ "HttpHandler": "HTTP处理程序",
+ "OtherOptions": "其他选项",
+ "AllowAutoRedirect": "HTTP重定向",
+ "UseCookieContainer": "Cookie容器",
+ "UseProxy": "HTTP代理",
+ "UseTracing": "HTTP追踪",
+ "LoadBalancer": "负载均衡",
+ "LoadWay": "负载方式",
+ "LeastConnection": "总是空闲服务器",
+ "RoundRobin": "服务器轮询",
+ "NoLoadBalance": "发往首个服务器",
+ "ServiceDiscovery": "服务发现",
+ "DiscoveryType": "实例类型",
+ "Host": "主机地址",
+ "Port": "端口号",
+ "RouteName": "路由名称",
+ "ServiceName": "服务名称",
+ "UpstreamPathTemplate": "上游路径",
+ "DownstreamPathTemplate": "下游路径",
+ "UpstreamHttpMethod": "上游请求方式",
+ "DownstreamHostAndPorts": "下游请求地址",
+ "RouteClaimsRequirement": "路由鉴权标识",
+ "AggregateKey": "聚合标识",
+ "Priority": "优先级",
+ "CertificateValidator": "忽略SSL警告",
+ "CaseSensitive": "区分大小写",
+ "UpstreamHeaderTransform": "上游请求头",
+ "DownstreamHeaderTransform": "下游请求头",
+ "AddHeadersToRequest": "请求头转换",
+ "AddClaimsToRequest": "用户声明转换",
+ "AddQueriesToRequest": "查询参数转换",
+ "ClientWhitelist": "客户端白名单",
+ "Limit": "最大允许次数",
+ "PeriodTimespan": "重试时间(s)",
+ "Period": "限制时间",
+ "EnableRateLimiting": "启用流量控制",
+ "AuthenticationProviderKey": "授权标识",
+ "AllowedScopes": "授权范围",
+ "IpAllowedList": "IP白名单",
+ "IpBlockedList": "IP黑名单",
+ "SecurityOptions": "安全选项",
+ "RefreshList": "刷新列表",
+ "AddReoute": "添加路由",
+ "EditRoute": "编辑路由",
+ "DeleteSelection": "删除选择",
+ "DeleteAll": "删除所有",
+ "ExportJson": "导出Json配置",
+ "WellDeleteSelection": "将删除选定的路由",
+ "WellDeleteAll": "将删除所有路由"
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Ocelot/RouteGroupAppKey.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Ocelot/RouteGroupAppKey.cs
new file mode 100644
index 000000000..850eadcec
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Ocelot/RouteGroupAppKey.cs
@@ -0,0 +1,13 @@
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupAppKey
+ {
+ public string AppId { get; }
+ public string AppName { get; }
+ public RouteGroupAppKey(string appId, string appName)
+ {
+ AppId = appId;
+ AppName = appName;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingDefinitionProvider.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingDefinitionProvider.cs
new file mode 100644
index 000000000..7c7f380ac
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingDefinitionProvider.cs
@@ -0,0 +1,12 @@
+using Volo.Abp.Settings;
+
+namespace LINGYUN.ApiGateway.Settings
+{
+ public class ApiGatewaySettingDefinitionProvider : SettingDefinitionProvider
+ {
+ public override void Define(ISettingDefinitionContext context)
+ {
+
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingNames.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingNames.cs
new file mode 100644
index 000000000..dab2586de
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/LINGYUN/ApiGateway/Settings/ApiGatewaySettingNames.cs
@@ -0,0 +1,9 @@
+namespace LINGYUN.ApiGateway.Settings
+{
+ public static class ApiGatewaySettingNames
+ {
+ public const string DefaultDbTablePrefix = "AppApiGateway";
+
+ public const string DefaultDbSchema = null;
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/Newtonsoft/Json/HexLongConverter.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/Newtonsoft/Json/HexLongConverter.cs
new file mode 100644
index 000000000..e28c43cda
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/Newtonsoft/Json/HexLongConverter.cs
@@ -0,0 +1,30 @@
+using System;
+
+namespace Newtonsoft.Json
+{
+ public class HexLongConverter : JsonConverter
+ {
+ public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
+ {
+ long v = value is ulong ? (long)(ulong)value : (long)value;
+ writer.WriteValue(v.ToString());
+ }
+ public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
+ {
+ string value = reader.Value as string;
+ long lValue = long.Parse(value);
+ return typeof(ulong) == objectType ? (object)(ulong)lValue : lValue;
+ }
+ public override bool CanConvert(Type objectType)
+ {
+ switch (objectType.FullName)
+ {
+ case "System.Int64":
+ case "System.UInt64":
+ return true;
+ default:
+ return false;
+ }
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.deps.json
new file mode 100644
index 000000000..f7597e8a4
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.deps.json
@@ -0,0 +1,1435 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "dependencies": {
+ "NETStandard.Library": "2.0.3",
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {
+ "assemblyVersion": "3.3.1.0",
+ "fileVersion": "3.3.1.0"
+ }
+ }
+ },
+ "Fody/6.0.2": {},
+ "JetBrains.Annotations/2019.1.3": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2019.1.3.0",
+ "fileVersion": "2019.1.3.0"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "dependencies": {
+ "System.Memory": "4.5.3",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "NETStandard.Library/2.0.3": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.0.19.0",
+ "fileVersion": "1.0.19.0"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Memory/4.5.3": {
+ "dependencies": {
+ "System.Buffers": "4.5.0",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.6.27617.2"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {
+ "assemblyVersion": "4.1.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "4.0.6.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.700.20.6702"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "4.2.0.0",
+ "fileVersion": "4.6.27129.4"
+ }
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "path": "configureawait.fody/3.3.1",
+ "hashPath": "configureawait.fody.3.3.1.nupkg.sha512"
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "path": "fody/6.0.2",
+ "hashPath": "fody.6.0.2.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "path": "jetbrains.annotations/2019.1.3",
+ "hashPath": "jetbrains.annotations.2019.1.3.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "hashPath": "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "hashPath": "microsoft.extensions.localization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "hashPath": "microsoft.extensions.logging.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "path": "microsoft.extensions.options/3.1.2",
+ "hashPath": "microsoft.extensions.options.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "hashPath": "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "hashPath": "microsoft.extensions.primitives.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "path": "netstandard.library/2.0.3",
+ "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "path": "system.buffers/4.5.0",
+ "hashPath": "system.buffers.4.5.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "path": "system.collections.immutable/1.7.0",
+ "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "hashPath": "system.linq.dynamic.core.1.0.19.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "path": "system.linq.queryable/4.3.0",
+ "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "path": "system.memory/4.5.3",
+ "hashPath": "system.memory.4.5.3.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "path": "system.text.encodings.web/4.7.0",
+ "hashPath": "system.text.encodings.web.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "path": "system.text.json/4.7.1",
+ "hashPath": "system.text.json.4.7.1.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "path": "volo.abp.core/2.7.0",
+ "hashPath": "volo.abp.core.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "path": "volo.abp.data/2.7.0",
+ "hashPath": "volo.abp.data.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "path": "volo.abp.localization/2.7.0",
+ "hashPath": "volo.abp.localization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "hashPath": "volo.abp.localization.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "hashPath": "volo.abp.multitenancy.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "path": "volo.abp.objectextending/2.7.0",
+ "hashPath": "volo.abp.objectextending.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "path": "volo.abp.security/2.7.0",
+ "hashPath": "volo.abp.security.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "path": "volo.abp.settings/2.7.0",
+ "hashPath": "volo.abp.settings.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "path": "volo.abp.uow/2.7.0",
+ "hashPath": "volo.abp.uow.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "hashPath": "volo.abp.validation.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "hashPath": "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll
new file mode 100644
index 000000000..2bac2737c
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb
new file mode 100644
index 000000000..9ca6845e4
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs
new file mode 100644
index 000000000..de75f2f83
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.Domain.Shared")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("LINGYUN.ApiGateway.Domain.Shared")]
+[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.Domain.Shared")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache
new file mode 100644
index 000000000..914d24483
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+d0820217e35e3a9915ae2d8fd917236b11e48d73
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.assets.cache
new file mode 100644
index 000000000..5c4400745
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.assets.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.CoreCompileInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.CoreCompileInputs.cache
new file mode 100644
index 000000000..e826eb8cc
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+061f3f9088fee775a74c51e73c470d50ddb271db
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000..7c526ad2f
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csproj.FileListAbsolute.txt
@@ -0,0 +1,17 @@
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.deps.json
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.deps.json
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain.Shared\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.csproj.CoreCompileInputs.cache
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache
new file mode 100644
index 000000000..e239fc379
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.csprojAssemblyReference.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll
new file mode 100644
index 000000000..2bac2737c
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb
new file mode 100644
index 000000000..9ca6845e4
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.cache
new file mode 100644
index 000000000..f5d5f0fce
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "da2hL/7QZsiuNmssMk3XK9aNE9T7ixQzP7wZlRrrAM2tdGhURozM0UIxx9L1PbCgAVgrlXfM8ZnthJRFRQZYJw==",
+ "success": true
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.dgspec.json
new file mode 100644
index 000000000..8df57ccf5
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.dgspec.json
@@ -0,0 +1,73 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {}
+ },
+ "projects": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain.Shared",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Localization": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.props
new file mode 100644
index 000000000..2528351cf
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\iVarKey\.nuget\packages\;D:\Microsoft\Xamarin\NuGet\;C:\Program Files (x86)\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.4.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.targets
new file mode 100644
index 000000000..c6394fd66
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/LINGYUN.ApiGateway.Domain.Shared.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.assets.json
new file mode 100644
index 000000000..a266cacb5
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.assets.json
@@ -0,0 +1,3694 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETStandard,Version=v2.0": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.2",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Buffers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "sha512": "R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "type": "package",
+ "path": "configureawait.fody/3.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/ConfigureAwait.Fody.props",
+ "configureawait.fody.3.3.1.nupkg.sha512",
+ "configureawait.fody.nuspec",
+ "lib/net452/ConfigureAwait.dll",
+ "lib/net452/ConfigureAwait.xml",
+ "lib/netstandard2.0/ConfigureAwait.dll",
+ "lib/netstandard2.0/ConfigureAwait.xml",
+ "weaver/ConfigureAwait.Fody.dll",
+ "weaver/ConfigureAwait.Fody.xcf"
+ ]
+ },
+ "Fody/6.0.2": {
+ "sha512": "Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "type": "package",
+ "path": "fody/6.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Fody.targets",
+ "fody.6.0.2.nupkg.sha512",
+ "fody.nuspec",
+ "netclassictask/Fody.dll",
+ "netclassictask/FodyCommon.dll",
+ "netclassictask/FodyHelpers.dll",
+ "netclassictask/FodyIsolated.dll",
+ "netclassictask/Mono.Cecil.Pdb.dll",
+ "netclassictask/Mono.Cecil.Pdb.pdb",
+ "netclassictask/Mono.Cecil.Rocks.dll",
+ "netclassictask/Mono.Cecil.Rocks.pdb",
+ "netclassictask/Mono.Cecil.dll",
+ "netclassictask/Mono.Cecil.pdb",
+ "netstandardtask/Fody.dll",
+ "netstandardtask/FodyCommon.dll",
+ "netstandardtask/FodyHelpers.dll",
+ "netstandardtask/FodyIsolated.dll",
+ "netstandardtask/Mono.Cecil.Pdb.dll",
+ "netstandardtask/Mono.Cecil.Pdb.pdb",
+ "netstandardtask/Mono.Cecil.Rocks.dll",
+ "netstandardtask/Mono.Cecil.Rocks.pdb",
+ "netstandardtask/Mono.Cecil.dll",
+ "netstandardtask/Mono.Cecil.pdb"
+ ]
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "sha512": "E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2019.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "sha512": "voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "sha512": "AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "sha512": "1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "sha512": "eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
+ "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.composite.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "sha512": "oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "sha512": "s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "sha512": "IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "type": "package",
+ "path": "microsoft.extensions.options/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "sha512": "NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.0": {
+ "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "type": "package",
+ "path": "system.buffers/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.0.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "sha512": "GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.Memory/4.5.3": {
+ "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "type": "package",
+ "path": "system.memory/4.5.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.3.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Numerics.Vectors.dll",
+ "lib/netstandard1.0/System.Numerics.Vectors.xml",
+ "lib/netstandard2.0/System.Numerics.Vectors.dll",
+ "lib/netstandard2.0/System.Numerics.Vectors.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.Numerics.Vectors.dll",
+ "ref/net45/System.Numerics.Vectors.xml",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Numerics.Vectors.dll",
+ "ref/netstandard1.0/System.Numerics.Vectors.xml",
+ "ref/netstandard2.0/System.Numerics.Vectors.dll",
+ "ref/netstandard2.0/System.Numerics.Vectors.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
+ "system.numerics.vectors.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "type": "package",
+ "path": "system.text.encodings.web/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard1.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.1/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.4.7.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Json/4.7.1": {
+ "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "type": "package",
+ "path": "system.text.json/4.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.4.7.1.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "sha512": "OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "type": "package",
+ "path": "volo.abp.core/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "volo.abp.core.2.7.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "sha512": "J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "type": "package",
+ "path": "volo.abp.data/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Data.dll",
+ "lib/netstandard2.0/Volo.Abp.Data.pdb",
+ "volo.abp.data.2.7.0.nupkg.sha512",
+ "volo.abp.data.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "sha512": "DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "type": "package",
+ "path": "volo.abp.localization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.pdb",
+ "volo.abp.localization.2.7.0.nupkg.sha512",
+ "volo.abp.localization.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "sha512": "iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "type": "package",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
+ "volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.localization.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "sha512": "Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "type": "package",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
+ "volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "volo.abp.multitenancy.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "sha512": "X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "type": "package",
+ "path": "volo.abp.objectextending/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
+ "volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "volo.abp.objectextending.nuspec"
+ ]
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "sha512": "Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "type": "package",
+ "path": "volo.abp.security/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Security.dll",
+ "lib/netstandard2.0/Volo.Abp.Security.pdb",
+ "volo.abp.security.2.7.0.nupkg.sha512",
+ "volo.abp.security.nuspec"
+ ]
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "sha512": "vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "type": "package",
+ "path": "volo.abp.settings/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Settings.dll",
+ "lib/netstandard2.0/Volo.Abp.Settings.pdb",
+ "volo.abp.settings.2.7.0.nupkg.sha512",
+ "volo.abp.settings.nuspec"
+ ]
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "sha512": "Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "type": "package",
+ "path": "volo.abp.uow/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Uow.dll",
+ "lib/netstandard2.0/Volo.Abp.Uow.pdb",
+ "volo.abp.uow.2.7.0.nupkg.sha512",
+ "volo.abp.uow.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "sha512": "oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "type": "package",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
+ "volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.validation.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "sha512": "lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "type": "package",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
+ "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512",
+ "volo.abp.virtualfilesystem.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETStandard,Version=v2.0": [
+ "NETStandard.Library >= 2.0.3",
+ "Volo.Abp.Localization >= 2.7.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\iVarKey\\.nuget\\packages\\": {},
+ "D:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain.Shared",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Localization": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.nuget.cache
new file mode 100644
index 000000000..e6fac4e36
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain.Shared/obj/project.nuget.cache
@@ -0,0 +1,87 @@
+{
+ "version": 2,
+ "dgSpecHash": "da2hL/7QZsiuNmssMk3XK9aNE9T7ixQzP7wZlRrrAM2tdGhURozM0UIxx9L1PbCgAVgrlXfM8ZnthJRFRQZYJw==",
+ "success": true,
+ "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\iVarKey\\.nuget\\packages\\configureawait.fody\\3.3.1\\configureawait.fody.3.3.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\fody\\6.0.2\\fody.6.0.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\jetbrains.annotations\\2019.1.3\\jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.2\\microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.2\\microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.2\\microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\3.1.2\\microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\3.1.2\\microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\3.1.2\\microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.json\\3.1.2\\microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\3.1.2\\microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.2\\microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.2\\microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.2\\microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\3.1.2\\microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\3.1.2\\microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\3.1.2\\microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.2\\microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization\\3.1.2\\microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\3.1.2\\microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging\\3.1.2\\microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.2\\microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options\\3.1.2\\microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\3.1.2\\microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.2\\microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.collections.immutable\\1.7.0\\system.collections.immutable.1.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.dynamic.core\\1.0.19\\system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.0\\system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.encodings.web\\4.7.0\\system.text.encodings.web.4.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.json\\4.7.1\\system.text.json.4.7.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.2\\system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.core\\2.7.0\\volo.abp.core.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.data\\2.7.0\\volo.abp.data.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization\\2.7.0\\volo.abp.localization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization.abstractions\\2.7.0\\volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.multitenancy\\2.7.0\\volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectextending\\2.7.0\\volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.security\\2.7.0\\volo.abp.security.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settings\\2.7.0\\volo.abp.settings.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.uow\\2.7.0\\volo.abp.uow.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation.abstractions\\2.7.0\\volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.virtualfilesystem\\2.7.0\\volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj
new file mode 100644
index 000000000..1732dc330
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN.ApiGateway.Domain.csproj
@@ -0,0 +1,18 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/ApiGatewayDomainModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/ApiGatewayDomainModule.cs
new file mode 100644
index 000000000..49c4ca360
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/ApiGatewayDomainModule.cs
@@ -0,0 +1,10 @@
+using Volo.Abp.Domain;
+using Volo.Abp.Modularity;
+
+namespace LINGYUN.ApiGateway
+{
+ [DependsOn(typeof(AbpDddDomainModule))]
+ public class ApiGatewayDomainModule : AbpModule
+ {
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Data/Filter/IActivation.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Data/Filter/IActivation.cs
new file mode 100644
index 000000000..2d64aa138
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Data/Filter/IActivation.cs
@@ -0,0 +1,7 @@
+namespace LINGYUN.ApiGateway.Data.Filter
+{
+ public interface IActivation
+ {
+ bool IsActive { get; set; }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRoute.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRoute.cs
new file mode 100644
index 000000000..fd524324e
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRoute.cs
@@ -0,0 +1,99 @@
+using System.Collections.Generic;
+using System.Linq;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ // TODO: 聚合暂时不实现
+ public class AggregateReRoute : AggregateRoot
+ {
+ public virtual string AppId { get; protected set; }
+ ///
+ /// 聚合名称
+ ///
+ public virtual string Name { get; protected set; }
+ public virtual long ReRouteId { get; private set; }
+ public virtual string ReRouteKeys { get; private set; }
+ public virtual string UpstreamPathTemplate { get; private set; }
+ public virtual string UpstreamHost { get; private set; }
+ public virtual bool ReRouteIsCaseSensitive { get; private set; }
+ public virtual string Aggregator { get; private set; }
+ public virtual int? Priority { get; set; }
+ public virtual string UpstreamHttpMethod { get; private set; }
+ public virtual ICollection ReRouteKeysConfig { get; private set; }
+ protected AggregateReRoute()
+ {
+ ReRouteKeysConfig = new List();
+ }
+
+ public AggregateReRoute SetUpstreamPath(string host, string path, string appId)
+ {
+ AppId = appId;
+ UpstreamHost = host;
+ UpstreamPathTemplate = path;
+ return this;
+ }
+
+ public AggregateReRoute(string name, long routeId, string aggregator) : this()
+ {
+ Name = name;
+ ReRouteId = routeId;
+ Aggregator = aggregator;
+ }
+
+ public AggregateReRoute AddUpstreamHttpMethod(string method)
+ {
+ if (!UpstreamHttpMethod.Contains(method))
+ {
+ UpstreamHttpMethod += "," + method;
+ }
+ return this;
+ }
+
+ public AggregateReRoute RemoveUpstreamHttpMethod(string method)
+ {
+ if (!UpstreamHttpMethod.Contains(method))
+ {
+ var removeMethod = "," + method;
+ UpstreamHttpMethod = UpstreamHttpMethod.Replace(removeMethod, "");
+ }
+ return this;
+ }
+
+ public AggregateReRoute AddRouteKey(string key)
+ {
+ if (!ReRouteKeys.Contains(key))
+ {
+ ReRouteKeys += "," + key;
+ }
+ return this;
+ }
+
+ public AggregateReRoute RemoveRouteKey(string key)
+ {
+ if (!ReRouteKeys.Contains(key))
+ {
+ var removeKey = "," + key;
+ ReRouteKeys = ReRouteKeys.Replace(removeKey, "");
+ }
+ return this;
+ }
+
+ public AggregateReRoute AddReRouteConfig(string routeKey, string paramter, string jsonPath)
+ {
+ if (!ReRouteKeysConfig.Any(k => k.ReRouteKey.Equals(routeKey)))
+ {
+ var aggregateReRouteConfig = new AggregateReRouteConfig(ReRouteId);
+ aggregateReRouteConfig.ApplyReRouteConfig(routeKey, paramter, jsonPath);
+ ReRouteKeysConfig.Add(aggregateReRouteConfig);
+ }
+ return this;
+ }
+
+ public AggregateReRoute RemoveReRouteConfig(string routeKey)
+ {
+ ReRouteKeysConfig.RemoveAll(k => k.ReRouteKey.Equals(routeKey));
+ return this;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRouteConfig.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRouteConfig.cs
new file mode 100644
index 000000000..38e379ee0
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/AggregateReRouteConfig.cs
@@ -0,0 +1,29 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class AggregateReRouteConfig : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+ public virtual string ReRouteKey { get; private set; }
+ public virtual string Parameter { get; private set; }
+ public virtual string JsonPath { get; private set; }
+
+ protected AggregateReRouteConfig()
+ {
+
+ }
+
+ internal AggregateReRouteConfig(long reRouteId)
+ {
+ ReRouteId = reRouteId;
+ }
+
+ public void ApplyReRouteConfig(string routeKey, string paramter, string jsonPath)
+ {
+ ReRouteKey = routeKey;
+ Parameter = paramter;
+ JsonPath = jsonPath;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/IAggregateReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/IAggregateReRouteRepository.cs
new file mode 100644
index 000000000..79191a444
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Aggregate/IAggregateReRouteRepository.cs
@@ -0,0 +1,13 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Repositories;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IAggregateReRouteRepository : IBasicRepository
+ {
+ Task> GetByAppIdAsync(string appId);
+
+ Task<(List routes, long total)> GetPagedListAsync(string appId, string filter = "", string sorting = "", int skipCount = 1, int maxResultCount = 100);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/AuthenticationOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/AuthenticationOptions.cs
new file mode 100644
index 000000000..41f458c82
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/AuthenticationOptions.cs
@@ -0,0 +1,40 @@
+using System.Collections.Generic;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class AuthenticationOptions : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+ public virtual string AuthenticationProviderKey { get; private set; }
+ public virtual string AllowedScopes { get; set; }
+ public virtual ReRoute ReRoute { get; private set; }
+
+ protected AuthenticationOptions()
+ {
+
+ }
+ public AuthenticationOptions(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+
+ public void ApplyAuthOptions(string key, List allowScopes)
+ {
+ AuthenticationProviderKey = key;
+ SetAllowScopes(allowScopes);
+ }
+
+ public void SetAllowScopes(List allowScopes)
+ {
+ if(allowScopes != null && allowScopes.Count > 0)
+ {
+ AllowedScopes = allowScopes.JoinAsString(",");
+ }
+ else
+ {
+ AllowedScopes = "";
+ }
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/CacheOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/CacheOptions.cs
new file mode 100644
index 000000000..5e01b55be
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/CacheOptions.cs
@@ -0,0 +1,26 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class CacheOptions : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+ public virtual int? TtlSeconds { get; private set; }
+ public virtual string Region { get; private set; }
+ public virtual ReRoute ReRoute { get; private set; }
+ protected CacheOptions()
+ {
+
+ }
+ public CacheOptions(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+
+ public void ApplyCacheOption(int? ttl, string region)
+ {
+ TtlSeconds = ttl;
+ Region = region;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/DynamicReRoute.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/DynamicReRoute.cs
new file mode 100644
index 000000000..a3b6b02b9
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/DynamicReRoute.cs
@@ -0,0 +1,31 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class DynamicReRoute : AggregateRoot
+ {
+ public virtual long DynamicReRouteId { get; private set; }
+ public virtual string ServiceName { get; private set; }
+ public virtual string DownstreamHttpVersion { get; private set; }
+ public virtual RateLimitRule RateLimitRule { get; private set; }
+ public virtual string AppId { get; protected set; }
+ protected DynamicReRoute()
+ {
+
+ }
+ public DynamicReRoute(long dynamicReRouteId, string appId, string serviceName, string downHttpVersion = "")
+ {
+ AppId = appId;
+ ServiceName = serviceName;
+ DynamicReRouteId = dynamicReRouteId;
+ DownstreamHttpVersion = downHttpVersion;
+ RateLimitRule = new RateLimitRule("", null, null);
+ RateLimitRule.SetDynamicReRouteId(DynamicReRouteId);
+ }
+
+ public void SetRateLimitRule(RateLimitRule limitRule)
+ {
+ RateLimitRule = limitRule;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/IDynamicReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/IDynamicReRouteRepository.cs
new file mode 100644
index 000000000..227239a50
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Dynamic/IDynamicReRouteRepository.cs
@@ -0,0 +1,13 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Repositories;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IDynamicReRouteRepository : IBasicRepository
+ {
+ Task GetByItemIdAsync(int itemId);
+
+ Task> GetByAppIdAsync(string appId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/GlobalConfiguration.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/GlobalConfiguration.cs
new file mode 100644
index 000000000..4fc33033a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/GlobalConfiguration.cs
@@ -0,0 +1,58 @@
+using LINGYUN.ApiGateway.Data.Filter;
+using Volo.Abp;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class GlobalConfiguration : AggregateRoot, ISoftDelete, IActivation
+ {
+ public virtual long ItemId { get; protected set; }
+ public virtual string RequestIdKey { get; set; }
+ public virtual ServiceDiscoveryProvider ServiceDiscoveryProvider { get; protected set; }
+
+ public virtual RateLimitOptions RateLimitOptions { get; protected set; }
+
+ public virtual QoSOptions QoSOptions { get; protected set; }
+
+ public virtual string BaseUrl { get; set; }
+
+ public virtual LoadBalancerOptions LoadBalancerOptions { get; protected set; }
+
+ public virtual string DownstreamScheme { get; set; }
+
+ public virtual string DownstreamHttpVersion { get; set; }
+
+ public virtual HttpHandlerOptions HttpHandlerOptions { get; protected set; }
+
+ public bool IsDeleted { get ; set ; }
+ public bool IsActive { get; set; }
+ public virtual string AppId { get; protected set; }
+
+ protected GlobalConfiguration()
+ {
+
+ }
+
+ public GlobalConfiguration(long itemId, string baseUrl, string appId)
+ {
+ AppId = appId;
+ ItemId = itemId;
+ BaseUrl = baseUrl;
+ Init();
+ }
+
+ private void Init()
+ {
+ ServiceDiscoveryProvider = new ServiceDiscoveryProvider(ItemId);
+ RateLimitOptions = new RateLimitOptions(ItemId);
+ QoSOptions = new QoSOptions(null, null, 30000);
+ QoSOptions.SetItemId(ItemId);
+ LoadBalancerOptions = new LoadBalancerOptions("LeastConnection", "SessionId", null);
+ LoadBalancerOptions.SetItemId(ItemId);
+ HttpHandlerOptions = HttpHandlerOptions.Default();
+ HttpHandlerOptions.SetItemId(ItemId);
+ IsActive = true;
+ IsDeleted = false;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/IGlobalConfigRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/IGlobalConfigRepository.cs
new file mode 100644
index 000000000..f010bbf55
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Global/IGlobalConfigRepository.cs
@@ -0,0 +1,14 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Repositories;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IGlobalConfigRepository : IBasicRepository
+ {
+ Task GetByAppIdAsync(string appId);
+ Task GetByItemIdAsync(long itemId);
+ Task<(List Globals, long TotalCount)> GetPagedListAsync(string filter = "", string sorting = "",
+ int skipCount = 1, int maxResultCOunt = 10);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Headers.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Headers.cs
new file mode 100644
index 000000000..04e2d1a6e
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Headers.cs
@@ -0,0 +1,26 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class Headers : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+ public virtual string Key { get; private set; }
+ public virtual string Value { get; private set; }
+
+ protected Headers()
+ {
+
+ }
+ public Headers(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+
+ public void SetHeader(string key, string value)
+ {
+ Key = key;
+ Value = value;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HostAndPort.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HostAndPort.cs
new file mode 100644
index 000000000..d4c108c69
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HostAndPort.cs
@@ -0,0 +1,27 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class HostAndPort : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+ public virtual string Host { get; private set; }
+ public virtual int? Port { get; private set; }
+
+ protected HostAndPort()
+ {
+
+ }
+
+ public HostAndPort(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+
+ public void SetHostAndPort(string host, int? port)
+ {
+ Host = host;
+ Port = port;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HttpHandlerOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HttpHandlerOptions.cs
new file mode 100644
index 000000000..8a2b0a2dc
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/HttpHandlerOptions.cs
@@ -0,0 +1,72 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class HttpHandlerOptions : Entity
+ {
+ public virtual long? ItemId { get; private set; }
+
+ public virtual long? ReRouteId { get; private set; }
+
+ public virtual int? MaxConnectionsPerServer { get; private set; }
+
+ public virtual bool AllowAutoRedirect { get; private set; }
+
+ public virtual bool UseCookieContainer { get; private set; }
+
+ public virtual bool UseTracing { get; private set; }
+
+ public virtual bool UseProxy { get; private set; }
+ public virtual ReRoute ReRoute { get; private set; }
+ public virtual GlobalConfiguration GlobalConfiguration { get; private set; }
+ protected HttpHandlerOptions()
+ {
+
+ }
+
+ public static HttpHandlerOptions Default()
+ {
+ var options = new HttpHandlerOptions();
+ options.ApplyAllowAutoRedirect(false);
+ options.ApplyCookieContainer(false);
+ options.ApplyHttpTracing(false);
+ options.ApplyHttpProxy(false);
+ return options;
+ }
+ public HttpHandlerOptions SetReRouteId(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ return this;
+ }
+
+ public HttpHandlerOptions SetItemId(long itemId)
+ {
+ ItemId = itemId;
+ return this;
+ }
+
+ public void ApplyAllowAutoRedirect(bool allowAutoRedirect)
+ {
+ AllowAutoRedirect = allowAutoRedirect;
+ }
+ public void ApplyCookieContainer(bool useCookieContainer)
+ {
+ UseCookieContainer = useCookieContainer;
+ }
+
+ public void ApplyHttpTracing(bool httpTracing)
+ {
+ UseTracing = httpTracing;
+ }
+
+ public void ApplyHttpProxy(bool httpProxy)
+ {
+ UseProxy = httpProxy;
+ }
+
+ public void SetMaxConnections(int? maxConnections)
+ {
+ MaxConnectionsPerServer = maxConnections;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/LoadBalancerOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/LoadBalancerOptions.cs
new file mode 100644
index 000000000..e3b229bdb
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/LoadBalancerOptions.cs
@@ -0,0 +1,52 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class LoadBalancerOptions : Entity
+ {
+ public virtual long? ItemId { get; private set; }
+ public virtual long? ReRouteId { get; private set; }
+ ///
+ /// 负载均衡类型
+ ///
+ public virtual string Type { get; private set; }
+ ///
+ /// 用于Cookie会话密钥
+ ///
+ public virtual string Key { get; private set; }
+ ///
+ /// 会话阻断时间
+ ///
+ public virtual int? Expiry { get; private set; }
+ public virtual ReRoute ReRoute { get; private set; }
+ public virtual GlobalConfiguration GlobalConfiguration { get; private set; }
+
+ protected LoadBalancerOptions()
+ {
+
+ }
+ public LoadBalancerOptions(string type, string key, int? expiry)
+ {
+ ApplyLoadBalancerOptions(type, key, expiry);
+ }
+
+ public LoadBalancerOptions SetReRouteId(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ return this;
+ }
+
+ public LoadBalancerOptions SetItemId(long itemId)
+ {
+ ItemId = itemId;
+ return this;
+ }
+
+ public void ApplyLoadBalancerOptions(string type, string key, int? expiry)
+ {
+ Type = type;
+ Key = key;
+ Expiry = expiry;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/QoSOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/QoSOptions.cs
new file mode 100644
index 000000000..82e42163a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/QoSOptions.cs
@@ -0,0 +1,51 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class QoSOptions : Entity
+ {
+ public virtual long? ItemId { get; private set; }
+
+ public virtual long? ReRouteId { get; private set; }
+
+ public virtual int? ExceptionsAllowedBeforeBreaking { get; private set; }
+
+ public virtual int? DurationOfBreak { get; private set; }
+
+ public virtual int? TimeoutValue { get; private set; }
+
+ public virtual ReRoute ReRoute { get; private set; }
+
+ public virtual GlobalConfiguration GlobalConfiguration { get; private set; }
+
+ protected QoSOptions()
+ {
+
+ }
+
+ public QoSOptions(int? exceptionBreaking, int? duration, int? timeout)
+ {
+ ApplyQosOptions(exceptionBreaking, duration, timeout);
+ }
+
+ public QoSOptions SetReRouteId(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ return this;
+ }
+
+ public QoSOptions SetItemId(long itemId)
+ {
+ ItemId = itemId;
+ return this;
+ }
+
+
+ public void ApplyQosOptions(int? exceptionBreaking, int? duration, int? timeout)
+ {
+ ExceptionsAllowedBeforeBreaking = exceptionBreaking;
+ DurationOfBreak = duration;
+ TimeoutValue = timeout;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitOptions.cs
new file mode 100644
index 000000000..81dfe590a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitOptions.cs
@@ -0,0 +1,63 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RateLimitOptions : Entity
+ {
+ ///
+ /// 所属配置项主键
+ ///
+ public virtual long ItemId { get; protected set; }
+ ///
+ /// 客户端标头
+ ///
+ public virtual string ClientIdHeader { get; set; }
+ ///
+ /// 过载错误消息
+ ///
+ public virtual string QuotaExceededMessage { get; set; }
+ ///
+ /// 限速计数器前缀
+ ///
+ public virtual string RateLimitCounterPrefix { get; set; }
+ ///
+ /// 禁用限速标头
+ ///
+ public virtual bool DisableRateLimitHeaders { get; set; }
+ ///
+ /// HTTP状态码
+ ///
+ public virtual int? HttpStatusCode { get; set; }
+ public virtual GlobalConfiguration GlobalConfiguration { get; private set; }
+ protected RateLimitOptions()
+ {
+
+ }
+
+ public RateLimitOptions(long itemId)
+ {
+ ItemId = itemId;
+ Initl();
+ }
+
+ public void ApplyRateLimitOptions(string clientHeader, string excepMessage, int? httpStatusCode = 429)
+ {
+ DisableRateLimitHeaders = true;
+ ClientIdHeader = clientHeader;
+ QuotaExceededMessage = excepMessage;
+ HttpStatusCode = httpStatusCode;
+ }
+
+ public void SetLimitHeadersStatus(bool status)
+ {
+ DisableRateLimitHeaders = status;
+ }
+
+ private void Initl()
+ {
+ ClientIdHeader = "ClientId";
+ RateLimitCounterPrefix = "ocelot";
+ HttpStatusCode = 429;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitRule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitRule.cs
new file mode 100644
index 000000000..ac4e0a360
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RateLimitRule.cs
@@ -0,0 +1,66 @@
+using System.Collections.Generic;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RateLimitRule : Entity
+ {
+ public virtual long? ReRouteId { get; private set; }
+ public virtual long? DynamicReRouteId { get; private set; }
+ ///
+ /// 客户端白名单列表,多个以分号分隔
+ ///
+ public virtual string ClientWhitelist { get; private set; }
+ ///
+ /// 是否启用流量现值
+ ///
+ public virtual bool EnableRateLimiting { get; private set; }
+
+ public virtual string Period { get; private set; }
+ ///
+ /// 速率极限周期
+ ///
+ public virtual double? PeriodTimespan { get; private set; }
+ ///
+ /// 客户端在定义的时间内可以发出的最大请求数
+ ///
+ public virtual long? Limit { get; private set; }
+ public virtual ReRoute ReRoute { get; private set; }
+ public virtual DynamicReRoute DynamicReRoute { get; private set; }
+ protected RateLimitRule()
+ {
+
+ }
+ public RateLimitRule(string period, double? timeSpan, long? limit)
+ {
+ SetPeriodTimespan(period, timeSpan, limit);
+ }
+
+ public void SetReRouteId(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+
+ public void SetDynamicReRouteId(long rdynamicRerouteId)
+ {
+ DynamicReRouteId = rdynamicRerouteId;
+ }
+
+ public void ApplyRateLimit(bool enableRateLimiting)
+ {
+ EnableRateLimiting = enableRateLimiting;
+ }
+
+ public void SetClientWhileList(List clientWhileList)
+ {
+ ClientWhitelist = clientWhileList.JoinAsString(",");
+ }
+
+ public void SetPeriodTimespan(string period, double? timeSpan, long? limit)
+ {
+ Period = period;
+ PeriodTimespan = timeSpan;
+ Limit = limit;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/IReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/IReRouteRepository.cs
new file mode 100644
index 000000000..b3e4f8cf8
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/IReRouteRepository.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq.Expressions;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Repositories;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IReRouteRepository : IBasicRepository
+ {
+ Task GetByNameAsync(string routeName);
+
+ Task GetByReRouteIdAsync(long routeId);
+
+ Task> GetByAppIdAsync(string appId);
+
+ Task<(List routes, long total)> GetPagedListAsync(string appId, string filter = "", string sorting = "", int skipCount = 1, int maxResultCount = 100);
+
+ Task DeleteAsync(Expression> predicate, bool autoSave = false, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+
+ Task RemoveAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/ReRoute.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/ReRoute.cs
new file mode 100644
index 000000000..bcab68385
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/Route/ReRoute.cs
@@ -0,0 +1,188 @@
+using System.Collections.Generic;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ReRoute : AggregateRoot
+ {
+ ///
+ /// 路由ID
+ ///
+ public virtual long ReRouteId { get; private set; }
+ ///
+ /// 路由名称
+ ///
+ public virtual string ReRouteName { get; private set; }
+ ///
+ /// 下游路由路径
+ ///
+ public virtual string DownstreamPathTemplate { get; private set; }
+ ///
+ /// 变更下游路径
+ ///
+ public virtual string ChangeDownstreamPathTemplate { get; private set; }
+ ///
+ /// 下游请求方法
+ ///
+ public virtual string DownstreamHttpMethod { get; private set; }
+ ///
+ /// 上游路由路径
+ ///
+ public virtual string UpstreamPathTemplate { get; private set; }
+ ///
+ /// 下游Http方法列表,分号间隔
+ ///
+ public virtual string UpstreamHttpMethod { get; private set; }
+ public virtual string AddHeadersToRequest { get; private set; }
+ public virtual string UpstreamHeaderTransform { get; private set; }
+ public virtual string DownstreamHeaderTransform { get; private set; }
+ public virtual string AddClaimsToRequest { get; private set; }
+ public virtual string RouteClaimsRequirement { get; private set; }
+ public virtual string AddQueriesToRequest { get; private set; }
+ public virtual string RequestIdKey { get; set; }
+ public virtual CacheOptions CacheOptions { get; protected set; }
+ public virtual bool ReRouteIsCaseSensitive { get; set; }
+ public virtual string ServiceName { get; set; }
+ public virtual string ServiceNamespace { get; set; }
+ public virtual string DownstreamScheme { get; set; }
+ public virtual QoSOptions QoSOptions { get; protected set; }
+ public virtual LoadBalancerOptions LoadBalancerOptions { get; protected set; }
+ public virtual RateLimitRule RateLimitOptions { get; protected set; }
+ public virtual AuthenticationOptions AuthenticationOptions { get; protected set; }
+ public virtual HttpHandlerOptions HttpHandlerOptions { get; protected set; }
+ public virtual string DownstreamHostAndPorts { get; private set; }
+ public virtual string DelegatingHandlers { get; private set; }
+ public virtual string UpstreamHost { get; set; }
+ public virtual string Key { get; set; }
+ public virtual int? Priority { get; set; }
+ public virtual int? Timeout { get; set; }
+ public virtual bool DangerousAcceptAnyServerCertificateValidator { get; set; }
+ public virtual SecurityOptions SecurityOptions { get; protected set; }
+ public virtual string DownstreamHttpVersion { get; set; }
+ public virtual string AppId { get; private set; }
+ protected ReRoute()
+ {
+
+ }
+
+ public ReRoute(long rerouteId, string routeName, string appId)
+ {
+ AppId = appId;
+ ReRouteId = rerouteId;
+ SetRouteName(routeName);
+ InitlizaReRoute();
+ }
+
+ public void SetUpstream(string upPath, string upMethod)
+ {
+ UpstreamPathTemplate = upPath;
+ UpstreamHttpMethod = upMethod;
+ }
+
+ public void SetDownstream(string downPath, string downHost, string downHttpMethod)
+ {
+ DownstreamPathTemplate = downPath;
+ DownstreamHostAndPorts = downHost;
+ DownstreamHttpMethod = downHttpMethod;
+ }
+
+ public void SetRouteName(string routeName)
+ {
+ ReRouteName = routeName;
+ }
+
+ public void SetDelegatingHandler(List handlers)
+ {
+ DelegatingHandlers = string.Empty;
+ foreach(var handler in handlers)
+ {
+ DelegatingHandlers += handler + ",";
+ }
+ }
+
+ public void SetChangeDownstreamPath(Dictionary downPaths)
+ {
+ ChangeDownstreamPathTemplate = string.Empty;
+ foreach (var downPath in downPaths)
+ {
+ ChangeDownstreamPathTemplate += downPath.Key + ":" + downPath.Value;
+ ChangeDownstreamPathTemplate += ",";
+ }
+ }
+
+ public void SetQueriesParamter(Dictionary paramters)
+ {
+ AddQueriesToRequest = string.Empty;
+ foreach (var paramter in paramters)
+ {
+ AddQueriesToRequest += paramter.Key + ":" + paramter.Value;
+ AddQueriesToRequest += ",";
+ }
+ }
+
+ public void SetRouteClaims(Dictionary claims)
+ {
+ RouteClaimsRequirement = string.Empty;
+ foreach (var claim in claims)
+ {
+ RouteClaimsRequirement += claim.Key + ":" + claim.Value;
+ RouteClaimsRequirement += ",";
+ }
+ }
+
+ public void SetRequestClaims(Dictionary claims)
+ {
+ AddClaimsToRequest = string.Empty;
+ foreach (var claim in claims)
+ {
+ AddClaimsToRequest += claim.Key + ":" + claim.Value;
+ AddClaimsToRequest += ",";
+ }
+ }
+
+ public void SetDownstreamHeader(Dictionary headers)
+ {
+ DownstreamHeaderTransform = string.Empty;
+ foreach (var header in headers)
+ {
+ DownstreamHeaderTransform += header.Key + ":" + header.Value;
+ DownstreamHeaderTransform += ",";
+ }
+ }
+
+ public void SetUpstreamHeader(Dictionary headers)
+ {
+ UpstreamHeaderTransform = string.Empty;
+ foreach (var header in headers)
+ {
+ UpstreamHeaderTransform += header.Key + ":" + header.Value;
+ UpstreamHeaderTransform += ",";
+ }
+ }
+
+ public void SetRequestHeader(Dictionary headers)
+ {
+ AddHeadersToRequest = string.Empty;
+ foreach (var header in headers)
+ {
+ AddHeadersToRequest += header.Key + ":" + header.Value;
+ AddHeadersToRequest += ",";
+ }
+ }
+
+ private void InitlizaReRoute()
+ {
+ QoSOptions = new QoSOptions(null, null, 30000);
+ QoSOptions.SetReRouteId(ReRouteId);
+ CacheOptions = new CacheOptions(ReRouteId);
+ LoadBalancerOptions = new LoadBalancerOptions("LeastConnection", "SessionId", null);
+ LoadBalancerOptions.SetReRouteId(ReRouteId);
+ RateLimitOptions = new RateLimitRule("", null, null);
+ RateLimitOptions.SetReRouteId(ReRouteId);
+ AuthenticationOptions = new AuthenticationOptions(ReRouteId);
+ HttpHandlerOptions = HttpHandlerOptions.Default();
+ HttpHandlerOptions.SetReRouteId(ReRouteId);
+ SecurityOptions = new SecurityOptions(ReRouteId);
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupChecker.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupChecker.cs
new file mode 100644
index 000000000..aa58eac7a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupChecker.cs
@@ -0,0 +1,9 @@
+using System.Threading.Tasks;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IRouteGroupChecker
+ {
+ Task CheckActiveAsync(string appId);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupRepository.cs
new file mode 100644
index 000000000..17e59342f
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/IRouteGroupRepository.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Volo.Abp.Domain.Repositories;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public interface IRouteGroupRepository : IBasicRepository
+ {
+ Task> GetActivedAppsAsync();
+
+ Task GetByAppIdAsync(string appId);
+
+ Task<(List Routers, long TotalCount)> GetPagedListAsync(string filter = "", string sorting = "", int skipCount = 1, int maxResultCount = 10);
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroup.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroup.cs
new file mode 100644
index 000000000..d04fcb046
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroup.cs
@@ -0,0 +1,27 @@
+using LINGYUN.ApiGateway.Data.Filter;
+using System;
+using Volo.Abp.Domain.Entities.Auditing;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroup : FullAuditedAggregateRoot, IActivation
+ {
+ public virtual string Name { get; set; }
+ public virtual string AppId { get; protected set; }
+ public virtual string AppName { get; protected set; }
+ public virtual string AppIpAddress { get; protected set; }
+ public virtual string Description { get; set; }
+ public virtual bool IsActive { get; set; }
+ protected RouteGroup()
+ {
+
+ }
+
+ public RouteGroup(string appId, string appName, string appIp)
+ {
+ AppId = appId;
+ AppName = appName;
+ AppIpAddress = appIp;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroupChecker.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroupChecker.cs
new file mode 100644
index 000000000..d23ba29a2
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/RouteGroup/RouteGroupChecker.cs
@@ -0,0 +1,32 @@
+using LINGYUN.ApiGateway.Data.Filter;
+using System.Threading.Tasks;
+using Volo.Abp;
+using Volo.Abp.Data;
+using Volo.Abp.DependencyInjection;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class RouteGroupChecker : IRouteGroupChecker, ITransientDependency
+ {
+ private readonly IDataFilter _dataFilter;
+ private readonly IRouteGroupRepository _routeGroupRepository;
+ public RouteGroupChecker(
+ IDataFilter dataFilter,
+ IRouteGroupRepository routeGroupRepository)
+ {
+ _dataFilter = dataFilter;
+ _routeGroupRepository = routeGroupRepository;
+ }
+ public virtual async Task CheckActiveAsync(string appId)
+ {
+ using (_dataFilter.Disable())
+ {
+ var routeGroup = await _routeGroupRepository.GetByAppIdAsync(appId);
+ if(!routeGroup.IsActive)
+ {
+ throw new UserFriendlyException($"查询的路由应用:{routeGroup.AppName} 未启用!");
+ }
+ }
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/SecurityOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/SecurityOptions.cs
new file mode 100644
index 000000000..a285916c7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/SecurityOptions.cs
@@ -0,0 +1,32 @@
+using System.Collections.Generic;
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class SecurityOptions : Entity
+ {
+ public virtual long ReRouteId { get; private set; }
+
+ public virtual string IPAllowedList { get; private set; }
+
+ public virtual string IPBlockedList { get; private set; }
+ public virtual ReRoute ReRoute { get; private set; }
+ protected SecurityOptions()
+ {
+
+ }
+ public SecurityOptions(long rerouteId)
+ {
+ ReRouteId = rerouteId;
+ }
+ public void SetAllowIpList(List allowIpList)
+ {
+ IPAllowedList = allowIpList.JoinAsString(",");
+ }
+
+ public void SetBlockIpList(List blockIpList)
+ {
+ IPBlockedList = blockIpList.JoinAsString(",");
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/ServiceDiscoveryProvider.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/ServiceDiscoveryProvider.cs
new file mode 100644
index 000000000..89b326052
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Ocelot/ServiceDiscoveryProvider.cs
@@ -0,0 +1,32 @@
+using Volo.Abp.Domain.Entities;
+
+namespace LINGYUN.ApiGateway.Ocelot
+{
+ public class ServiceDiscoveryProvider : Entity
+ {
+ public virtual long ItemId { get; protected set; }
+ public virtual string Host { get; set; }
+ public virtual int? Port { get; set; }
+ public virtual string Type { get; set; }
+ public virtual string Token { get; set; }
+ public virtual string ConfigurationKey { get; set; }
+ public virtual int? PollingInterval { get; set; }
+ public virtual string Namespace { get; set; }
+ public virtual string Scheme { get; set; }
+ public virtual GlobalConfiguration GlobalConfiguration { get; private set; }
+ protected ServiceDiscoveryProvider()
+ {
+
+ }
+ public ServiceDiscoveryProvider(long itemId)
+ {
+ ItemId = itemId;
+ }
+
+ public void BindServiceRegister(string host, int? port)
+ {
+ Host = host;
+ Port = port;
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Snowflake/ISnowflakeIdGenerator.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Snowflake/ISnowflakeIdGenerator.cs
new file mode 100644
index 000000000..8e3a5b8f0
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/LINGYUN/ApiGateway/Snowflake/ISnowflakeIdGenerator.cs
@@ -0,0 +1,7 @@
+namespace LINGYUN.ApiGateway.Snowflake
+{
+ public interface ISnowflakeIdGenerator
+ {
+ long NextId();
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/System/Linq/IQueryableExtensions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/System/Linq/IQueryableExtensions.cs
new file mode 100644
index 000000000..186b9e296
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/System/Linq/IQueryableExtensions.cs
@@ -0,0 +1,52 @@
+using System.Collections.Generic;
+
+namespace System.Linq
+{
+ public static class IQueryableExtensions
+ {
+ private const int _defaultPageNumber = 0;
+ ///
+ /// Linq to Ef 分页查询
+ ///
+ ///
+ ///
+ /// 页码
+ /// 页面大小
+ ///
+ public static IQueryable EfPageBy(this IQueryable source, int pageNumber = 1, int pageSize = 100)
+ {
+ pageNumber = pageNumber - 1;
+ if (pageNumber < 0)
+ {
+ pageNumber = _defaultPageNumber;
+ }
+ return source.Skip(pageNumber * pageSize).Take(pageSize);
+ }
+
+ ///
+ /// 查询结果去重复
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static IEnumerable Distinct(this IQueryable source, Func keySelector)
+ {
+ return source.GroupBy(keySelector).Select(g => g.First());
+ }
+
+ ///
+ /// 去除重复键值
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static IEnumerable Distinct(this IEnumerable source, Func keySelector)
+ {
+ return source.GroupBy(keySelector).Select(g => g.First());
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll
new file mode 100644
index 000000000..4c59c3ba8
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb
new file mode 100644
index 000000000..9ca6845e4
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.deps.json
new file mode 100644
index 000000000..b68d5913e
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.deps.json
@@ -0,0 +1,1756 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.0/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.0": {},
+ ".NETStandard,Version=v2.0/": {
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "dependencies": {
+ "DotNetCore.CAP": "3.0.3",
+ "LINGYUN.ApiGateway.Domain.Shared": "1.0.0",
+ "NETStandard.Library": "2.0.3",
+ "Volo.Abp.Caching": "2.7.0",
+ "Volo.Abp.Ddd.Domain": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.dll": {}
+ }
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {
+ "assemblyVersion": "3.3.1.0",
+ "fileVersion": "3.3.1.0"
+ }
+ }
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "dependencies": {
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Diagnostics.DiagnosticSource": "4.7.0",
+ "System.Threading.Channels": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {
+ "assemblyVersion": "3.0.3.0",
+ "fileVersion": "3.0.3.0"
+ }
+ }
+ },
+ "Fody/6.0.2": {},
+ "JetBrains.Annotations/2019.1.3": {
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "assemblyVersion": "2019.1.3.0",
+ "fileVersion": "2019.1.3.0"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "dependencies": {
+ "System.Memory": "4.5.3",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "3.1.2.0",
+ "fileVersion": "3.100.220.6706"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "NETStandard.Library/2.0.3": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "12.0.0.0",
+ "fileVersion": "12.0.3.23909"
+ }
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
+ "assemblyVersion": "5.0.0.0",
+ "fileVersion": "5.0.0.0"
+ }
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {
+ "assemblyVersion": "1.0.4.0",
+ "fileVersion": "1.0.4.0"
+ }
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "dependencies": {
+ "System.Collections.Immutable": "1.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {
+ "assemblyVersion": "4.0.3.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {
+ "assemblyVersion": "1.2.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "4.2.1.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {
+ "assemblyVersion": "1.0.19.0",
+ "fileVersion": "1.0.19.0"
+ }
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Memory/4.5.3": {
+ "dependencies": {
+ "System.Buffers": "4.5.0",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.6.27617.2"
+ }
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {
+ "assemblyVersion": "4.1.4.0",
+ "fileVersion": "4.6.26515.6"
+ }
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {
+ "assemblyVersion": "4.0.13.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "4.1.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "4.0.6.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {
+ "assemblyVersion": "4.0.1.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "4.0.5.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "assemblyVersion": "4.0.1.1",
+ "fileVersion": "4.700.20.6702"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {
+ "assemblyVersion": "4.0.12.0",
+ "fileVersion": "4.6.24705.1"
+ }
+ }
+ },
+ "System.Threading.Channels/4.7.0": {
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {
+ "assemblyVersion": "4.0.2.0",
+ "fileVersion": "4.700.19.56404"
+ }
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "4.2.0.0",
+ "fileVersion": "4.6.27129.4"
+ }
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.Caching.Memory": "3.1.2",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Serialization": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
+ "assemblyVersion": "2.7.0.0",
+ "fileVersion": "2.7.0.0"
+ }
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "runtime": {
+ "LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "LINGYUN.ApiGateway.Domain/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "path": "configureawait.fody/3.3.1",
+ "hashPath": "configureawait.fody.3.3.1.nupkg.sha512"
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LVddNDKuuFyqPJIge+9Z6FU6zoTUulJbym7LUQdCwnpfqdleNVZPjAYR8h9HWcPmy3G2YQCTY2a6hXCMlA96jA==",
+ "path": "dotnetcore.cap/3.0.3",
+ "hashPath": "dotnetcore.cap.3.0.3.nupkg.sha512"
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "path": "fody/6.0.2",
+ "hashPath": "fody.6.0.2.nupkg.sha512"
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "path": "jetbrains.annotations/2019.1.3",
+ "hashPath": "jetbrains.annotations.2019.1.3.nupkg.sha512"
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
+ "path": "microsoft.extensions.caching.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
+ "path": "microsoft.extensions.caching.memory/3.1.2",
+ "hashPath": "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "hashPath": "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "hashPath": "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "hashPath": "microsoft.extensions.localization.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "hashPath": "microsoft.extensions.logging.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "hashPath": "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "path": "microsoft.extensions.options/3.1.2",
+ "hashPath": "microsoft.extensions.options.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "hashPath": "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "hashPath": "microsoft.extensions.primitives.3.1.2.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "path": "netstandard.library/2.0.3",
+ "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "path": "newtonsoft.json/12.0.3",
+ "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "path": "nito.asyncex.context/5.0.0",
+ "hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "path": "nito.collections.deque/1.0.4",
+ "hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "path": "nito.disposables/2.0.0",
+ "hashPath": "nito.disposables.2.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "path": "system.buffers/4.5.0",
+ "hashPath": "system.buffers.4.5.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "path": "system.collections.immutable/1.7.0",
+ "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
+ "path": "system.diagnostics.diagnosticsource/4.7.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "hashPath": "system.linq.dynamic.core.1.0.19.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "path": "system.linq.queryable/4.3.0",
+ "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "path": "system.memory/4.5.3",
+ "hashPath": "system.memory.4.5.3.nupkg.sha512"
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "path": "system.numerics.vectors/4.5.0",
+ "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "path": "system.runtime.loader/4.3.0",
+ "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "path": "system.text.encodings.web/4.7.0",
+ "hashPath": "system.text.encodings.web.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "path": "system.text.json/4.7.1",
+ "hashPath": "system.text.json.4.7.1.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Channels/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gdOOXBhtt2UpTxYJm1DRmoqNfYg5ypvhzhVt0vxKhzxXFjS81r8yIOSFsJYLRa1Jc14GBAqCnjxJstO3zBN7gg==",
+ "path": "system.threading.channels/4.7.0",
+ "hashPath": "system.threading.channels.4.7.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "path": "volo.abp.auditing/2.7.0",
+ "hashPath": "volo.abp.auditing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PB7seGXB3/Y7iJ8ugToLywHSgE9wMXwyuGFT1mO5Jd1tzWJkSaeSithfbp9ORs18UH/pZeXYSkRGx60o68lQsQ==",
+ "path": "volo.abp.caching/2.7.0",
+ "hashPath": "volo.abp.caching.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "path": "volo.abp.core/2.7.0",
+ "hashPath": "volo.abp.core.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "path": "volo.abp.data/2.7.0",
+ "hashPath": "volo.abp.data.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "hashPath": "volo.abp.ddd.domain.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "path": "volo.abp.eventbus/2.7.0",
+ "hashPath": "volo.abp.eventbus.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "path": "volo.abp.guids/2.7.0",
+ "hashPath": "volo.abp.guids.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "path": "volo.abp.json/2.7.0",
+ "hashPath": "volo.abp.json.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "path": "volo.abp.localization/2.7.0",
+ "hashPath": "volo.abp.localization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "hashPath": "volo.abp.localization.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "hashPath": "volo.abp.multitenancy.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "path": "volo.abp.objectextending/2.7.0",
+ "hashPath": "volo.abp.objectextending.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "hashPath": "volo.abp.objectmapping.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "path": "volo.abp.security/2.7.0",
+ "hashPath": "volo.abp.security.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2hRD3WeOmBsbT32jIjmaIAdF/tMg4L5bzBFp9MUYtFbANOa4ZRV9WJ68oTvWITWx+CqlIDWTZgR5mm2jdevNHw==",
+ "path": "volo.abp.serialization/2.7.0",
+ "hashPath": "volo.abp.serialization.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "path": "volo.abp.settings/2.7.0",
+ "hashPath": "volo.abp.settings.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "path": "volo.abp.threading/2.7.0",
+ "hashPath": "volo.abp.threading.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "path": "volo.abp.timing/2.7.0",
+ "hashPath": "volo.abp.timing.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "path": "volo.abp.uow/2.7.0",
+ "hashPath": "volo.abp.uow.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "hashPath": "volo.abp.validation.abstractions.2.7.0.nupkg.sha512"
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "hashPath": "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll
new file mode 100644
index 000000000..8840eca84
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb
new file mode 100644
index 000000000..17bb4683d
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfo.cs
new file mode 100644
index 000000000..bc0b9ecc1
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// 此代码由工具生成。
+// 运行时版本:4.0.30319.42000
+//
+// 对此文件的更改可能会导致不正确的行为,并且如果
+// 重新生成代码,这些更改将会丢失。
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.Domain")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("LINGYUN.ApiGateway.Domain")]
+[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.Domain")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// 由 MSBuild WriteCodeFragment 类生成。
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache
new file mode 100644
index 000000000..e920ab25a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+171cb2778902c2c784b8606ded3ba7586daf69f1
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.assets.cache
new file mode 100644
index 000000000..10370e532
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.assets.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.CopyComplete
new file mode 100644
index 000000000..e69de29bb
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.FileListAbsolute.txt
new file mode 100644
index 000000000..e3c13104e
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csproj.FileListAbsolute.txt
@@ -0,0 +1,22 @@
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.deps.json
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.deps.json
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.AssemblyInfoInputs.cache
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.AssemblyInfo.cs
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.csproj.CopyComplete
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll
+D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.Domain\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache
new file mode 100644
index 000000000..2e734326f
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.csprojAssemblyReference.cache differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll
new file mode 100644
index 000000000..8840eca84
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb
new file mode 100644
index 000000000..17bb4683d
Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb differ
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.cache
new file mode 100644
index 000000000..d3ea5d7db
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "FlQTLXJecL5dTftaInGAVxUr8LdqF45ECS2lVGu7t/zV14YaNLIQkreQP8HACLu4uK+3/T034ocS52yiQNnDVw==",
+ "success": true
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.dgspec.json
new file mode 100644
index 000000000..4d2259d65
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.dgspec.json
@@ -0,0 +1,150 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj": {}
+ },
+ "projects": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain.Shared",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Localization": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "DotNetCore.CAP": {
+ "target": "Package",
+ "version": "[3.0.3, )"
+ },
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Caching": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ },
+ "Volo.Abp.Ddd.Domain": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.props
new file mode 100644
index 000000000..2528351cf
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\iVarKey\.nuget\packages\;D:\Microsoft\Xamarin\NuGet\;C:\Program Files (x86)\dotnet\sdk\NuGetFallbackFolder
+ PackageReference
+ 5.4.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.targets
new file mode 100644
index 000000000..c6394fd66
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/LINGYUN.ApiGateway.Domain.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.assets.json
new file mode 100644
index 000000000..1e7a46f53
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.assets.json
@@ -0,0 +1,4164 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETStandard,Version=v2.0": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "type": "package",
+ "dependencies": {
+ "Fody": "6.0.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/ConfigureAwait.dll": {}
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
+ "Microsoft.Extensions.Options": "3.1.0",
+ "Newtonsoft.Json": "12.0.3",
+ "System.Diagnostics.DiagnosticSource": "4.7.0",
+ "System.Threading.Channels": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/DotNetCore.CAP.dll": {}
+ }
+ },
+ "Fody/6.0.2": {
+ "type": "package",
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {}
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "3.1.2",
+ "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
+ "System.Text.Json": "4.7.1",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Json": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ },
+ "build": {
+ "build/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Primitives": "3.1.2",
+ "System.ComponentModel.Annotations": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Configuration.Binder": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.2",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.AsyncEx.Tasks": "5.0.0",
+ "Nito.Collections.Deque": "1.0.4",
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
+ }
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Nito.Disposables": "2.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
+ }
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Collections.Deque.dll": {}
+ }
+ },
+ "Nito.Disposables/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "1.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nito.Disposables.dll": {}
+ }
+ },
+ "System.Buffers/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Buffers.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Buffers.dll": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Collections.Immutable.dll": {}
+ }
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection.Emit": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Linq.Queryable.dll": {}
+ }
+ },
+ "System.Memory/4.5.3": {
+ "type": "package",
+ "dependencies": {
+ "System.Buffers": "4.4.0",
+ "System.Numerics.Vectors": "4.4.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Memory.dll": {}
+ }
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Numerics.Vectors.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Numerics.Vectors.dll": {}
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {}
+ }
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/System.Runtime.Loader.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.3"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ }
+ },
+ "System.Text.Json/4.7.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
+ "System.Buffers": "4.5.0",
+ "System.Memory": "4.5.3",
+ "System.Numerics.Vectors": "4.5.0",
+ "System.Runtime.CompilerServices.Unsafe": "4.7.0",
+ "System.Text.Encodings.Web": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Text.Json.dll": {}
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Channels/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Threading.Tasks.Extensions": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Channels.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "4.5.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {}
+ }
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll": {}
+ }
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.Caching.Memory": "3.1.2",
+ "Volo.Abp.Json": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Serialization": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Caching.dll": {}
+ }
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "JetBrains.Annotations": "2019.1.3",
+ "Microsoft.Extensions.Configuration.CommandLine": "3.1.2",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.2",
+ "Microsoft.Extensions.Configuration.UserSecrets": "3.1.2",
+ "Microsoft.Extensions.DependencyInjection": "3.1.2",
+ "Microsoft.Extensions.Hosting.Abstractions": "3.1.2",
+ "Microsoft.Extensions.Localization": "3.1.2",
+ "Microsoft.Extensions.Logging": "3.1.2",
+ "Microsoft.Extensions.Options": "3.1.2",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
+ "Nito.AsyncEx.Context": "5.0.0",
+ "Nito.AsyncEx.Coordination": "5.0.0",
+ "System.Collections.Immutable": "1.7.0",
+ "System.ComponentModel.Annotations": "4.7.0",
+ "System.Linq.Dynamic.Core": "1.0.19",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Runtime.Loader": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Core.dll": {}
+ }
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0",
+ "Volo.Abp.ObjectExtending": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Data.dll": {}
+ }
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Auditing": "2.7.0",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.EventBus": "2.7.0",
+ "Volo.Abp.Guids": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.ObjectMapping": "2.7.0",
+ "Volo.Abp.Threading": "2.7.0",
+ "Volo.Abp.Timing": "2.7.0",
+ "Volo.Abp.Uow": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {}
+ }
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll": {}
+ }
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Guids.dll": {}
+ }
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Timing": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Json.dll": {}
+ }
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Newtonsoft.Json": "12.0.3",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Settings": "2.7.0",
+ "Volo.Abp.VirtualFileSystem": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.dll": {}
+ }
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Data": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.Validation.Abstractions": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {}
+ }
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {}
+ }
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Security.dll": {}
+ }
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll": {}
+ }
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Localization.Abstractions": "2.7.0",
+ "Volo.Abp.MultiTenancy": "2.7.0",
+ "Volo.Abp.Security": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Settings.dll": {}
+ }
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Threading.dll": {}
+ }
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Timing.dll": {}
+ }
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Uow.dll": {}
+ }
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {}
+ }
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "type": "package",
+ "dependencies": {
+ "ConfigureAwait.Fody": "3.3.1",
+ "Microsoft.Extensions.FileProviders.Composite": "3.1.2",
+ "Microsoft.Extensions.FileProviders.Physical": "3.1.2",
+ "Volo.Abp.Core": "2.7.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {}
+ }
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "framework": ".NETStandard,Version=v2.0",
+ "dependencies": {
+ "Volo.Abp.Localization": "2.7.0"
+ },
+ "compile": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ },
+ "runtime": {
+ "bin/placeholder/LINGYUN.ApiGateway.Domain.Shared.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "ConfigureAwait.Fody/3.3.1": {
+ "sha512": "R9PQYf0AT4RBZcUXm22xWkCpSmNHdTzQ0dOyLIsxIK6dwXH4S9pY/rZdXU/63i8vZvSzZ99sB1kP7xer8MCe6w==",
+ "type": "package",
+ "path": "configureawait.fody/3.3.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/ConfigureAwait.Fody.props",
+ "configureawait.fody.3.3.1.nupkg.sha512",
+ "configureawait.fody.nuspec",
+ "lib/net452/ConfigureAwait.dll",
+ "lib/net452/ConfigureAwait.xml",
+ "lib/netstandard2.0/ConfigureAwait.dll",
+ "lib/netstandard2.0/ConfigureAwait.xml",
+ "weaver/ConfigureAwait.Fody.dll",
+ "weaver/ConfigureAwait.Fody.xcf"
+ ]
+ },
+ "DotNetCore.CAP/3.0.3": {
+ "sha512": "LVddNDKuuFyqPJIge+9Z6FU6zoTUulJbym7LUQdCwnpfqdleNVZPjAYR8h9HWcPmy3G2YQCTY2a6hXCMlA96jA==",
+ "type": "package",
+ "path": "dotnetcore.cap/3.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "dotnetcore.cap.3.0.3.nupkg.sha512",
+ "dotnetcore.cap.nuspec",
+ "lib/netstandard2.0/DotNetCore.CAP.dll",
+ "lib/netstandard2.0/DotNetCore.CAP.pdb",
+ "lib/netstandard2.0/DotNetCore.CAP.xml"
+ ]
+ },
+ "Fody/6.0.2": {
+ "sha512": "Oq9dxiHWkw/tPKu9LSmfp6uuCNDZLDkxwHB0sJuwyQRSmvFSB3Ab54WgCQWIsGDO9Z+va9expamqkKpFfdd1sQ==",
+ "type": "package",
+ "path": "fody/6.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Fody.targets",
+ "fody.6.0.2.nupkg.sha512",
+ "fody.nuspec",
+ "netclassictask/Fody.dll",
+ "netclassictask/FodyCommon.dll",
+ "netclassictask/FodyHelpers.dll",
+ "netclassictask/FodyIsolated.dll",
+ "netclassictask/Mono.Cecil.Pdb.dll",
+ "netclassictask/Mono.Cecil.Pdb.pdb",
+ "netclassictask/Mono.Cecil.Rocks.dll",
+ "netclassictask/Mono.Cecil.Rocks.pdb",
+ "netclassictask/Mono.Cecil.dll",
+ "netclassictask/Mono.Cecil.pdb",
+ "netstandardtask/Fody.dll",
+ "netstandardtask/FodyCommon.dll",
+ "netstandardtask/FodyHelpers.dll",
+ "netstandardtask/FodyIsolated.dll",
+ "netstandardtask/Mono.Cecil.Pdb.dll",
+ "netstandardtask/Mono.Cecil.Pdb.pdb",
+ "netstandardtask/Mono.Cecil.Rocks.dll",
+ "netstandardtask/Mono.Cecil.Rocks.pdb",
+ "netstandardtask/Mono.Cecil.dll",
+ "netstandardtask/Mono.Cecil.pdb"
+ ]
+ },
+ "JetBrains.Annotations/2019.1.3": {
+ "sha512": "E0x48BwZJKoNMNCekWGKsV4saQS89lf58ydT2szseV44CMYIbaHXjc7+305WLw6up3ibZN9yH6QdGSZo5tQhLg==",
+ "type": "package",
+ "path": "jetbrains.annotations/2019.1.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
+ "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
+ "sha512": "UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/3.1.2": {
+ "sha512": "4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
+ "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/3.1.2": {
+ "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
+ "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
+ "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Binder/3.1.2": {
+ "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.binder/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
+ "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.binder.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.CommandLine/3.1.2": {
+ "sha512": "voJoqXRGnfB4nw3LRL6QY/rnYdaZA2vFCMbRzPP2iE13XbZciJhGR0fvTsDKyFA9VfQJzPgIj+F/0S0Zqdxt4w==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.commandline/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
+ "microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.commandline.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": {
+ "sha512": "AdpldFyx0PlwbgUatdj89jC/n5n2dqXP865NwM77bu9LcnEmWX37QTSAKeZT5a13c6G5MQ1v4lAGz2a9wpPf/g==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.environmentvariables/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
+ "microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.environmentvariables.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
+ "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
+ "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.fileextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Json/3.1.2": {
+ "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.json/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
+ "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.json.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": {
+ "sha512": "1YOSOCsOUPVbcTDU+bifeT1z5dtMdwaZywWdKYocDBHwoILmxRsIKYS8CWVYPIggliHPEwjonNZfpdIktJkNiw==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.usersecrets/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
+ "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
+ "microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "microsoft.extensions.configuration.usersecrets.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/3.1.2": {
+ "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
+ "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
+ "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
+ "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Composite/3.1.2": {
+ "sha512": "eDA9hpBr0cnJrtOU6mtEguHQyutJ0deHmsEaltv8XdM09Hn1Usia+SoXzVrsGpH862/bwnaHRSBa52Ly72ZbUA==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.composite/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
+ "microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.composite.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
+ "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
+ "type": "package",
+ "path": "microsoft.extensions.fileproviders.physical/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
+ "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "microsoft.extensions.fileproviders.physical.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
+ "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
+ "type": "package",
+ "path": "microsoft.extensions.filesystemglobbing/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "microsoft.extensions.filesystemglobbing.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Hosting.Abstractions/3.1.2": {
+ "sha512": "oafEsTwy1ed4zycyjzgFet58IW3I/aC1uUJTWpFAs3mjkQzW52LqVlE/9AAW2IVk4q8EPw+GPsiFB17qYksNXQ==",
+ "type": "package",
+ "path": "microsoft.extensions.hosting.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
+ "microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.hosting.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization/3.1.2": {
+ "sha512": "s4y5gt/N1rcNnTXSPd5g+Z6EyjCKzsXmQcFfP7s6GKXDstOS+KGoCQEnQCdlGlz8Jin/v8Ep+40yA1ngvNFvZw==",
+ "type": "package",
+ "path": "microsoft.extensions.localization/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
+ "microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Localization.Abstractions/3.1.2": {
+ "sha512": "IWbB3w1ITn2KwQcVZYSoHzNGjEqObJGnwPZS2O6BE9SbkaHh7PLatyM78LjIIgyuEg/m1HP3t/GuRCUH15CliQ==",
+ "type": "package",
+ "path": "microsoft.extensions.localization.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
+ "microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.localization.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/3.1.2": {
+ "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
+ "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options/3.1.2": {
+ "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
+ "type": "package",
+ "path": "microsoft.extensions.options/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
+ "sha512": "NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
+ "type": "package",
+ "path": "microsoft.extensions.options.configurationextensions/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
+ "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "microsoft.extensions.options.configurationextensions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/3.1.2": {
+ "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/3.1.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
+ "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".nupkg.metadata",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/12.0.3": {
+ "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
+ "type": "package",
+ "path": "newtonsoft.json/12.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
+ "newtonsoft.json.12.0.3.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "Nito.AsyncEx.Context/5.0.0": {
+ "sha512": "Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==",
+ "type": "package",
+ "path": "nito.asyncex.context/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
+ "nito.asyncex.context.5.0.0.nupkg.sha512",
+ "nito.asyncex.context.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Coordination/5.0.0": {
+ "sha512": "kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==",
+ "type": "package",
+ "path": "nito.asyncex.coordination/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
+ "nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "nito.asyncex.coordination.nuspec"
+ ]
+ },
+ "Nito.AsyncEx.Tasks/5.0.0": {
+ "sha512": "ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==",
+ "type": "package",
+ "path": "nito.asyncex.tasks/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
+ "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
+ "nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "nito.asyncex.tasks.nuspec"
+ ]
+ },
+ "Nito.Collections.Deque/1.0.4": {
+ "sha512": "yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==",
+ "type": "package",
+ "path": "nito.collections.deque/1.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Collections.Deque.dll",
+ "lib/netstandard1.0/Nito.Collections.Deque.xml",
+ "lib/netstandard2.0/Nito.Collections.Deque.dll",
+ "lib/netstandard2.0/Nito.Collections.Deque.xml",
+ "nito.collections.deque.1.0.4.nupkg.sha512",
+ "nito.collections.deque.nuspec"
+ ]
+ },
+ "Nito.Disposables/2.0.0": {
+ "sha512": "ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==",
+ "type": "package",
+ "path": "nito.disposables/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard1.0/Nito.Disposables.dll",
+ "lib/netstandard1.0/Nito.Disposables.pdb",
+ "lib/netstandard1.0/Nito.Disposables.xml",
+ "lib/netstandard2.0/Nito.Disposables.dll",
+ "lib/netstandard2.0/Nito.Disposables.pdb",
+ "lib/netstandard2.0/Nito.Disposables.xml",
+ "nito.disposables.2.0.0.nupkg.sha512",
+ "nito.disposables.nuspec"
+ ]
+ },
+ "System.Buffers/4.5.0": {
+ "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
+ "type": "package",
+ "path": "system.buffers/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.1/System.Buffers.dll",
+ "lib/netstandard1.1/System.Buffers.xml",
+ "lib/netstandard2.0/System.Buffers.dll",
+ "lib/netstandard2.0/System.Buffers.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net45/System.Buffers.dll",
+ "ref/net45/System.Buffers.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.1/System.Buffers.dll",
+ "ref/netstandard1.1/System.Buffers.xml",
+ "ref/netstandard2.0/System.Buffers.dll",
+ "ref/netstandard2.0/System.Buffers.xml",
+ "ref/uap10.0.16299/_._",
+ "system.buffers.4.5.0.nupkg.sha512",
+ "system.buffers.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Immutable/1.7.0": {
+ "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
+ "type": "package",
+ "path": "system.collections.immutable/1.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Collections.Immutable.dll",
+ "lib/netstandard1.0/System.Collections.Immutable.xml",
+ "lib/netstandard1.3/System.Collections.Immutable.dll",
+ "lib/netstandard1.3/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
+ "system.collections.immutable.1.7.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ComponentModel.Annotations/4.7.0": {
+ "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/4.7.0": {
+ "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net45/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net46/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net46/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Linq.Dynamic.Core/1.0.19": {
+ "sha512": "GFYslLz/1ZZ0+gbqYED2zlD0H95BIK4hOpIcEEEfTDDXAcKE5vpXQQseOGduNVjcJZOF3Wx+4npa2EjdFpuDgA==",
+ "type": "package",
+ "path": "system.linq.dynamic.core/1.0.19",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net35/System.Linq.Dynamic.Core.dll",
+ "lib/net35/System.Linq.Dynamic.Core.pdb",
+ "lib/net35/System.Linq.Dynamic.Core.xml",
+ "lib/net40/System.Linq.Dynamic.Core.dll",
+ "lib/net40/System.Linq.Dynamic.Core.pdb",
+ "lib/net40/System.Linq.Dynamic.Core.xml",
+ "lib/net45/System.Linq.Dynamic.Core.dll",
+ "lib/net45/System.Linq.Dynamic.Core.pdb",
+ "lib/net45/System.Linq.Dynamic.Core.xml",
+ "lib/net46/System.Linq.Dynamic.Core.dll",
+ "lib/net46/System.Linq.Dynamic.Core.pdb",
+ "lib/net46/System.Linq.Dynamic.Core.xml",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
+ "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
+ "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
+ "lib/uap10.0/System.Linq.Dynamic.Core.dll",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pdb",
+ "lib/uap10.0/System.Linq.Dynamic.Core.pri",
+ "lib/uap10.0/System.Linq.Dynamic.Core.xml",
+ "system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "system.linq.dynamic.core.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "type": "package",
+ "path": "system.linq.expressions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.Expressions.dll",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/netstandard1.6/System.Linq.Expressions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/System.Linq.Expressions.dll",
+ "ref/netstandard1.0/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/System.Linq.Expressions.dll",
+ "ref/netstandard1.3/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/System.Linq.Expressions.dll",
+ "ref/netstandard1.6/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/de/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/es/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/it/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
+ "system.linq.expressions.4.3.0.nupkg.sha512",
+ "system.linq.expressions.nuspec"
+ ]
+ },
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "system.linq.queryable/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.queryable.4.3.0.nupkg.sha512",
+ "system.linq.queryable.nuspec"
+ ]
+ },
+ "System.Memory/4.5.3": {
+ "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
+ "type": "package",
+ "path": "system.memory/4.5.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.3.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Numerics.Vectors/4.5.0": {
+ "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
+ "type": "package",
+ "path": "system.numerics.vectors/4.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Numerics.Vectors.dll",
+ "lib/net46/System.Numerics.Vectors.xml",
+ "lib/netcoreapp2.0/_._",
+ "lib/netstandard1.0/System.Numerics.Vectors.dll",
+ "lib/netstandard1.0/System.Numerics.Vectors.xml",
+ "lib/netstandard2.0/System.Numerics.Vectors.dll",
+ "lib/netstandard2.0/System.Numerics.Vectors.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
+ "lib/uap10.0.16299/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/System.Numerics.Vectors.dll",
+ "ref/net45/System.Numerics.Vectors.xml",
+ "ref/net46/System.Numerics.Vectors.dll",
+ "ref/net46/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.0/_._",
+ "ref/netstandard1.0/System.Numerics.Vectors.dll",
+ "ref/netstandard1.0/System.Numerics.Vectors.xml",
+ "ref/netstandard2.0/System.Numerics.Vectors.dll",
+ "ref/netstandard2.0/System.Numerics.Vectors.xml",
+ "ref/uap10.0.16299/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.numerics.vectors.4.5.0.nupkg.sha512",
+ "system.numerics.vectors.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "type": "package",
+ "path": "system.objectmodel/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ObjectModel.dll",
+ "lib/netstandard1.3/System.ObjectModel.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.ObjectModel.dll",
+ "ref/netcore50/System.ObjectModel.xml",
+ "ref/netcore50/de/System.ObjectModel.xml",
+ "ref/netcore50/es/System.ObjectModel.xml",
+ "ref/netcore50/fr/System.ObjectModel.xml",
+ "ref/netcore50/it/System.ObjectModel.xml",
+ "ref/netcore50/ja/System.ObjectModel.xml",
+ "ref/netcore50/ko/System.ObjectModel.xml",
+ "ref/netcore50/ru/System.ObjectModel.xml",
+ "ref/netcore50/zh-hans/System.ObjectModel.xml",
+ "ref/netcore50/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.0/System.ObjectModel.dll",
+ "ref/netstandard1.0/System.ObjectModel.xml",
+ "ref/netstandard1.0/de/System.ObjectModel.xml",
+ "ref/netstandard1.0/es/System.ObjectModel.xml",
+ "ref/netstandard1.0/fr/System.ObjectModel.xml",
+ "ref/netstandard1.0/it/System.ObjectModel.xml",
+ "ref/netstandard1.0/ja/System.ObjectModel.xml",
+ "ref/netstandard1.0/ko/System.ObjectModel.xml",
+ "ref/netstandard1.0/ru/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
+ "ref/netstandard1.3/System.ObjectModel.dll",
+ "ref/netstandard1.3/System.ObjectModel.xml",
+ "ref/netstandard1.3/de/System.ObjectModel.xml",
+ "ref/netstandard1.3/es/System.ObjectModel.xml",
+ "ref/netstandard1.3/fr/System.ObjectModel.xml",
+ "ref/netstandard1.3/it/System.ObjectModel.xml",
+ "ref/netstandard1.3/ja/System.ObjectModel.xml",
+ "ref/netstandard1.3/ko/System.ObjectModel.xml",
+ "ref/netstandard1.3/ru/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
+ "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.objectmodel.4.3.0.nupkg.sha512",
+ "system.objectmodel.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "type": "package",
+ "path": "system.reflection.emit/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.1/System.Reflection.Emit.dll",
+ "ref/netstandard1.1/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/de/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/es/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/it/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
+ "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
+ "ref/xamarinmac20/_._",
+ "system.reflection.emit.4.3.0.nupkg.sha512",
+ "system.reflection.emit.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "type": "package",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "system.reflection.emit.ilgeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "type": "package",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
+ "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
+ "lib/portable-net45+wp8/_._",
+ "lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
+ "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
+ "ref/portable-net45+wp8/_._",
+ "ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/_._",
+ "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "system.reflection.emit.lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "type": "package",
+ "path": "system.reflection.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/System.Reflection.Extensions.dll",
+ "ref/netstandard1.0/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.extensions.4.3.0.nupkg.sha512",
+ "system.reflection.extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "type": "package",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Reflection.TypeExtensions.dll",
+ "lib/net462/System.Reflection.TypeExtensions.dll",
+ "lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Reflection.TypeExtensions.dll",
+ "ref/net462/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
+ "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
+ "system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "system.reflection.typeextensions.nuspec"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/4.7.0": {
+ "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
+ "type": "package",
+ "path": "system.runtime.loader/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/_._",
+ "lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/netstandard1.5/System.Runtime.Loader.dll",
+ "ref/netstandard1.5/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/de/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/es/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/it/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
+ "system.runtime.loader.4.3.0.nupkg.sha512",
+ "system.runtime.loader.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Text.Encodings.Web/4.7.0": {
+ "sha512": "IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
+ "type": "package",
+ "path": "system.text.encodings.web/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard1.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.1/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.1/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.4.7.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Text.Json/4.7.1": {
+ "sha512": "XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
+ "type": "package",
+ "path": "system.text.json/4.7.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Text.Json.dll",
+ "lib/net461/System.Text.Json.xml",
+ "lib/netcoreapp3.0/System.Text.Json.dll",
+ "lib/netcoreapp3.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.4.7.1.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Channels/4.7.0": {
+ "sha512": "gdOOXBhtt2UpTxYJm1DRmoqNfYg5ypvhzhVt0vxKhzxXFjS81r8yIOSFsJYLRa1Jc14GBAqCnjxJstO3zBN7gg==",
+ "type": "package",
+ "path": "system.threading.channels/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netcoreapp3.0/System.Threading.Channels.dll",
+ "lib/netcoreapp3.0/System.Threading.Channels.xml",
+ "lib/netstandard1.3/System.Threading.Channels.dll",
+ "lib/netstandard1.3/System.Threading.Channels.xml",
+ "lib/netstandard2.0/System.Threading.Channels.dll",
+ "lib/netstandard2.0/System.Threading.Channels.xml",
+ "system.threading.channels.4.7.0.nupkg.sha512",
+ "system.threading.channels.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.2": {
+ "sha512": "BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Volo.Abp.Auditing/2.7.0": {
+ "sha512": "cU+QO8OyIrDhRGtqsCOXy8anpfhvcZXrdd1+gsgmpZZ2EyD8C1OMe2b5fKrWyzzNst4oJKFkeYntnfZ0Tw7mew==",
+ "type": "package",
+ "path": "volo.abp.auditing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Auditing.dll",
+ "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
+ "volo.abp.auditing.2.7.0.nupkg.sha512",
+ "volo.abp.auditing.nuspec"
+ ]
+ },
+ "Volo.Abp.Caching/2.7.0": {
+ "sha512": "PB7seGXB3/Y7iJ8ugToLywHSgE9wMXwyuGFT1mO5Jd1tzWJkSaeSithfbp9ORs18UH/pZeXYSkRGx60o68lQsQ==",
+ "type": "package",
+ "path": "volo.abp.caching/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Caching.dll",
+ "lib/netstandard2.0/Volo.Abp.Caching.pdb",
+ "volo.abp.caching.2.7.0.nupkg.sha512",
+ "volo.abp.caching.nuspec"
+ ]
+ },
+ "Volo.Abp.Core/2.7.0": {
+ "sha512": "OED8ZvnA7Kd+h1hv2D+G8wDnicuNRBbNxFQHLJ0YUrv5YOfO5BYLzj0bzwTeGJU/gssnU1uBfgEPAfzk7VpT0A==",
+ "type": "package",
+ "path": "volo.abp.core/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Core.dll",
+ "lib/netstandard2.0/Volo.Abp.Core.pdb",
+ "volo.abp.core.2.7.0.nupkg.sha512",
+ "volo.abp.core.nuspec"
+ ]
+ },
+ "Volo.Abp.Data/2.7.0": {
+ "sha512": "J+nzaaw1Xmu78DuRHTzwj/15fctmR9v0XXv6SfpBuEcVJHrdMLA3o6l1Ti0vHWl7q4FN5M4oPMPjncDRyf13pg==",
+ "type": "package",
+ "path": "volo.abp.data/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Data.dll",
+ "lib/netstandard2.0/Volo.Abp.Data.pdb",
+ "volo.abp.data.2.7.0.nupkg.sha512",
+ "volo.abp.data.nuspec"
+ ]
+ },
+ "Volo.Abp.Ddd.Domain/2.7.0": {
+ "sha512": "UGBSbiL/ajmzCCthD6xHThQn7OGCdt0FHYTfHZ8ZJhZaznZa5h+5d9yyUm3W+1LVTp4zJoi1Xz8ZKKzUMK7yLw==",
+ "type": "package",
+ "path": "volo.abp.ddd.domain/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
+ "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
+ "volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "volo.abp.ddd.domain.nuspec"
+ ]
+ },
+ "Volo.Abp.EventBus/2.7.0": {
+ "sha512": "dBV29JQ7uLiVAkx800ni4i8TISB64ghzNMYLnaDHUdOQAeXO7fQYQxXN9m2F517/6lWINOTiIyIR4J3MwJkPZw==",
+ "type": "package",
+ "path": "volo.abp.eventbus/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.EventBus.dll",
+ "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
+ "volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "volo.abp.eventbus.nuspec"
+ ]
+ },
+ "Volo.Abp.Guids/2.7.0": {
+ "sha512": "8oXbqIJAU0I1VO65vvGVeU5+wSPexQK/106lcuArQ70A1n1jxaRzARFvGIXz7mgY6Jq4mEiQfG9n7XVWjQBVrQ==",
+ "type": "package",
+ "path": "volo.abp.guids/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Guids.dll",
+ "lib/netstandard2.0/Volo.Abp.Guids.pdb",
+ "volo.abp.guids.2.7.0.nupkg.sha512",
+ "volo.abp.guids.nuspec"
+ ]
+ },
+ "Volo.Abp.Json/2.7.0": {
+ "sha512": "QFjoir2WZR4YieOWr78FFHG30+qq0ICnhsGl78WtyPnmzwXkiX5gpZ2iKw0hpEwUOXaUHcrlGfqDC8t+oUdFOA==",
+ "type": "package",
+ "path": "volo.abp.json/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Json.dll",
+ "lib/netstandard2.0/Volo.Abp.Json.pdb",
+ "volo.abp.json.2.7.0.nupkg.sha512",
+ "volo.abp.json.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization/2.7.0": {
+ "sha512": "DbGpVl4MszfrKkZyJIWz45efm14LWoDjczc5d72qQoBmh63xiBkdZLtSiFylB4daNe91aa9hA6xtPw8ncdJU1w==",
+ "type": "package",
+ "path": "volo.abp.localization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.pdb",
+ "volo.abp.localization.2.7.0.nupkg.sha512",
+ "volo.abp.localization.nuspec"
+ ]
+ },
+ "Volo.Abp.Localization.Abstractions/2.7.0": {
+ "sha512": "iPbneVVaocTdiQdG83CrtkaOTsPf0sS/+ECs8nUosWWQuM/ctmBs8dGb26c2Av23blMrbtfck5NxFN82SLdjWQ==",
+ "type": "package",
+ "path": "volo.abp.localization.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
+ "volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.localization.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.MultiTenancy/2.7.0": {
+ "sha512": "Ggn1h1RPtkxKkkn4Z8SOIA+B2UVTpYH9mYzQsYvkUTJvGIBWx4f7ioOtuE19ZK2vIBDnGglCVACsm8FOAsMBTA==",
+ "type": "package",
+ "path": "volo.abp.multitenancy/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
+ "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
+ "volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "volo.abp.multitenancy.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectExtending/2.7.0": {
+ "sha512": "X4fE2cD5UTH4jGkHf2dOuWXwvYMe/5jALGn8p8/uVJEZnr2+EVnalZ7RBKtCTzKswOL6YdAjCJUH5kGx9KJKFA==",
+ "type": "package",
+ "path": "volo.abp.objectextending/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
+ "volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "volo.abp.objectextending.nuspec"
+ ]
+ },
+ "Volo.Abp.ObjectMapping/2.7.0": {
+ "sha512": "pr8DkGHuk4B2tCSvzzganyemqghRxtGeiaMj6PNdpnkvMR2csfREI7CSYf/NO7XZ1eGUOU9WHuowRpyOCm5Wnw==",
+ "type": "package",
+ "path": "volo.abp.objectmapping/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
+ "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
+ "volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "volo.abp.objectmapping.nuspec"
+ ]
+ },
+ "Volo.Abp.Security/2.7.0": {
+ "sha512": "Fk+PNapY1Cve/Kpo1NWF7XJyh3ArE539Y0kaDEeyNee27zT6Y4T+wrsD0jOStxFtgyBhn7Hn68dNmoMrVSvnJg==",
+ "type": "package",
+ "path": "volo.abp.security/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Security.dll",
+ "lib/netstandard2.0/Volo.Abp.Security.pdb",
+ "volo.abp.security.2.7.0.nupkg.sha512",
+ "volo.abp.security.nuspec"
+ ]
+ },
+ "Volo.Abp.Serialization/2.7.0": {
+ "sha512": "2hRD3WeOmBsbT32jIjmaIAdF/tMg4L5bzBFp9MUYtFbANOa4ZRV9WJ68oTvWITWx+CqlIDWTZgR5mm2jdevNHw==",
+ "type": "package",
+ "path": "volo.abp.serialization/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Serialization.dll",
+ "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
+ "volo.abp.serialization.2.7.0.nupkg.sha512",
+ "volo.abp.serialization.nuspec"
+ ]
+ },
+ "Volo.Abp.Settings/2.7.0": {
+ "sha512": "vYaFFSCzBkS02SMLqU7n2cq4RVrqITTR9H6oMY31c1XKYudppAuKM4Hr9iBHTHmyLhy3CjzexkP316KsdJAifg==",
+ "type": "package",
+ "path": "volo.abp.settings/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Settings.dll",
+ "lib/netstandard2.0/Volo.Abp.Settings.pdb",
+ "volo.abp.settings.2.7.0.nupkg.sha512",
+ "volo.abp.settings.nuspec"
+ ]
+ },
+ "Volo.Abp.Threading/2.7.0": {
+ "sha512": "uVGX0ihBdrheGdHohjl7XGoldvGvUACpxHTGZy3OwVHZFKoSQ20QdoeNpXkJjQyF7fOfUN+nFigtAAia86H2jA==",
+ "type": "package",
+ "path": "volo.abp.threading/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Threading.dll",
+ "lib/netstandard2.0/Volo.Abp.Threading.pdb",
+ "volo.abp.threading.2.7.0.nupkg.sha512",
+ "volo.abp.threading.nuspec"
+ ]
+ },
+ "Volo.Abp.Timing/2.7.0": {
+ "sha512": "2D2opcqUh8rSvvWzDO8+e7TKG0jOem2J557idnJ3GOZ65+9o4gpnCRNGil+9Fa1Sbm5Rt2yEP76sQE2LUw9dTA==",
+ "type": "package",
+ "path": "volo.abp.timing/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Timing.dll",
+ "lib/netstandard2.0/Volo.Abp.Timing.pdb",
+ "volo.abp.timing.2.7.0.nupkg.sha512",
+ "volo.abp.timing.nuspec"
+ ]
+ },
+ "Volo.Abp.Uow/2.7.0": {
+ "sha512": "Rj//iy93VEDj4WmlRhrdxucz67D07HKwLsgNn2bDrPW3u7L1WEMHmEabp3wwU/2KGUAvIaTRZ/9806Q+EUcnsQ==",
+ "type": "package",
+ "path": "volo.abp.uow/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Uow.dll",
+ "lib/netstandard2.0/Volo.Abp.Uow.pdb",
+ "volo.abp.uow.2.7.0.nupkg.sha512",
+ "volo.abp.uow.nuspec"
+ ]
+ },
+ "Volo.Abp.Validation.Abstractions/2.7.0": {
+ "sha512": "oHvnN7z1fDQCL+NZ9Qzc1XQImMSqpfKXawhwMky6aBBgFxUkd5660RcvNkoe1tlrN1+NQ9QN/DWEUnvY6/4qrg==",
+ "type": "package",
+ "path": "volo.abp.validation.abstractions/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
+ "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
+ "volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "volo.abp.validation.abstractions.nuspec"
+ ]
+ },
+ "Volo.Abp.VirtualFileSystem/2.7.0": {
+ "sha512": "lzrEJjonVo/v+M1+pebuf4AvT6dSq6G3Vq6Dc0g5qNRSWB4FJyekOyI7z9RC9lS40tdINwT5hhlttC3MJjzHaA==",
+ "type": "package",
+ "path": "volo.abp.virtualfilesystem/2.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
+ "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
+ "volo.abp.virtualfilesystem.2.7.0.nupkg.sha512",
+ "volo.abp.virtualfilesystem.nuspec"
+ ]
+ },
+ "LINGYUN.ApiGateway.Domain.Shared/1.0.0": {
+ "type": "project",
+ "path": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj",
+ "msbuildProject": "../LINGYUN.ApiGateway.Domain.Shared/LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETStandard,Version=v2.0": [
+ "DotNetCore.CAP >= 3.0.3",
+ "LINGYUN.ApiGateway.Domain.Shared >= 1.0.0",
+ "NETStandard.Library >= 2.0.3",
+ "Volo.Abp.Caching >= 2.7.0",
+ "Volo.Abp.Ddd.Domain >= 2.7.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\iVarKey\\.nuget\\packages\\": {},
+ "D:\\Microsoft\\Xamarin\\NuGet\\": {},
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "projectName": "LINGYUN.ApiGateway.Domain",
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\",
+ "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "D:\\Microsoft\\Xamarin\\NuGet\\",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\iVarKey\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netstandard2.0"
+ ],
+ "sources": {
+ "D:\\NugetLocal": {},
+ "http://10.21.15.28:8081/repository/nuget-hosted/": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "projectReferences": {
+ "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj": {
+ "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain.Shared\\LINGYUN.ApiGateway.Domain.Shared.csproj"
+ }
+ }
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netstandard2.0": {
+ "dependencies": {
+ "DotNetCore.CAP": {
+ "target": "Package",
+ "version": "[3.0.3, )"
+ },
+ "NETStandard.Library": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.0.3, )",
+ "autoReferenced": true
+ },
+ "Volo.Abp.Caching": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ },
+ "Volo.Abp.Ddd.Domain": {
+ "target": "Package",
+ "version": "[2.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.nuget.cache
new file mode 100644
index 000000000..2881f6f23
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.Domain/obj/project.nuget.cache
@@ -0,0 +1,102 @@
+{
+ "version": 2,
+ "dgSpecHash": "FlQTLXJecL5dTftaInGAVxUr8LdqF45ECS2lVGu7t/zV14YaNLIQkreQP8HACLu4uK+3/T034ocS52yiQNnDVw==",
+ "success": true,
+ "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.Domain\\LINGYUN.ApiGateway.Domain.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\iVarKey\\.nuget\\packages\\configureawait.fody\\3.3.1\\configureawait.fody.3.3.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\dotnetcore.cap\\3.0.3\\dotnetcore.cap.3.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\fody\\6.0.2\\fody.6.0.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\jetbrains.annotations\\2019.1.3\\jetbrains.annotations.2019.1.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.2\\microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.2\\microsoft.extensions.caching.memory.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.2\\microsoft.extensions.configuration.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.2\\microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.2\\microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\3.1.2\\microsoft.extensions.configuration.commandline.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\3.1.2\\microsoft.extensions.configuration.environmentvariables.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\3.1.2\\microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.json\\3.1.2\\microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\3.1.2\\microsoft.extensions.configuration.usersecrets.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.2\\microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.2\\microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.2\\microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\3.1.2\\microsoft.extensions.fileproviders.composite.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\3.1.2\\microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\3.1.2\\microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.2\\microsoft.extensions.hosting.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization\\3.1.2\\microsoft.extensions.localization.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\3.1.2\\microsoft.extensions.localization.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging\\3.1.2\\microsoft.extensions.logging.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.2\\microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options\\3.1.2\\microsoft.extensions.options.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\3.1.2\\microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.2\\microsoft.extensions.primitives.3.1.2.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.collections.immutable\\1.7.0\\system.collections.immutable.1.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.dynamic.core\\1.0.19\\system.linq.dynamic.core.1.0.19.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.0\\system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.encodings.web\\4.7.0\\system.text.encodings.web.4.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.text.json\\4.7.1\\system.text.json.4.7.1.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.channels\\4.7.0\\system.threading.channels.4.7.0.nupkg.sha512",
+ "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.2\\system.threading.tasks.extensions.4.5.2.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.auditing\\2.7.0\\volo.abp.auditing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.caching\\2.7.0\\volo.abp.caching.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.core\\2.7.0\\volo.abp.core.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.data\\2.7.0\\volo.abp.data.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.ddd.domain\\2.7.0\\volo.abp.ddd.domain.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.eventbus\\2.7.0\\volo.abp.eventbus.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.guids\\2.7.0\\volo.abp.guids.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.json\\2.7.0\\volo.abp.json.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization\\2.7.0\\volo.abp.localization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.localization.abstractions\\2.7.0\\volo.abp.localization.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.multitenancy\\2.7.0\\volo.abp.multitenancy.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectextending\\2.7.0\\volo.abp.objectextending.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.objectmapping\\2.7.0\\volo.abp.objectmapping.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.security\\2.7.0\\volo.abp.security.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.serialization\\2.7.0\\volo.abp.serialization.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settings\\2.7.0\\volo.abp.settings.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.threading\\2.7.0\\volo.abp.threading.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.timing\\2.7.0\\volo.abp.timing.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.uow\\2.7.0\\volo.abp.uow.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.validation.abstractions\\2.7.0\\volo.abp.validation.abstractions.2.7.0.nupkg.sha512",
+ "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.virtualfilesystem\\2.7.0\\volo.abp.virtualfilesystem.2.7.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN.ApiGateway.EntityFrameworkCore.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN.ApiGateway.EntityFrameworkCore.csproj
new file mode 100644
index 000000000..43738db7d
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN.ApiGateway.EntityFrameworkCore.csproj
@@ -0,0 +1,16 @@
+
+
+
+ netstandard2.0
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContext.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContext.cs
new file mode 100644
index 000000000..cb3f0bfd7
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContext.cs
@@ -0,0 +1,52 @@
+using LINGYUN.ApiGateway.Ocelot;
+using LINGYUN.ApiGateway.Settings;
+using Microsoft.EntityFrameworkCore;
+using Volo.Abp.Data;
+using Volo.Abp.EntityFrameworkCore;
+
+namespace LINGYUN.ApiGateway.EntityFrameworkCore
+{
+ [ConnectionStringName("Default")]
+ public class ApiGatewayDbContext : AbpDbContext
+ {
+
+ public virtual DbSet ReRoutes { get; set; }
+
+ public virtual DbSet GlobalConfigurations { get; set; }
+
+ public virtual DbSet DynamicReRoutes { get; set; }
+
+ public virtual DbSet AggregateReRoutes { get; set; }
+
+ public virtual DbSet AggregateReRouteConfigs { get; set; }
+
+ public virtual DbSet AuthenticationOptions { get; set; }
+ public virtual DbSet CacheOptions { get; set; }
+ public virtual DbSet Headers { get; set; }
+ public virtual DbSet HostAndPorts { get; set; }
+ public virtual DbSet HttpHandlerOptions { get; set; }
+ public virtual DbSet LoadBalancerOptions { get; set; }
+ public virtual DbSet QoSOptions { get; set; }
+ public virtual DbSet RateLimitOptions { get; set; }
+ public virtual DbSet RateLimitRules { get; set; }
+ public virtual DbSet SecurityOptions { get; set; }
+ public virtual DbSet ServiceDiscoveryProviders { get; set; }
+
+ public ApiGatewayDbContext(DbContextOptions options)
+ : base(options)
+ {
+
+ }
+
+ protected override void OnModelCreating(ModelBuilder modelBuilder)
+ {
+ base.OnModelCreating(modelBuilder);
+
+ modelBuilder.ConfigureApiGateway(options =>
+ {
+ options.TablePrefix = ApiGatewaySettingNames.DefaultDbTablePrefix;
+ options.Schema = ApiGatewaySettingNames.DefaultDbSchema;
+ });
+ }
+ }
+}
diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContextModelCreatingExtensions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContextModelCreatingExtensions.cs
new file mode 100644
index 000000000..9b790c06a
--- /dev/null
+++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayDbContextModelCreatingExtensions.cs
@@ -0,0 +1,314 @@
+using LINGYUN.ApiGateway.Ocelot;
+using Microsoft.EntityFrameworkCore;
+using System;
+using Volo.Abp;
+using Volo.Abp.EntityFrameworkCore.Modeling;
+
+namespace LINGYUN.ApiGateway.EntityFrameworkCore
+{
+ public static class ApiGatewayDbContextModelCreatingExtensions
+ {
+ public static void ConfigureApiGateway(
+ this ModelBuilder builder,
+ Action optionsAction = null)
+ {
+ Check.NotNull(builder, nameof(builder));
+
+ var options = new ApiGatewayModelBuilderConfigurationOptions();
+
+ optionsAction?.Invoke(options);
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "CacheOptions", options.Schema);
+
+ e.Property(p => p.Region).HasMaxLength(256);
+
+ e.HasOne(p => p.ReRoute)
+ .WithOne(q => q.CacheOptions)
+ .HasForeignKey(fk => fk.ReRouteId)
+ .HasPrincipalKey(pk => pk.ReRouteId)
+ .IsRequired()
+ .OnDelete(DeleteBehavior.Cascade);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "AuthOptions", options.Schema);
+
+ e.Property(p => p.AllowedScopes).HasMaxLength(200);
+ e.Property(p => p.AuthenticationProviderKey).HasMaxLength(100);
+
+ e.HasOne(p => p.ReRoute)
+ .WithOne(q => q.AuthenticationOptions)
+ .HasForeignKey(fk => fk.ReRouteId)
+ .HasPrincipalKey(pk => pk.ReRouteId)
+ .IsRequired()
+ .OnDelete(DeleteBehavior.Cascade);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "Headers", options.Schema);
+
+ e.Property(p => p.ReRouteId).IsRequired();
+ e.Property(p => p.Key).HasMaxLength(50);
+ e.Property(p => p.Value).HasMaxLength(256);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "HostAndPort", options.Schema);
+
+ e.Property(p => p.ReRouteId).IsRequired();
+ e.Property(p => p.Host).IsRequired().HasMaxLength(50);
+ e.Property(p => p.Port).HasDefaultValue(0);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "HttpOptions", options.Schema);
+
+ e.HasOne(p => p.ReRoute)
+ .WithOne(q => q.HttpHandlerOptions)
+ .HasForeignKey(fk => fk.ReRouteId)
+ .HasPrincipalKey(pk => pk.ReRouteId)
+ .IsRequired(false)
+ .OnDelete(DeleteBehavior.Cascade);
+
+ e.HasOne(p => p.GlobalConfiguration)
+ .WithOne(q => q.HttpHandlerOptions)
+ .HasForeignKey(fk => fk.ItemId)
+ .HasPrincipalKey(pk => pk.ItemId)
+ .IsRequired(false)
+ .OnDelete(DeleteBehavior.Cascade);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "BalancerOptions", options.Schema);
+
+ e.Property(p => p.Type).HasMaxLength(100);
+ e.Property(p => p.Key).HasMaxLength(100);
+
+ e.HasOne(p => p.ReRoute)
+ .WithOne(q => q.LoadBalancerOptions)
+ .HasForeignKey(fk => fk.ReRouteId)
+ .HasPrincipalKey(pk => pk.ReRouteId)
+ .IsRequired(false)
+ .OnDelete(DeleteBehavior.Cascade);
+
+ e.HasOne(p => p.GlobalConfiguration)
+ .WithOne(q => q.LoadBalancerOptions)
+ .HasForeignKey(fk => fk.ItemId)
+ .HasPrincipalKey(pk => pk.ItemId)
+ .IsRequired(false)
+ .OnDelete(DeleteBehavior.Cascade);
+ });
+
+ builder.Entity(e =>
+ {
+ e.ToTable(options.TablePrefix + "QoSOptions", options.Schema);
+
+ e.HasOne(p => p.ReRoute)
+ .WithOne(q => q.QoSOptions)
+ .HasForeignKey(fk => fk.ReRouteId)
+ .HasPrincipalKey(pk => pk.ReRouteId)
+ .IsRequired(false)
+ .OnDelete(DeleteBehavior.Cascade);
+
+ e.HasOne(p => p.GlobalConfiguration)
+ .WithOne(q => q.QoSOptions)
+ .HasForeignKey(fk => fk.ItemId)
+ .HasPrincipalKey