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 @@ +

+ +

+ +

+ + vue + + + element-ui + + + CircleCI + + + PRs Welcome + + + License: MIT + + + Template from jarvis + +

+ +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 + +![dashboard](./demo/dashboard.png) + +## 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+. + +| [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](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) + +## 截图 + +![登录页](./images/userLogin.png) + +![角色页](./images/userRoles.png) + +![权限页](./images/userPermissions.png) + +## 相关项目 + +后端项目 + +[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+. + +| [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](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(pk => pk.ItemId) + .IsRequired(false) + .OnDelete(DeleteBehavior.Cascade); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "RateLimitOptions", options.Schema); + + e.Property(p => p.ClientIdHeader).HasMaxLength(50); + e.Property(p => p.QuotaExceededMessage).HasMaxLength(256); + e.Property(p => p.RateLimitCounterPrefix).HasMaxLength(50); + + e.Property(p => p.HttpStatusCode).HasDefaultValue(429); + e.Property(p => p.ClientIdHeader).HasDefaultValue("ClientId"); + e.Property(p => p.RateLimitCounterPrefix).HasDefaultValue("ocelot"); + + e.HasOne(p => p.GlobalConfiguration) + .WithOne(q => q.RateLimitOptions) + .HasForeignKey(fk => fk.ItemId) + .HasPrincipalKey(pk => pk.ItemId) + .IsRequired() + .OnDelete(DeleteBehavior.Cascade); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "RateLimitRule", options.Schema); + + e.Property(p => p.Period).HasMaxLength(50); + e.Property(p => p.ClientWhitelist).HasMaxLength(1000); + + e.HasOne(p => p.ReRoute) + .WithOne(q => q.RateLimitOptions) + .HasForeignKey(fk => fk.ReRouteId) + .HasPrincipalKey(pk => pk.ReRouteId) + .IsRequired(false) + .OnDelete(DeleteBehavior.Cascade); + + e.HasOne(p => p.DynamicReRoute) + .WithOne(q => q.RateLimitRule) + .HasForeignKey(fk => fk.DynamicReRouteId) + .HasPrincipalKey(pk => pk.DynamicReRouteId) + .IsRequired(false) + .OnDelete(DeleteBehavior.Cascade); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "SecurityOptions", options.Schema); + + e.Property(p => p.IPAllowedList).HasMaxLength(1000); + e.Property(p => p.IPBlockedList).HasMaxLength(1000); + + e.HasOne(p => p.ReRoute) + .WithOne(q => q.SecurityOptions) + .HasForeignKey(fk => fk.ReRouteId) + .HasPrincipalKey(pk => pk.ReRouteId) + .IsRequired() + .OnDelete(DeleteBehavior.Cascade); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "Discovery", options.Schema); + + e.Property(p => p.Host).HasMaxLength(50); + e.Property(p => p.Type).HasMaxLength(128); + e.Property(p => p.Token).HasMaxLength(256); + e.Property(p => p.Namespace).HasMaxLength(128); + e.Property(p => p.Scheme).HasMaxLength(50); + e.Property(p => p.ConfigurationKey).HasMaxLength(256); + + e.HasOne(p => p.GlobalConfiguration) + .WithOne(q => q.ServiceDiscoveryProvider) + .HasForeignKey(fk => fk.ItemId) + .HasPrincipalKey(pk => pk.ItemId) + .IsRequired() + .OnDelete(DeleteBehavior.Cascade); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "AggregateConfig", options.Schema); + + e.Property(p => p.ReRouteId).IsRequired(); + e.Property(p => p.ReRouteKey).HasMaxLength(256); + e.Property(p => p.Parameter).HasMaxLength(1000); + e.Property(p => p.JsonPath).HasMaxLength(256); + + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "RouteGroup", options.Schema); + + e.Property(p => p.AppId).IsRequired().HasMaxLength(50); + e.Property(p => p.AppIpAddress).IsRequired().HasMaxLength(256); + e.Property(p => p.AppName).IsRequired().HasMaxLength(100); + e.Property(p => p.Name).IsRequired().HasMaxLength(50); + + e.Property(p => p.Description).HasMaxLength(256); + + e.ConfigureAuditedAggregateRoot(); + + e.HasIndex(p => new { p.AppId, p.AppName, p.AppIpAddress }); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "Aggregate", options.Schema); + + e.Property(p => p.ReRouteId).IsRequired(); + e.Property(p => p.AppId).IsRequired().HasMaxLength(50); + + e.Property(p => p.Aggregator).HasMaxLength(256); + e.Property(p => p.ReRouteKeys).HasMaxLength(1000); + e.Property(p => p.UpstreamHost).HasMaxLength(1000); + e.Property(p => p.UpstreamPathTemplate).HasMaxLength(1000); + e.Property(p => p.UpstreamHttpMethod).HasMaxLength(50); + + e.Property(p => p.ReRouteIsCaseSensitive).HasDefaultValue(false); + + e.ConfigureConcurrencyStamp(); + e.ConfigureExtraProperties(); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "DynamicReRoute", options.Schema); + + e.Property(p => p.AppId).IsRequired().HasMaxLength(50); + e.Property(p => p.ServiceName).IsRequired().HasMaxLength(100); + e.Property(p => p.DownstreamHttpVersion).HasMaxLength(30); + + e.ConfigureConcurrencyStamp(); + e.ConfigureExtraProperties(); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "GlobalConfiguration", options.Schema); + + e.Property(p => p.AppId).IsRequired().HasMaxLength(50); + e.Property(p => p.ItemId).IsRequired(); + e.Property(p => p.RequestIdKey).HasMaxLength(100); + e.Property(p => p.BaseUrl).IsRequired().HasMaxLength(256); + e.Property(p => p.DownstreamScheme).HasMaxLength(100); + e.Property(p => p.DownstreamHttpVersion).HasMaxLength(30); + + e.ConfigureSoftDelete(); + e.ConfigureConcurrencyStamp(); + e.ConfigureExtraProperties(); + }); + + builder.Entity(e => + { + e.ToTable(options.TablePrefix + "ReRoute", options.Schema); + + e.Property(p => p.AppId).IsRequired().HasMaxLength(50); + e.Property(p => p.ReRouteId).IsRequired(); + e.Property(p => p.ReRouteName).IsRequired().HasMaxLength(50); + e.Property(p => p.RequestIdKey).HasMaxLength(100); + e.Property(p => p.DownstreamScheme).HasMaxLength(100); + e.Property(p => p.DownstreamPathTemplate).IsRequired().HasMaxLength(100); + e.Property(p => p.UpstreamPathTemplate).IsRequired().HasMaxLength(100); + e.Property(p => p.UpstreamHttpMethod).IsRequired().HasMaxLength(50); + e.Property(p => p.DownstreamHttpMethod).HasMaxLength(100); + e.Property(p => p.ServiceName).HasMaxLength(100); + e.Property(p => p.ServiceNamespace).HasMaxLength(100); + e.Property(p => p.DownstreamHttpVersion).HasMaxLength(30); + e.Property(p => p.UpstreamHost).HasMaxLength(100); + e.Property(p => p.Key).HasMaxLength(100); + + e.Property(p => p.ChangeDownstreamPathTemplate).HasMaxLength(1000); + e.Property(x => x.AddHeadersToRequest).HasMaxLength(1000); + e.Property(x => x.UpstreamHeaderTransform).HasMaxLength(1000); + e.Property(x => x.DownstreamHeaderTransform).HasMaxLength(1000); + e.Property(x => x.AddClaimsToRequest).HasMaxLength(1000); + e.Property(x => x.RouteClaimsRequirement).HasMaxLength(1000); + e.Property(x => x.AddQueriesToRequest).HasMaxLength(1000); + e.Property(x => x.DownstreamHostAndPorts).HasMaxLength(1000); + e.Property(x => x.DelegatingHandlers).HasMaxLength(1000); + + e.HasIndex(i => new { i.DownstreamPathTemplate, i.UpstreamPathTemplate }).IsUnique(); + + e.ConfigureConcurrencyStamp(); + e.ConfigureExtraProperties(); + }); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEfCoreRepositoryBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEfCoreRepositoryBase.cs new file mode 100644 index 000000000..687d146d4 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEfCoreRepositoryBase.cs @@ -0,0 +1,53 @@ +using LINGYUN.ApiGateway.Data.Filter; +using System.Linq; +using Volo.Abp.Domain.Entities; +using Volo.Abp.Domain.Repositories.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore; +using Volo.Abp.Users; + +namespace LINGYUN.ApiGateway.EntityFrameworkCore +{ + public class ApiGatewayEfCoreRepositoryBase : EfCoreRepository + where TDbContext : AbpDbContext + where TEntity : class, IEntity + { + public ICurrentUser CurrentUser { get; set; } + + public ApiGatewayEfCoreRepositoryBase(IDbContextProvider dbContextProvider) + : base(dbContextProvider) + { + + } + /// + /// 重写查询,添加过滤器 + /// + /// + protected override IQueryable GetQueryable() + { + var query = base.GetQueryable(); + query = ApplyDataFilters(query); + return query; + } + /// + /// 过滤器 + /// + /// + /// + /// + protected override TQueryable ApplyDataFilters(TQueryable query) + { + query = base.ApplyDataFilters(query); + + if (typeof(IActivation).IsAssignableFrom(typeof(TEntity))) + { + var enabledActivation = DataFilter.IsEnabled(); + if (enabledActivation) + { + query = (TQueryable)query.Where(e => ((IActivation)e).IsActive); + } + } + + return query; + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEntityFrameworkCoreModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEntityFrameworkCoreModule.cs new file mode 100644 index 000000000..49385a691 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayEntityFrameworkCoreModule.cs @@ -0,0 +1,57 @@ +using LINGYUN.ApiGateway.Data.Filter; +using LINGYUN.ApiGateway.Ocelot; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.Data; +using Volo.Abp.Modularity; + +namespace LINGYUN.ApiGateway.EntityFrameworkCore +{ + [DependsOn( + typeof(ApiGatewayDomainModule) + )] + public class ApiGatewayEntityFrameworkCoreModule : AbpModule + { + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.DefaultStates.Add(typeof(IActivation), new DataFilterState(true)); + }); + + context.Services.AddAbpDbContext(options => + { + //Remove "includeAllEntities: true" to create default repositories only for aggregate roots + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + options.AddRepository(); + + options.Entity(opt => + opt.DefaultWithDetailsFunc = (p) => + p.Include(q => q.AuthenticationOptions) + .Include(q => q.CacheOptions) + .Include(q => q.HttpHandlerOptions) + .Include(q => q.LoadBalancerOptions) + .Include(q => q.QoSOptions) + .Include(q => q.RateLimitOptions) + .Include(q => q.SecurityOptions)); + + options.Entity(opt => + opt.DefaultWithDetailsFunc = (p) => + p.Include(q => q.HttpHandlerOptions) + .Include(q => q.LoadBalancerOptions) + .Include(q => q.QoSOptions) + .Include(q => q.RateLimitOptions) + .Include(q => q.ServiceDiscoveryProvider)); + + options.Entity(opt => + opt.DefaultWithDetailsFunc = (p) => + p.Include(q => q.RateLimitRule)); + + options.AddDefaultRepositories(includeAllEntities: true); + }); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayModelBuilderConfigurationOptions.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayModelBuilderConfigurationOptions.cs new file mode 100644 index 000000000..c3cd74d72 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/EntityFrameworkCore/ApiGatewayModelBuilderConfigurationOptions.cs @@ -0,0 +1,19 @@ +using JetBrains.Annotations; +using LINGYUN.ApiGateway.Settings; +using Volo.Abp.EntityFrameworkCore.Modeling; + +namespace LINGYUN.ApiGateway.EntityFrameworkCore +{ + public class ApiGatewayModelBuilderConfigurationOptions : AbpModelBuilderConfigurationOptions + { + public ApiGatewayModelBuilderConfigurationOptions( + [NotNull] string tablePrefix = ApiGatewaySettingNames.DefaultDbTablePrefix, + [CanBeNull] string schema = ApiGatewaySettingNames.DefaultDbSchema) + : base( + tablePrefix, + schema) + { + + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreAggregateReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreAggregateReRouteRepository.cs new file mode 100644 index 000000000..fa69a11d3 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreAggregateReRouteRepository.cs @@ -0,0 +1,42 @@ +using LINGYUN.ApiGateway.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.EntityFrameworkCore; + +namespace LINGYUN.ApiGateway.Ocelot +{ + public class EfCoreAggregateReRouteRepository : ApiGatewayEfCoreRepositoryBase, IAggregateReRouteRepository + { + public EfCoreAggregateReRouteRepository(IDbContextProvider dbContextProvider) + : base(dbContextProvider) + { + } + + public async Task> GetByAppIdAsync(string appId) + { + return await WithDetails().Where(ar => ar.AppId.Equals(appId)).ToListAsync(); + } + + public async Task<(List routes, long total)> GetPagedListAsync(string appId, string filter = "", + string sorting = "", int skipCount = 1, int maxResultCount = 100) + { + var resultReRoutes = await WithDetails() + .Where(ar => ar.AppId.Equals(appId)) + .WhereIf(!filter.IsNullOrWhiteSpace(), ar => ar.ReRouteKeys.Contains(filter) || + ar.UpstreamHost.Contains(filter) || ar.UpstreamPathTemplate.Contains(filter)) + .OrderBy(ar => sorting ?? ar.Name) + .EfPageBy(skipCount, maxResultCount) + .ToListAsync(); + + var total = await GetQueryable() + .Where(ar => ar.AppId.Equals(appId)) + .WhereIf(!filter.IsNullOrWhiteSpace(), ar => ar.ReRouteKeys.Contains(filter) || + ar.UpstreamHost.Contains(filter) || ar.UpstreamPathTemplate.Contains(filter)).LongCountAsync(); + + return ValueTuple.Create(resultReRoutes, total); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreDynamicReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreDynamicReRouteRepository.cs new file mode 100644 index 000000000..f8afc828b --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreDynamicReRouteRepository.cs @@ -0,0 +1,33 @@ +using LINGYUN.ApiGateway.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.EntityFrameworkCore; + +namespace LINGYUN.ApiGateway.Ocelot +{ + public class EfCoreDynamicReRouteRepository : ApiGatewayEfCoreRepositoryBase, IDynamicReRouteRepository + { + public EfCoreDynamicReRouteRepository(IDbContextProvider dbContextProvider) + : base(dbContextProvider) + { + + } + + public async Task GetByItemIdAsync(int itemId) + { + return await GetQueryable().Where(x => x.DynamicReRouteId.Equals(itemId)).FirstOrDefaultAsync(); + } + + public async Task> GetByAppIdAsync(string appId) + { + return await WithDetails().Where(x => x.AppId.Equals(appId)).ToListAsync(); + } + + public override IQueryable WithDetails() + { + return WithDetails(x => x.RateLimitRule); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreGlobalConfigRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreGlobalConfigRepository.cs new file mode 100644 index 000000000..afbb87ea1 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreGlobalConfigRepository.cs @@ -0,0 +1,64 @@ +using LINGYUN.ApiGateway.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.Domain.Entities; +using Volo.Abp.EntityFrameworkCore; + +namespace LINGYUN.ApiGateway.Ocelot +{ + public class EfCoreGlobalConfigRepository : ApiGatewayEfCoreRepositoryBase, IGlobalConfigRepository + { + public EfCoreGlobalConfigRepository(IDbContextProvider dbContextProvider) + : base(dbContextProvider) + { + + } + + public async Task GetByItemIdAsync(long itemId) + { + var globalConfiguration = await WithDetails().Where(x => x.ItemId.Equals(itemId)).FirstOrDefaultAsync(); + if(globalConfiguration == null) + { + throw new EntityNotFoundException(typeof(GlobalConfiguration)); + } + return globalConfiguration; + } + + public async Task GetByAppIdAsync(string appId) + { + return await WithDetails() + .Where(g => g.AppId.Equals(appId)) + .FirstOrDefaultAsync(); + } + + public virtual async Task<(List Globals, long TotalCount)> GetPagedListAsync(string filter = "", string sorting = "", + int skipCount = 1, int maxResultCount = 10) + { + var globals = await WithDetails() + .WhereIf(!filter.IsNullOrWhiteSpace(), g => g.AppId.Contains(filter) || + g.BaseUrl.Contains(filter) || g.DownstreamScheme.Contains(filter)) + .OrderBy(g => sorting ?? g.BaseUrl) + .EfPageBy(skipCount, maxResultCount) + .ToListAsync(); + var total = await GetQueryable() + .WhereIf(!filter.IsNullOrWhiteSpace(), g => g.AppId.Contains(filter) || + g.BaseUrl.Contains(filter) || g.DownstreamScheme.Contains(filter)) + .LongCountAsync(); + + return ValueTuple.Create(globals, total); + } + + public override IQueryable WithDetails() + { + return WithDetails( + x => x.HttpHandlerOptions, + x => x.LoadBalancerOptions, + x => x.QoSOptions, + x => x.RateLimitOptions, + x => x.ServiceDiscoveryProvider); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreReRouteRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreReRouteRepository.cs new file mode 100644 index 000000000..116374712 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreReRouteRepository.cs @@ -0,0 +1,84 @@ +using LINGYUN.ApiGateway.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using Volo.Abp.Domain.Entities; +using Volo.Abp.EntityFrameworkCore; + +namespace LINGYUN.ApiGateway.Ocelot +{ + public class EfCoreReRouteRepository : ApiGatewayEfCoreRepositoryBase, IReRouteRepository + { + public EfCoreReRouteRepository(IDbContextProvider dbContextProvider) + : base(dbContextProvider) + { + } + + public async Task GetByNameAsync(string routeName) + { + var reRoute = await WithDetails().Where(x => x.ReRouteName.Equals(routeName)).FirstOrDefaultAsync(); + return reRoute ?? throw new EntityNotFoundException(typeof(ReRoute), routeName); + } + + public async Task GetByReRouteIdAsync(long routeId) + { + var reRoute = await WithDetails().Where(x => x.ReRouteId.Equals(routeId)).FirstOrDefaultAsync(); + return reRoute ?? throw new EntityNotFoundException(typeof(ReRoute), routeId); + } + + public async Task> GetByAppIdAsync(string appId) + { + return await WithDetails() + .Where(r => r.AppId.Equals(appId)) + .ToListAsync(); + } + + public async Task<(List routes, long total)> GetPagedListAsync(string appId, string filter = "", + string sorting = "", int skipCount = 1, int maxResultCount = 100) + { + var resultReRoutes = await WithDetails() + .Where(r => r.AppId.Equals(appId)) + .WhereIf(!filter.IsNullOrWhiteSpace(), r => r.ReRouteName.Contains(filter) || + r.DownstreamHostAndPorts.Contains(filter) || r.ServiceName.Contains(filter)) + .OrderBy(r => sorting ?? r.ReRouteName) + .EfPageBy(skipCount, maxResultCount) + .ToListAsync(); + + var total = await GetQueryable() + .Where(r => r.AppId.Equals(appId)) + .WhereIf(!filter.IsNullOrWhiteSpace(), r => r.ReRouteName.Contains(filter) || + r.DownstreamHostAndPorts.Contains(filter) || r.ServiceName.Contains(filter)) + .LongCountAsync(); + + return ValueTuple.Create(resultReRoutes, total); + } + + public async Task RemoveAsync(CancellationToken cancellationToken = default(CancellationToken)) + { + var entityType = DbContext.Model.FindEntityType(typeof(ReRoute)); + var tableName = entityType.GetTableName();//.Relational().TableName; + + var sqlText = $"DELETE FROM @tableName"; + var sqlParam = new List { new { tableName } }; + + // TODO: Test + await DbContext.Database.ExecuteSqlRawAsync(sqlText, sqlParam, cancellationToken); + //await DbContext.Database.ExecuteSqlCommandAsync(sqlText, sqlParam, cancellationToken); + } + + public override IQueryable WithDetails() + { + return WithDetails( + x => x.AuthenticationOptions, + x => x.CacheOptions, + x => x.HttpHandlerOptions, + x => x.LoadBalancerOptions, + x => x.QoSOptions, + x => x.RateLimitOptions, + x => x.SecurityOptions); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreRouteGroupRepository.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreRouteGroupRepository.cs new file mode 100644 index 000000000..1803cdead --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/LINGYUN/ApiGateway/Ocelot/EfCoreRouteGroupRepository.cs @@ -0,0 +1,46 @@ +using LINGYUN.ApiGateway.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.Domain.Entities; +using Volo.Abp.EntityFrameworkCore; + +namespace LINGYUN.ApiGateway.Ocelot +{ + public class EfCoreRouteGroupRepository : ApiGatewayEfCoreRepositoryBase, IRouteGroupRepository + { + public EfCoreRouteGroupRepository( + IDbContextProvider dbContextProvider) : base(dbContextProvider) + { + } + + public virtual async Task> GetActivedAppsAsync() + { + return await DbSet.Select(g => new RouteGroupAppKey(g.AppId, g.AppName)).ToArrayAsync(); + } + + public virtual async Task GetByAppIdAsync(string appId) + { + var routeGroup = await DbSet.Where(g => g.AppId.Equals(appId)).FirstOrDefaultAsync(); + return routeGroup ?? throw new EntityNotFoundException(typeof(RouteGroup), appId); + } + + public virtual async Task<(List Routers, long TotalCount)> GetPagedListAsync(string filter = "", string sorting = "", int skipCount = 1, int maxResultCount = 10) + { + var groups = await DbSet + .WhereIf(!filter.IsNullOrWhiteSpace(), g => g.AppId.Contains(filter) || + g.AppName.Contains(filter) || g.AppIpAddress.Contains(filter) || g.Description.Contains(filter)) + .OrderBy(g => sorting ?? nameof(RouteGroup.AppId)) + .EfPageBy(skipCount, maxResultCount) + .ToListAsync(); + var toatl = await DbSet + .WhereIf(!filter.IsNullOrWhiteSpace(), g => g.AppId.Contains(filter) || + g.AppName.Contains(filter) || g.AppIpAddress.Contains(filter) || g.Description.Contains(filter)) + .LongCountAsync(); + + return ValueTuple.Create(groups, toatl); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/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.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/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.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/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.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/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.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.deps.json new file mode 100644 index 000000000..beadd414e --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.deps.json @@ -0,0 +1,1875 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.ApiGateway.EntityFrameworkCore/1.0.0": { + "dependencies": { + "LINGYUN.ApiGateway.Domain": "1.0.0", + "NETStandard.Library": "2.0.3", + "Volo.Abp.EntityFrameworkCore": "2.7.0" + }, + "runtime": { + "LINGYUN.ApiGateway.EntityFrameworkCore.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.Bcl.HashCode/1.1.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Microsoft.EntityFrameworkCore/3.1.2": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.0", + "Microsoft.Bcl.HashCode": "1.1.0", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.2", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.2", + "Microsoft.Extensions.Caching.Memory": "3.1.2", + "Microsoft.Extensions.DependencyInjection": "3.1.2", + "Microsoft.Extensions.Logging": "3.1.2", + "System.Collections.Immutable": "1.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6703" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6703" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.2": {}, + "Microsoft.EntityFrameworkCore.Relational/3.1.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6703" + } + } + }, + "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.EntityFrameworkCore/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.EntityFrameworkCore": "3.1.2", + "Microsoft.EntityFrameworkCore.Relational": "3.1.2", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Json": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.EntityFrameworkCore.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/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.EntityFrameworkCore/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.Bcl.HashCode/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==", + "path": "microsoft.bcl.hashcode/1.1.0", + "hashPath": "microsoft.bcl.hashcode.1.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VMpXQUCwVPXjDmX913ZcP6CF2XSUsCbf0C3FtVt6sNPsLlVB/ogiSQRx49UUbwZUoIkRuvsJsg7H8ugtUjQG6g==", + "path": "microsoft.entityframeworkcore/3.1.2", + "hashPath": "microsoft.entityframeworkcore.3.1.2.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-68sbjBsyhu4VjEttN1N0vnT/51AeemXv8HmbDLNC2kRMCw0BZxIhRVsK4/3eWvGd5antNfEswFkHVDPAmB99Pw==", + "path": "microsoft.entityframeworkcore.abstractions/3.1.2", + "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.2.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2v0Md70wiGS1vmco8/koAz93eOSusFh83OqwYWFxhxS6wSii7LDOhWL5Ww/zRsuGkxH4uWtNkMg5gLXBTs64Jg==", + "path": "microsoft.entityframeworkcore.analyzers/3.1.2", + "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.2.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7CKgFCLzsw7Lms3jxnhv2m5Wc1VmrR7E50tvGRxIT7aXMm4CoOIiG5YlRfAecSC2BlgJu2+oa2Mwd+zOJo0Qkg==", + "path": "microsoft.entityframeworkcore.relational/3.1.2", + "hashPath": "microsoft.entityframeworkcore.relational.3.1.2.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.EntityFrameworkCore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r5MTxBolhO+P/YWzRPjiXUJ9Hy9J+JCQA8Ql4puOV/uy8bbj/9yC+VVXcWhY1lB5ERRP3WQYv67+EP1BqbTyMw==", + "path": "volo.abp.entityframeworkcore/2.7.0", + "hashPath": "volo.abp.entityframeworkcore.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/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.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll new file mode 100644 index 000000000..9e290054c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb new file mode 100644 index 000000000..b3fe9c425 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs new file mode 100644 index 000000000..b9b78a1f6 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.EntityFrameworkCore")] +[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.EntityFrameworkCore")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.EntityFrameworkCore")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache new file mode 100644 index 000000000..311f03e4a --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +595b39663b0ce0a73046357b97dcd1051db91e51 diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.assets.cache new file mode 100644 index 000000000..e75ef310c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.assets.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..0ad9b65c6 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.FileListAbsolute.txt @@ -0,0 +1,26 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.deps.json +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.csproj.CopyComplete +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.EntityFrameworkCore\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.EntityFrameworkCore.pdb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache new file mode 100644 index 000000000..dfca27236 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll new file mode 100644 index 000000000..9e290054c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb new file mode 100644 index 000000000..b3fe9c425 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.EntityFrameworkCore.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.cache new file mode 100644 index 000000000..cbbee5f5b --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "2Ot0CpLVnye43YrjQYV3x4Nr19RpfVfbNmR5wrIeu6BUHwu6au4pH7avHSR3fnmz6PR+JOev+QiN+AP8spAF1Q==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.dgspec.json new file mode 100644 index 000000000..b81fc89e3 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.dgspec.json @@ -0,0 +1,219 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.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" + } + } + }, + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.csproj", + "projectName": "LINGYUN.ApiGateway.EntityFrameworkCore", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\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\\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.EntityFrameworkCore": { + "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.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.props new file mode 100644 index 000000000..2528351cf --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.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.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/LINGYUN.ApiGateway.EntityFrameworkCore.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.EntityFrameworkCore/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.assets.json new file mode 100644 index 000000000..3c0f8dd52 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.assets.json @@ -0,0 +1,4347 @@ +{ + "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.Bcl.HashCode/1.1.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.0", + "Microsoft.Bcl.HashCode": "1.1.0", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.2", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.2", + "Microsoft.Extensions.Caching.Memory": "3.1.2", + "Microsoft.Extensions.DependencyInjection": "3.1.2", + "Microsoft.Extensions.Logging": "3.1.2", + "System.Collections.Immutable": "1.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.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.EntityFrameworkCore/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.EntityFrameworkCore": "3.1.2", + "Microsoft.EntityFrameworkCore.Relational": "3.1.2", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Json": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.EntityFrameworkCore.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/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": { + "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.Bcl.HashCode/1.1.0": { + "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==", + "type": "package", + "path": "microsoft.bcl.hashcode/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.HashCode.dll", + "lib/net461/Microsoft.Bcl.HashCode.xml", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml", + "microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "microsoft.bcl.hashcode.nuspec", + "ref/net461/Microsoft.Bcl.HashCode.dll", + "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/3.1.2": { + "sha512": "VMpXQUCwVPXjDmX913ZcP6CF2XSUsCbf0C3FtVt6sNPsLlVB/ogiSQRx49UUbwZUoIkRuvsJsg7H8ugtUjQG6g==", + "type": "package", + "path": "microsoft.entityframeworkcore/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.3.1.2.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.2": { + "sha512": "68sbjBsyhu4VjEttN1N0vnT/51AeemXv8HmbDLNC2kRMCw0BZxIhRVsK4/3eWvGd5antNfEswFkHVDPAmB99Pw==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.3.1.2.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.2": { + "sha512": "2v0Md70wiGS1vmco8/koAz93eOSusFh83OqwYWFxhxS6wSii7LDOhWL5Ww/zRsuGkxH4uWtNkMg5gLXBTs64Jg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.3.1.2.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.2": { + "sha512": "7CKgFCLzsw7Lms3jxnhv2m5Wc1VmrR7E50tvGRxIT7aXMm4CoOIiG5YlRfAecSC2BlgJu2+oa2Mwd+zOJo0Qkg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.3.1.2.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "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.EntityFrameworkCore/2.7.0": { + "sha512": "r5MTxBolhO+P/YWzRPjiXUJ9Hy9J+JCQA8Ql4puOV/uy8bbj/9yC+VVXcWhY1lB5ERRP3WQYv67+EP1BqbTyMw==", + "type": "package", + "path": "volo.abp.entityframeworkcore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.EntityFrameworkCore.dll", + "lib/netstandard2.0/Volo.Abp.EntityFrameworkCore.pdb", + "volo.abp.entityframeworkcore.2.7.0.nupkg.sha512", + "volo.abp.entityframeworkcore.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/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.Domain >= 1.0.0", + "NETStandard.Library >= 2.0.3", + "Volo.Abp.EntityFrameworkCore >= 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.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.csproj", + "projectName": "LINGYUN.ApiGateway.EntityFrameworkCore", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\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\\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.EntityFrameworkCore": { + "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.EntityFrameworkCore/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.nuget.cache new file mode 100644 index 000000000..ac4ff6a5f --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.EntityFrameworkCore/obj/project.nuget.cache @@ -0,0 +1,108 @@ +{ + "version": 2, + "dgSpecHash": "2Ot0CpLVnye43YrjQYV3x4Nr19RpfVfbNmR5wrIeu6BUHwu6au4pH7avHSR3fnmz6PR+JOev+QiN+AP8spAF1Q==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.EntityFrameworkCore\\LINGYUN.ApiGateway.EntityFrameworkCore.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.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.2\\microsoft.entityframeworkcore.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.2\\microsoft.entityframeworkcore.abstractions.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.2\\microsoft.entityframeworkcore.analyzers.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.2\\microsoft.entityframeworkcore.relational.3.1.2.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.entityframeworkcore\\2.7.0\\volo.abp.entityframeworkcore.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.HttpApi.Client/LINGYUN.ApiGateway.HttpApi.Client.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN.ApiGateway.HttpApi.Client.csproj new file mode 100644 index 000000000..b6916c730 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN.ApiGateway.HttpApi.Client.csproj @@ -0,0 +1,16 @@ + + + + netstandard2.0 + + + + + + + + + + + + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN/ApiGateway/ApiGatewayHttpApiClientModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN/ApiGateway/ApiGatewayHttpApiClientModule.cs new file mode 100644 index 000000000..7e4798076 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/LINGYUN/ApiGateway/ApiGatewayHttpApiClientModule.cs @@ -0,0 +1,23 @@ +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.Http.Client; +using Volo.Abp.Modularity; + +namespace LINGYUN.ApiGateway +{ + [DependsOn( + typeof(AbpHttpClientModule), + typeof(ApiGatewayApplicationContractsModule) + )] + public class ApiGatewayHttpApiClientModule : AbpModule + { + public const string RemoteServiceName = "ApiGateway"; + + public override void ConfigureServices(ServiceConfigurationContext context) + { + context.Services.AddHttpClientProxies( + typeof(ApiGatewayApplicationContractsModule).Assembly, + RemoteServiceName + ); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/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.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/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.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/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.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/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.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.Domain.Shared.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.deps.json new file mode 100644 index 000000000..2da2b42ad --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.deps.json @@ -0,0 +1,2376 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.ApiGateway.HttpApi.Client/1.0.0": { + "dependencies": { + "LINGYUN.ApiGateway.Application.Contracts": "1.0.0", + "NETStandard.Library": "2.0.3", + "Volo.Abp.Http.Client": "2.7.0" + }, + "runtime": { + "LINGYUN.ApiGateway.HttpApi.Client.dll": {} + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "Castle.Core.AsyncInterceptor/2.0.21-alpha": { + "dependencies": { + "Castle.Core": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll": { + "assemblyVersion": "2.0.21.0", + "fileVersion": "2.0.21.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" + } + } + }, + "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.Http/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2", + "Microsoft.Extensions.Logging": "3.1.2", + "Microsoft.Extensions.Options": "3.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + } + }, + "Microsoft.Extensions.Http.Polly/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Http": "3.1.2", + "Polly": "7.1.0", + "Polly.Extensions.Http": "3.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.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" + } + } + }, + "NUglify/1.5.13": { + "runtime": { + "lib/netstandard2.0/NUglify.dll": { + "assemblyVersion": "1.5.13.0", + "fileVersion": "1.5.13.0" + } + } + }, + "Polly/7.1.0": { + "runtime": { + "lib/netstandard2.0/Polly.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Polly.Extensions.Http/3.0.0": { + "dependencies": { + "Polly": "7.1.0" + }, + "runtime": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.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.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "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.3/System.Collections.NonGeneric.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "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.3/System.Collections.Specialized.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "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.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24702.1" + } + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "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.5/System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24702.1" + } + } + }, + "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.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "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.native.System": "4.3.0" + } + }, + "System.Dynamic.Runtime/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.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "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.3/System.Dynamic.Runtime.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "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.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "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.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "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.Encoding.Extensions/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.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.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "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.Text.RegularExpressions.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "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" + } + } + }, + "System.Xml.ReaderWriter/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.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.2" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Xml.XmlDocument/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.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "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.Castle.Core/2.7.0": { + "dependencies": { + "Castle.Core": "4.4.0", + "Castle.Core.AsyncInterceptor": "2.0.21-alpha", + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Castle.Core.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/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.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.Http.Client/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.Extensions.Http.Polly": "3.1.2", + "Volo.Abp.Castle.Core": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.MultiTenancy": "2.7.0", + "Volo.Abp.Threading": "2.7.0", + "Volo.Abp.Validation": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.Client.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.Minify/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.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.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.Shared/1.0.0": { + "dependencies": { + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "LINGYUN.ApiGateway.Domain.Shared.dll": {} + } + } + } + }, + "libraries": { + "LINGYUN.ApiGateway.HttpApi.Client/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "Castle.Core.AsyncInterceptor/2.0.21-alpha": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BRKMoPOWcfpkWC0QpRX6P+D5o5wJHrKy4606Wose9x9u+0EW4Gevj54nI1mBc+xF267wr2gP7BbNz5uFTlSKVw==", + "path": "castle.core.asyncinterceptor/2.0.21-alpha", + "hashPath": "castle.core.asyncinterceptor.2.0.21-alpha.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" + }, + "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.Http/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dKaGiTYbIB+6tSS4sW6tkoKLcwOMRu+a5ERNMJNsmU+ba2alemD1eY1f2qXu96aNtshYwpI2EaSCPvLGX1JzAw==", + "path": "microsoft.extensions.http/3.1.2", + "hashPath": "microsoft.extensions.http.3.1.2.nupkg.sha512" + }, + "Microsoft.Extensions.Http.Polly/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3ND1oH4q+D1dOCCLr2vwt4ChWB5eIlUmSCoUaAofImsriCY3tV6ge4iUVs1erGTxfAjGV21lrxlOH6JhKz9kQ==", + "path": "microsoft.extensions.http.polly/3.1.2", + "hashPath": "microsoft.extensions.http.polly.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" + }, + "NUglify/1.5.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "path": "nuglify/1.5.13", + "hashPath": "nuglify.1.5.13.nupkg.sha512" + }, + "Polly/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mpQsvlEn4ipgICh5CGyVLPV93RFVzOrBG7wPZfzY8gExh7XgWQn0GCDY9nudbUEJ12UiGPP9i4+CohghBvzhmg==", + "path": "polly/7.1.0", + "hashPath": "polly.7.1.0.nupkg.sha512" + }, + "Polly.Extensions.Http/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-drrG+hB3pYFY7w1c3BD+lSGYvH2oIclH8GRSehgfyP5kjnFnHKQuuBhuHLv+PWyFuaTDyk/vfRpnxOzd11+J8g==", + "path": "polly.extensions.http/3.0.0", + "hashPath": "polly.extensions.http.3.0.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.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.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.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.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMVuoQ+8bMQ/Z59M3s64num5AD74X5YSqVc7ibwGkPTfmmkl2W8VuSxLRJtpw4KzQrSKUgR0BLbF0adPfcTSGQ==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.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.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.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.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.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.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.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.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.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.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.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.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.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" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.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.Castle.Core/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vvVbzJvOnHKQOHFHsPZcYkhkqLIqyTo6b2wBspaJjCgRrZYjhhrNI92PkyF+GNDSzIhWgJF62nnJujwGXucRxg==", + "path": "volo.abp.castle.core/2.7.0", + "hashPath": "volo.abp.castle.core.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/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "path": "volo.abp.http/2.7.0", + "hashPath": "volo.abp.http.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.Http.Client/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Hd0FXichneP4JzycAqacSP3ewWmwzwAyWg2nvDDtdAW1MFIimZ86gvzKl8ecq2U1jeGEqkFpQkzvcqnzYQHfuQ==", + "path": "volo.abp.http.client/2.7.0", + "hashPath": "volo.abp.http.client.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.Minify/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "path": "volo.abp.minify/2.7.0", + "hashPath": "volo.abp.minify.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.Application.Contracts/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.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll new file mode 100644 index 000000000..3f085c531 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb new file mode 100644 index 000000000..aed670cff Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/bin/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs new file mode 100644 index 000000000..f63f2fa80 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.HttpApi.Client")] +[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.HttpApi.Client")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.HttpApi.Client")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache new file mode 100644 index 000000000..9b52dbcf0 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4a5fbf1cf4ed5f7586ce30eb54b1436cb21110e2 diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.assets.cache new file mode 100644 index 000000000..cfa9716ee Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.assets.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..df447b236 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5b7167ef84bb508f25e00864dde6d86ec3356ce7 diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..bc00940ae --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csproj.FileListAbsolute.txt @@ -0,0 +1,28 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.deps.json +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\bin\Debug\netstandard2.0\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csproj.CoreCompileInputs.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.csproj.CopyComplete +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi.Client\obj\Debug\netstandard2.0\LINGYUN.ApiGateway.HttpApi.Client.pdb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache new file mode 100644 index 000000000..601c5d472 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll new file mode 100644 index 000000000..3f085c531 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb new file mode 100644 index 000000000..aed670cff Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.Client.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.dgspec.json new file mode 100644 index 000000000..d918405aa --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.dgspec.json @@ -0,0 +1,211 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.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" + } + } + }, + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj", + "projectName": "LINGYUN.ApiGateway.HttpApi.Client", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\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" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.Http.Client": { + "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.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.props new file mode 100644 index 000000000..67ca95c64 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/LINGYUN.ApiGateway.HttpApi.Client.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.HttpApi.Client/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.assets.json new file mode 100644 index 000000000..6623701ea --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.assets.json @@ -0,0 +1,5666 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v2.0": { + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Castle.Core.AsyncInterceptor/2.0.21-alpha": { + "type": "package", + "dependencies": { + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Castle.Core.AsyncInterceptor.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/_._": {} + } + }, + "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.Http/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2", + "Microsoft.Extensions.Logging": "3.1.2", + "Microsoft.Extensions.Options": "3.1.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {} + } + }, + "Microsoft.Extensions.Http.Polly/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http": "3.1.2", + "Polly": "7.1.0", + "Polly.Extensions.Http": "3.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.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": {} + } + }, + "NUglify/1.5.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NUglify.dll": {} + } + }, + "Polly/7.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Polly.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Polly.dll": {} + } + }, + "Polly.Extensions.Http/3.0.0": { + "type": "package", + "dependencies": { + "Polly": "7.1.0" + }, + "compile": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Polly.Extensions.Http.dll": {} + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "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.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "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.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "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.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "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.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.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.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "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.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/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.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "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.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.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.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.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/System.ObjectModel.dll": {} + }, + "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/System.Reflection.TypeExtensions.dll": {} + }, + "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.Handles/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.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "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.Encoding.Extensions/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" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "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.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "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/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.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": {} + } + }, + "System.Xml.ReaderWriter/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.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XmlDocument/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.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.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.Castle.Core/2.7.0": { + "type": "package", + "dependencies": { + "Castle.Core": "4.4.0", + "Castle.Core.AsyncInterceptor": "2.0.21-alpha", + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Castle.Core.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/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.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.Http.Client/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.Extensions.Http.Polly": "3.1.2", + "Volo.Abp.Castle.Core": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.MultiTenancy": "2.7.0", + "Volo.Abp.Threading": "2.7.0", + "Volo.Abp.Validation": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.Client.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.Client.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.Minify/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.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.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.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": { + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Castle.Core.AsyncInterceptor/2.0.21-alpha": { + "sha512": "BRKMoPOWcfpkWC0QpRX6P+D5o5wJHrKy4606Wose9x9u+0EW4Gevj54nI1mBc+xF267wr2gP7BbNz5uFTlSKVw==", + "type": "package", + "path": "castle.core.asyncinterceptor/2.0.21-alpha", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "castle.core.asyncinterceptor.2.0.21-alpha.nupkg.sha512", + "castle.core.asyncinterceptor.nuspec", + "lib/net45/Castle.Core.AsyncInterceptor.dll", + "lib/net45/Castle.Core.AsyncInterceptor.xml", + "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll", + "lib/netstandard2.0/Castle.Core.AsyncInterceptor.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" + ] + }, + "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.Http/3.1.2": { + "sha512": "dKaGiTYbIB+6tSS4sW6tkoKLcwOMRu+a5ERNMJNsmU+ba2alemD1eY1f2qXu96aNtshYwpI2EaSCPvLGX1JzAw==", + "type": "package", + "path": "microsoft.extensions.http/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.3.1.2.nupkg.sha512", + "microsoft.extensions.http.nuspec" + ] + }, + "Microsoft.Extensions.Http.Polly/3.1.2": { + "sha512": "m3ND1oH4q+D1dOCCLr2vwt4ChWB5eIlUmSCoUaAofImsriCY3tV6ge4iUVs1erGTxfAjGV21lrxlOH6JhKz9kQ==", + "type": "package", + "path": "microsoft.extensions.http.polly/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.xml", + "microsoft.extensions.http.polly.3.1.2.nupkg.sha512", + "microsoft.extensions.http.polly.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" + ] + }, + "NUglify/1.5.13": { + "sha512": "EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "type": "package", + "path": "nuglify/1.5.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.5.13.nupkg.sha512", + "nuglify.nuspec" + ] + }, + "Polly/7.1.0": { + "sha512": "mpQsvlEn4ipgICh5CGyVLPV93RFVzOrBG7wPZfzY8gExh7XgWQn0GCDY9nudbUEJ12UiGPP9i4+CohghBvzhmg==", + "type": "package", + "path": "polly/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/Polly.dll", + "lib/netstandard1.1/Polly.xml", + "lib/netstandard2.0/Polly.dll", + "lib/netstandard2.0/Polly.xml", + "polly.7.1.0.nupkg.sha512", + "polly.nuspec" + ] + }, + "Polly.Extensions.Http/3.0.0": { + "sha512": "drrG+hB3pYFY7w1c3BD+lSGYvH2oIclH8GRSehgfyP5kjnFnHKQuuBhuHLv+PWyFuaTDyk/vfRpnxOzd11+J8g==", + "type": "package", + "path": "polly.extensions.http/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/Polly.Extensions.Http.dll", + "lib/netstandard1.1/Polly.Extensions.Http.xml", + "lib/netstandard2.0/Polly.Extensions.Http.dll", + "lib/netstandard2.0/Polly.Extensions.Http.xml", + "polly.extensions.http.3.0.0.nupkg.sha512", + "polly.extensions.http.nuspec" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.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.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "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.ComponentModel.Primitives/4.3.0": { + "sha512": "KMVuoQ+8bMQ/Z59M3s64num5AD74X5YSqVc7ibwGkPTfmmkl2W8VuSxLRJtpw4KzQrSKUgR0BLbF0adPfcTSGQ==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "HZiP0DwTHJ+C+rdFqP47nBYUh5283kcwXIGY2zOVVhsJmVI/2tYiX2zNRdjRQRHsTox58Ydkec6h0pWSh8wAsw==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "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.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.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.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.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.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.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.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.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.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.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.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.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.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.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.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.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.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.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.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "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" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.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/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "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.Castle.Core/2.7.0": { + "sha512": "vvVbzJvOnHKQOHFHsPZcYkhkqLIqyTo6b2wBspaJjCgRrZYjhhrNI92PkyF+GNDSzIhWgJF62nnJujwGXucRxg==", + "type": "package", + "path": "volo.abp.castle.core/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Castle.Core.dll", + "lib/netstandard2.0/Volo.Abp.Castle.Core.pdb", + "volo.abp.castle.core.2.7.0.nupkg.sha512", + "volo.abp.castle.core.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/2.7.0": { + "sha512": "qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "type": "package", + "path": "volo.abp.http/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Http.dll", + "lib/netstandard2.0/Volo.Abp.Http.pdb", + "volo.abp.http.2.7.0.nupkg.sha512", + "volo.abp.http.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.Http.Client/2.7.0": { + "sha512": "Hd0FXichneP4JzycAqacSP3ewWmwzwAyWg2nvDDtdAW1MFIimZ86gvzKl8ecq2U1jeGEqkFpQkzvcqnzYQHfuQ==", + "type": "package", + "path": "volo.abp.http.client/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Http.Client.dll", + "lib/netstandard2.0/Volo.Abp.Http.Client.pdb", + "volo.abp.http.client.2.7.0.nupkg.sha512", + "volo.abp.http.client.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.Minify/2.7.0": { + "sha512": "DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "type": "package", + "path": "volo.abp.minify/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Minify.dll", + "lib/netstandard2.0/Volo.Abp.Minify.pdb", + "volo.abp.minify.2.7.0.nupkg.sha512", + "volo.abp.minify.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.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.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", + "NETStandard.Library >= 2.0.3", + "Volo.Abp.Http.Client >= 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.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj", + "projectName": "LINGYUN.ApiGateway.HttpApi.Client", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\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" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.Http.Client": { + "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.HttpApi.Client/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.nuget.cache new file mode 100644 index 000000000..a7a3c5bb4 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi.Client/obj/project.nuget.cache @@ -0,0 +1,131 @@ +{ + "version": 2, + "dgSpecHash": "/MZ74OcEatcnW0EDAFbUuqef8vVeQPuOMFHfL/QCfQkizzSWmnV9hYisuhhxN/Ne7fotfhMs03fkkKPzF59XZg==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi.Client\\LINGYUN.ApiGateway.HttpApi.Client.csproj", + "expectedPackageFiles": [ + "C:\\Users\\iVarKey\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\castle.core.asyncinterceptor\\2.0.21-alpha\\castle.core.asyncinterceptor.2.0.21-alpha.nupkg.sha512", + "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.http\\3.1.2\\microsoft.extensions.http.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.extensions.http.polly\\3.1.2\\microsoft.extensions.http.polly.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:\\Users\\iVarKey\\.nuget\\packages\\nuglify\\1.5.13\\nuglify.1.5.13.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\polly\\7.1.0\\polly.7.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.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.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.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.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.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.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.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:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.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.castle.core\\2.7.0\\volo.abp.castle.core.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\\2.7.0\\volo.abp.http.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.http.client\\2.7.0\\volo.abp.http.client.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.minify\\2.7.0\\volo.abp.minify.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.HttpApi/LINGYUN.ApiGateway.HttpApi.csproj b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN.ApiGateway.HttpApi.csproj new file mode 100644 index 000000000..e5939dd48 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN.ApiGateway.HttpApi.csproj @@ -0,0 +1,16 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayControllerBase.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayControllerBase.cs new file mode 100644 index 000000000..0b68a7414 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayControllerBase.cs @@ -0,0 +1,13 @@ +using LINGYUN.ApiGateway.Localization; +using Volo.Abp.AspNetCore.Mvc; + +namespace LINGYUN.ApiGateway +{ + public class ApiGatewayControllerBase : AbpController + { + protected ApiGatewayControllerBase() + { + LocalizationResource = typeof(ApiGatewayResource); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayHttpApiModule.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayHttpApiModule.cs new file mode 100644 index 000000000..37284e76f --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/ApiGatewayHttpApiModule.cs @@ -0,0 +1,36 @@ +using LINGYUN.ApiGateway.Localization; +using Localization.Resources.AbpUi; +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.AspNetCore.Mvc; +using Volo.Abp.Localization; +using Volo.Abp.Modularity; + +namespace LINGYUN.ApiGateway +{ + [DependsOn( + typeof(ApiGatewayApplicationContractsModule), + typeof(AbpAspNetCoreMvcModule) + )] + public class ApiGatewayHttpApiModule : AbpModule + { + public override void PreConfigureServices(ServiceConfigurationContext context) + { + PreConfigure(mvcBuilder => + { + mvcBuilder.AddApplicationPartIfNotExists(typeof(ApiGatewayHttpApiModule).Assembly); + }); + } + + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.Resources + .Get() + .AddBaseTypes( + typeof(AbpUiResource) + ); + }); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/AggregateReRouteController.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/AggregateReRouteController.cs new file mode 100644 index 000000000..1ba22e8b5 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/AggregateReRouteController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; + +namespace LINGYUN.ApiGateway.Ocelot +{ + [RemoteService(Name = ApiGatewayConsts.RemoteServiceName)] + [Area("ApiGateway")] + [Route("api/ApiGateway/Aggregates")] + public class AggregateReRouteController : ApiGatewayControllerBase, IAggregateReRouteAppService + { + protected IAggregateReRouteAppService AggregateReRouteAppService { get; } + public AggregateReRouteController( + IAggregateReRouteAppService aggregateReRouteAppService) + { + AggregateReRouteAppService = aggregateReRouteAppService; + } + + [HttpGet] + [Route("by-AppId/{AppId}")] + public async Task> GetAsync(AggregateRouteGetByAppIdInputDto aggregateRouteGetByAppId) + { + return await AggregateReRouteAppService.GetAsync(aggregateRouteGetByAppId); + } + + [HttpGet] + public async Task> GetPagedListAsync(AggregateRouteGetByPagedInputDto aggregateRouteGetByPaged) + { + return await AggregateReRouteAppService.GetPagedListAsync(aggregateRouteGetByPaged); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/DynamicReRouteController.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/DynamicReRouteController.cs new file mode 100644 index 000000000..12f8417d8 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/DynamicReRouteController.cs @@ -0,0 +1,27 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; + +namespace LINGYUN.ApiGateway.Ocelot +{ + [RemoteService(Name = ApiGatewayConsts.RemoteServiceName)] + [Area("ApiGateway")] + [Route("api/ApiGateway/DynamicRoutes")] + public class DynamicReRouteController : ApiGatewayControllerBase, IDynamicReRouteAppService + { + protected IDynamicReRouteAppService DynamicReRouteAppService { get; } + public DynamicReRouteController( + IDynamicReRouteAppService dynamicReRouteAppService) + { + DynamicReRouteAppService = dynamicReRouteAppService; + } + + [HttpGet] + [Route("By-AppId/{AppId}")] + public virtual async Task> GetAsync(DynamicRouteGetByAppIdInputDto dynamicRouteGetByAppId) + { + return await DynamicReRouteAppService.GetAsync(dynamicRouteGetByAppId); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationController.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationController.cs new file mode 100644 index 000000000..555526fdc --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/GlobalConfigurationController.cs @@ -0,0 +1,57 @@ +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; +using Volo.Abp.Authorization.Permissions; + +namespace LINGYUN.ApiGateway.Ocelot +{ + [RemoteService(Name = ApiGatewayConsts.RemoteServiceName)] + [Area("ApiGateway")] + [Route("api/ApiGateway/Globals")] + public class GlobalConfigurationController : ApiGatewayControllerBase, IGlobalConfigurationAppService + { + protected IGlobalConfigurationAppService GlobalConfigurationAppService { get; } + protected IPermissionValueProviderManager PermissionValueProviderManager { get; } + public GlobalConfigurationController( + IGlobalConfigurationAppService globalConfigurationAppService, + IPermissionValueProviderManager permissionValueProviderManager) + { + GlobalConfigurationAppService = globalConfigurationAppService; + PermissionValueProviderManager = permissionValueProviderManager; + } + + [HttpGet] + [Route("By-AppId/{AppId}")] + public async Task GetAsync(GlobalGetByAppIdInputDto globalGetByAppId) + { + return await GlobalConfigurationAppService.GetAsync(globalGetByAppId); + } + + [HttpPost] + public async Task CreateAsync(GlobalCreateDto globalCreateDto) + { + return await GlobalConfigurationAppService.CreateAsync(globalCreateDto); + } + + [HttpPut] + public async Task UpdateAsync(GlobalUpdateDto globalUpdateDto) + { + return await GlobalConfigurationAppService.UpdateAsync(globalUpdateDto); + } + + [HttpDelete] + public virtual async Task DeleteAsync(GlobalGetByAppIdInputDto globalGetByAppId) + { + await GlobalConfigurationAppService.DeleteAsync(globalGetByAppId); + } + + [HttpGet] + public virtual async Task> GetAsync(GlobalGetByPagedInputDto globalGetPaged) + { + var user = CurrentUser; + return await GlobalConfigurationAppService.GetAsync(globalGetPaged); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/ReRouteController.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/ReRouteController.cs new file mode 100644 index 000000000..8e46753a1 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/ReRouteController.cs @@ -0,0 +1,72 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; + +namespace LINGYUN.ApiGateway.Ocelot +{ + [RemoteService(Name = ApiGatewayConsts.RemoteServiceName)] + [Area("ApiGateway")] + [Route("api/ApiGateway/Routes")] + public class ReRouteController : ApiGatewayControllerBase, IReRouteAppService + { + protected IReRouteAppService ReRouteAppService { get; } + public ReRouteController( + IReRouteAppService reRouteAppService) + { + ReRouteAppService = reRouteAppService; + } + + [HttpPost] + public async Task CreateAsync(ReRouteCreateDto routeCreateDto) + { + return await ReRouteAppService.CreateAsync(routeCreateDto); + } + + [HttpPut] + public async Task UpdateAsync(ReRouteUpdateDto routeUpdateDto) + { + return await ReRouteAppService.UpdateAsync(routeUpdateDto); + } + + [HttpGet] + [Route("By-RouteId/{RouteId}")] + public async Task GetAsync(ReRouteGetByIdInputDto routeGetById) + { + return await ReRouteAppService.GetAsync(routeGetById); + } + + [HttpGet] + [Route("By-RouteName/{RouteName}")] + public async Task GetByRouteNameAsync(ReRouteGetByNameInputDto routeGetByName) + { + return await ReRouteAppService.GetByRouteNameAsync(routeGetByName); + } + + [HttpGet] + [Route("By-AppId/{AppId}")] + public async Task> GetAsync(ReRouteGetByAppIdInputDto routeGetByAppId) + { + return await ReRouteAppService.GetAsync(routeGetByAppId); + } + + [HttpGet] + public async Task> GetPagedListAsync(ReRouteGetByPagedInputDto routeGetByPaged) + { + return await ReRouteAppService.GetPagedListAsync(routeGetByPaged); + } + + [HttpDelete] + [Route("Clear")] + public async Task RemoveAsync(ReRouteGetByAppIdInputDto routeGetByAppId) + { + await ReRouteAppService.RemoveAsync(routeGetByAppId); + } + + [HttpDelete] + public async Task DeleteAsync(ReRouteGetByIdInputDto routeGetById) + { + await ReRouteAppService.DeleteAsync(routeGetById); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/RouteGroupController.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/RouteGroupController.cs new file mode 100644 index 000000000..1791cb63d --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/LINGYUN/ApiGateway/Ocelot/RouteGroupController.cs @@ -0,0 +1,57 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; + +namespace LINGYUN.ApiGateway.Ocelot +{ + [RemoteService(Name = ApiGatewayConsts.RemoteServiceName)] + [Area("ApiGateway")] + [Route("api/ApiGateway/RouteGroups")] + public class RouteGroupController : ApiGatewayControllerBase, IRouteGroupAppService + { + protected IRouteGroupAppService RouterAppService { get; } + public RouteGroupController(IRouteGroupAppService routerAppService) + { + RouterAppService = routerAppService; + } + + [HttpPost] + public virtual async Task CreateAsync(RouteGroupCreateDto routerCreateDto) + { + return await RouterAppService.CreateAsync(routerCreateDto); + } + + [HttpGet] + [Route("By-AppId/{AppId}")] + public virtual async Task GetAsync(RouteGroupGetByAppIdInputDto routerGetByAppId) + { + return await RouterAppService.GetAsync(routerGetByAppId); + } + + [HttpGet] + [Route("Actived")] + public virtual async Task> GetActivedAsync() + { + return await RouterAppService.GetActivedAsync(); + } + + [HttpGet] + public virtual async Task> GetAsync(RouteGroupGetByPagedInputDto routerGetByPagedInput) + { + return await RouterAppService.GetAsync(routerGetByPagedInput); + } + + [HttpPut] + public virtual async Task UpdateAsync(RouteGroupUpdateDto routerUpdateDto) + { + return await RouterAppService.UpdateAsync(routerUpdateDto); + } + + [HttpDelete] + public virtual async Task DeleteAsync(RouteGroupGetByAppIdInputDto routerGetByAppId) + { + await RouterAppService.DeleteAsync(routerGetByAppId); + } + } +} diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.dll new file mode 100644 index 000000000..584d1aaed Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.pdb new file mode 100644 index 000000000..ab341e4ab Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.dll new file mode 100644 index 000000000..4c59c3ba8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.pdb new file mode 100644 index 000000000..9ca6845e4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.Domain.Shared.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.deps.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.deps.json new file mode 100644 index 000000000..b6e1e00e1 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.deps.json @@ -0,0 +1,5430 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP", + "NETCOREAPP3_1" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": false, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v3.1": { + "LINGYUN.ApiGateway.HttpApi/1.0.0": { + "dependencies": { + "LINGYUN.ApiGateway.Application.Contracts": "1.0.0", + "Volo.Abp.AspNetCore.Mvc": "2.7.0", + "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0", + "Microsoft.AspNetCore.Authentication": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0", + "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0", + "Microsoft.AspNetCore.Components": "3.1.0.0", + "Microsoft.AspNetCore.Components.Forms": "3.1.0.0", + "Microsoft.AspNetCore.Components.Server": "3.1.0.0", + "Microsoft.AspNetCore.Components.Web": "3.1.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0", + "Microsoft.AspNetCore.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.AspNetCore": "3.1.0.0", + "Microsoft.AspNetCore.HostFiltering": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Hosting": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections": "3.1.0.0", + "Microsoft.AspNetCore.Http": "3.1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Features": "3.1.0.0", + "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0", + "Microsoft.AspNetCore.Identity": "3.1.0.0", + "Microsoft.AspNetCore.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0", + "Microsoft.AspNetCore.Mvc": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0", + "Microsoft.AspNetCore.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0", + "Microsoft.AspNetCore.Rewrite": "3.1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0", + "Microsoft.AspNetCore.Server.IIS": "3.1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0", + "Microsoft.AspNetCore.Session": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0", + "Microsoft.AspNetCore.SignalR": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0", + "Microsoft.AspNetCore.StaticFiles": "3.1.0.0", + "Microsoft.AspNetCore.WebSockets": "3.1.0.0", + "Microsoft.AspNetCore.WebUtilities": "3.1.0.0", + "Microsoft.CSharp.Reference": "4.0.0.0", + "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Caching.Memory": "3.1.0.0", + "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", + "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", + "Microsoft.Extensions.Hosting": "3.1.0.0", + "Microsoft.Extensions.Http": "3.1.0.0", + "Microsoft.Extensions.Identity.Core": "3.1.0.0", + "Microsoft.Extensions.Identity.Stores": "3.1.0.0", + "Microsoft.Extensions.Logging.Configuration": "3.1.0.0", + "Microsoft.Extensions.Logging.Console": "3.1.0.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0.0", + "Microsoft.Extensions.Logging.EventLog": "3.1.0.0", + "Microsoft.Extensions.Logging.EventSource": "3.1.0.0", + "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0", + "Microsoft.Extensions.ObjectPool": "3.1.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", + "Microsoft.Extensions.WebEncoders": "3.1.0.0", + "Microsoft.JSInterop": "3.1.0.0", + "Microsoft.Net.Http.Headers": "3.1.0.0", + "Microsoft.VisualBasic.Core": "10.0.5.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "4.1.2.0", + "Microsoft.Win32.Registry": "4.1.3.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "4.2.2.0", + "System.Buffers": "4.0.2.0", + "System.Collections.Concurrent": "4.0.15.0", + "System.Collections.Reference": "4.1.2.0", + "System.Collections.Immutable.Reference": "1.2.5.0", + "System.Collections.NonGeneric": "4.1.2.0", + "System.Collections.Specialized": "4.1.2.0", + "System.ComponentModel.Annotations.Reference": "4.3.1.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "4.0.4.0", + "System.ComponentModel.EventBasedAsync": "4.1.2.0", + "System.ComponentModel.Primitives": "4.2.2.0", + "System.ComponentModel.TypeConverter": "4.2.2.0", + "System.Configuration": "4.0.0.0", + "System.Console": "4.1.2.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "4.2.2.0", + "System.Data.DataSetExtensions": "4.0.1.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "4.0.4.0", + "System.Diagnostics.Debug.Reference": "4.1.2.0", + "System.Diagnostics.DiagnosticSource": "4.0.5.0", + "System.Diagnostics.EventLog": "4.0.2.0", + "System.Diagnostics.FileVersionInfo": "4.0.4.0", + "System.Diagnostics.Process": "4.2.2.0", + "System.Diagnostics.StackTrace": "4.1.2.0", + "System.Diagnostics.TextWriterTraceListener": "4.1.2.0", + "System.Diagnostics.Tools": "4.1.2.0", + "System.Diagnostics.TraceSource": "4.1.2.0", + "System.Diagnostics.Tracing": "4.2.2.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "4.2.1.0", + "System.Dynamic.Runtime": "4.1.2.0", + "System.Globalization.Calendars": "4.1.2.0", + "System.Globalization.Reference": "4.1.2.0", + "System.Globalization.Extensions": "4.1.2.0", + "System.IO.Compression.Brotli": "4.2.2.0", + "System.IO.Compression": "4.2.2.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "4.0.5.0", + "System.IO.Reference": "4.2.2.0", + "System.IO.FileSystem": "4.1.2.0", + "System.IO.FileSystem.DriveInfo": "4.1.2.0", + "System.IO.FileSystem.Primitives": "4.1.2.0", + "System.IO.FileSystem.Watcher": "4.1.2.0", + "System.IO.IsolatedStorage": "4.1.2.0", + "System.IO.MemoryMappedFiles": "4.1.2.0", + "System.IO.Pipelines": "4.0.2.0", + "System.IO.Pipes": "4.1.2.0", + "System.IO.UnmanagedMemoryStream": "4.1.2.0", + "System.Linq.Reference": "4.2.2.0", + "System.Linq.Expressions.Reference": "4.2.2.0", + "System.Linq.Parallel": "4.0.4.0", + "System.Linq.Queryable.Reference": "4.0.4.0", + "System.Memory.Reference": "4.2.1.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "4.2.2.0", + "System.Net.HttpListener": "4.0.2.0", + "System.Net.Mail": "4.0.2.0", + "System.Net.NameResolution": "4.1.2.0", + "System.Net.NetworkInformation": "4.2.2.0", + "System.Net.Ping": "4.1.2.0", + "System.Net.Primitives": "4.1.2.0", + "System.Net.Requests": "4.1.2.0", + "System.Net.Security": "4.1.2.0", + "System.Net.ServicePoint": "4.0.2.0", + "System.Net.Sockets": "4.2.2.0", + "System.Net.WebClient": "4.0.2.0", + "System.Net.WebHeaderCollection": "4.1.2.0", + "System.Net.WebProxy": "4.0.2.0", + "System.Net.WebSockets.Client": "4.1.2.0", + "System.Net.WebSockets": "4.1.2.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "4.1.6.0", + "System.ObjectModel.Reference": "4.1.2.0", + "System.Reflection.DispatchProxy": "4.0.6.0", + "System.Reflection.Reference": "4.2.2.0", + "System.Reflection.Emit.Reference": "4.1.2.0", + "System.Reflection.Emit.ILGeneration.Reference": "4.1.1.0", + "System.Reflection.Emit.Lightweight.Reference": "4.1.1.0", + "System.Reflection.Extensions.Reference": "4.1.2.0", + "System.Reflection.Metadata.Reference": "1.4.5.0", + "System.Reflection.Primitives.Reference": "4.1.2.0", + "System.Reflection.TypeExtensions.Reference": "4.1.2.0", + "System.Resources.Reader": "4.1.2.0", + "System.Resources.ResourceManager.Reference": "4.1.2.0", + "System.Resources.Writer": "4.1.2.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0", + "System.Runtime.CompilerServices.VisualC": "4.1.2.0", + "System.Runtime.Reference": "4.2.2.0", + "System.Runtime.Extensions.Reference": "4.2.2.0", + "System.Runtime.Handles": "4.1.2.0", + "System.Runtime.InteropServices": "4.2.2.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0", + "System.Runtime.Intrinsics": "4.0.1.0", + "System.Runtime.Loader.Reference": "4.1.1.0", + "System.Runtime.Numerics": "4.1.2.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "4.0.4.0", + "System.Runtime.Serialization.Json": "4.0.5.0", + "System.Runtime.Serialization.Primitives": "4.2.2.0", + "System.Runtime.Serialization.Xml": "4.1.5.0", + "System.Security.AccessControl": "4.1.1.0", + "System.Security.Claims": "4.1.2.0", + "System.Security.Cryptography.Algorithms": "4.3.2.0", + "System.Security.Cryptography.Cng": "4.3.3.0", + "System.Security.Cryptography.Csp": "4.1.2.0", + "System.Security.Cryptography.Encoding": "4.1.2.0", + "System.Security.Cryptography.Primitives": "4.1.2.0", + "System.Security.Cryptography.X509Certificates": "4.2.2.0", + "System.Security.Cryptography.Xml": "4.0.3.0", + "System.Security": "4.0.0.0", + "System.Security.Permissions": "4.0.3.0", + "System.Security.Principal": "4.1.2.0", + "System.Security.Principal.Windows": "4.1.1.0", + "System.Security.SecureString": "4.1.2.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages.Reference": "4.1.3.0", + "System.Text.Encoding.Reference": "4.1.2.0", + "System.Text.Encoding.Extensions": "4.1.2.0", + "System.Text.Encodings.Web": "4.0.5.0", + "System.Text.RegularExpressions": "4.2.2.0", + "System.Threading.Channels": "4.0.2.0", + "System.Threading.Reference": "4.1.2.0", + "System.Threading.Overlapped": "4.1.2.0", + "System.Threading.Tasks.Dataflow": "4.6.5.0", + "System.Threading.Tasks.Reference": "4.1.2.0", + "System.Threading.Tasks.Extensions.Reference": "4.3.1.0", + "System.Threading.Tasks.Parallel": "4.0.4.0", + "System.Threading.Thread": "4.1.2.0", + "System.Threading.ThreadPool": "4.1.2.0", + "System.Threading.Timer": "4.1.2.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "4.0.2.0", + "System.ValueTuple": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "4.0.2.0", + "System.Windows": "4.0.0.0", + "System.Windows.Extensions": "4.0.1.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "4.2.2.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "4.1.2.0", + "System.Xml.XmlDocument": "4.1.2.0", + "System.Xml.XmlSerializer": "4.1.2.0", + "System.Xml.XPath": "4.1.2.0", + "System.Xml.XPath.XDocument": "4.1.2.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "LINGYUN.ApiGateway.HttpApi.dll": {} + }, + "compile": { + "LINGYUN.ApiGateway.HttpApi.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" + } + }, + "compile": { + "lib/netstandard2.0/ConfigureAwait.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/JetBrains.Annotations.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/3.1.2": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Metadata/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "3.1.2", + "Newtonsoft.Json": "12.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2", + "Microsoft.Extensions.DependencyModel": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.7277.28678" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": {}, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.3", + "System.Collections.Immutable": "1.7.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.CSharp": "3.3.0", + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Configuration/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.FileProviders.Physical": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.2": { + "dependencies": { + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6704" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2", + "Microsoft.Extensions.FileSystemGlobbing": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.2": { + "dependencies": { + "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/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2", + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.2": {}, + "Microsoft.NETCore.Targets/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" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {} + } + }, + "Nito.Collections.Deque/1.0.4": { + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "assemblyVersion": "1.0.4.0", + "fileVersion": "1.0.4.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Disposables.dll": {} + } + }, + "NUglify/1.5.13": { + "runtime": { + "lib/netstandard2.0/NUglify.dll": { + "assemblyVersion": "1.5.13.0", + "fileVersion": "1.5.13.0" + } + }, + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.7.0": { + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Linq.Dynamic.Core/1.0.19": { + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.0.19.0", + "fileVersion": "1.0.19.0" + } + }, + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + } + }, + "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" + } + }, + "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" + } + }, + "System.Memory/4.5.3": {}, + "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" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "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" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + } + }, + "System.Text.Json/4.7.1": { + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "assemblyVersion": "4.0.1.1", + "fileVersion": "4.700.20.6702" + } + }, + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + } + }, + "Volo.Abp.AspNetCore/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Auditing": "2.7.0", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.Security": "2.7.0", + "Volo.Abp.UI": "2.7.0", + "Volo.Abp.Uow": "2.7.0", + "Volo.Abp.Validation": "2.7.0", + "Volo.Abp.VirtualFileSystem": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "3.1.2", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "3.1.2", + "Microsoft.AspNetCore.Mvc.Versioning": "4.1.0", + "Volo.Abp.ApiVersioning.Abstractions": "2.7.0", + "Volo.Abp.AspNetCore": "2.7.0", + "Volo.Abp.AspNetCore.Mvc.Contracts": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.UI": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Ddd.Application": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Auditing.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Authorization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Core.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Data.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.EventBus.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Features.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Guids.dll": {} + } + }, + "Volo.Abp.Http/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Json.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {} + } + }, + "Volo.Abp.Minify/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Security.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Settings.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Threading.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Timing.dll": {} + } + }, + "Volo.Abp.UI/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.UI.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.UI.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Uow.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {} + } + }, + "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": {} + }, + "compile": { + "LINGYUN.ApiGateway.Application.Contracts.dll": {} + } + }, + "LINGYUN.ApiGateway.Domain.Shared/1.0.0": { + "dependencies": { + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "LINGYUN.ApiGateway.Domain.Shared.dll": {} + }, + "compile": { + "LINGYUN.ApiGateway.Domain.Shared.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/3.1.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/4.2.2.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/4.0.2.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/4.0.15.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Reference/4.1.2.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/4.1.2.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/4.1.2.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/4.0.4.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/4.1.2.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/4.2.2.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/4.2.2.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/4.1.2.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/4.2.1.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/4.1.2.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/4.1.2.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Reference/4.1.2.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/4.1.2.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/4.2.2.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO.Reference/4.2.2.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/4.1.2.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/4.0.2.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/4.1.2.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Reference/4.2.2.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/4.0.4.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/4.2.1.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/4.2.2.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/4.0.2.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/4.0.2.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/4.1.2.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/4.2.2.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/4.1.2.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/4.1.2.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/4.1.2.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/4.1.2.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/4.0.2.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/4.2.2.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/4.0.2.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/4.0.2.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/4.1.2.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/4.1.6.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel.Reference/4.1.2.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Reference/4.2.2.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/4.1.2.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/4.1.2.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Reference/4.2.2.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/4.1.2.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/4.2.2.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/4.1.2.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/4.1.1.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/4.1.2.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions/4.0.3.0": { + "compile": { + "System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/4.1.2.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/4.1.1.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/4.1.2.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/4.0.5.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/4.2.2.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/4.0.2.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Reference/4.1.2.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/4.1.2.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/4.1.2.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/4.1.2.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/4.1.2.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/4.0.2.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/4.0.2.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Windows.Extensions/4.0.1.0": { + "compile": { + "System.Windows.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/4.1.2.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/4.1.2.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "LINGYUN.ApiGateway.HttpApi/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.JsonPatch/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdrF8gZnWy/sAtRgV6IMRr9V6t8nfTqS6VpzPUnCqe8vFnWlJP/J45LULpQfRCuyq7Mdk1qoDOnT9S9qI0Exqw==", + "path": "microsoft.aspnetcore.jsonpatch/3.1.2", + "hashPath": "microsoft.aspnetcore.jsonpatch.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.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pa3e4g6ppyn8fJHYxJCuMfCqIp2e8VWF2Cgl4XmQV3dnJHoGMZnZFnmnCNVsdQKbLTFpDiox2r48/KDo0czV2Q==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/4EqGr6fZWqKGh44iWqnHktattiEEMu4QpNaEoWGepLdRme+hS+9bxUDO7SwVGG8pdcDf2EAUEZ/FqoViCYDIA==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AcUZX2rkjccGaBosUfu5PYdzSM3/FkmC0y9UyyoneXz/iVGiLUeXZZtGOzYPxpkg5G1yyMtag50BCq6yMm0mTA==", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QuFIocMUP8K9+QrjLNio6uD3CE805afEJNz9qaEPl0ah2D2iQrmEW3bD5+LfathtdVS4MkmmgEVrhJBP1yFOFA==", + "path": "microsoft.aspnetcore.mvc.versioning/4.1.0", + "hashPath": "microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VttbHyOJLKtaW57Zv7wUaKmgx6EZ5O7FjXMrBMzQu6DXfFTW79le/rzDeBcqhGeeji2rKuzBMrehyCbRal+reA==", + "path": "microsoft.aspnetcore.razor.language/3.1.2", + "hashPath": "microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDKEoHdg3icjLrn9EJ4KIkJG+ahU1YouhB0J8EARhj6fTqA/3oUneak0hWbToLOBLOTePu/Oc1QEA4mwmMEYVA==", + "path": "microsoft.codeanalysis.analyzers/2.9.3", + "hashPath": "microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hK0BGWD2ZlTCZ/KD84LQrD95lwJuRg8++uVGeiLq+klmcsNf3g7j/QvXowZX5Wi+oL9egCFxI7d3A4GtpQAl0A==", + "path": "microsoft.codeanalysis.common/3.3.0", + "hashPath": "microsoft.codeanalysis.common.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C0acBZTXLgi72UpV+E2zT+joclyPxNQ+zuHnvE0bS6hJA4i7kBBdW7qaLEwVP6a9MrrtL869StzvXqMc/0PvTg==", + "path": "microsoft.codeanalysis.csharp/3.3.0", + "hashPath": "microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-blQr2sK7c8XhmImjUf/4KOlhJJ3mxHuUj2drw+0gwH2rf+/18C/1g3CJN5DZ/2IHsFvYFbb9zcnrXor5+mZI+w==", + "path": "microsoft.codeanalysis.razor/3.1.2", + "hashPath": "microsoft.codeanalysis.razor.3.1.2.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.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.DependencyModel/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZR4ChHbwEHArC6iuLyf5Pr7BANayuVGcDUzuF+HoX5P1MTxFnyJu7cYOgRwPWAgIDZftqqeOm4LbGIQnQXsTw==", + "path": "microsoft.extensions.dependencymodel/3.1.2", + "hashPath": "microsoft.extensions.dependencymodel.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/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "path": "microsoft.netcore.platforms/2.1.2", + "hashPath": "microsoft.netcore.platforms.2.1.2.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" + }, + "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" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.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" + }, + "NUglify/1.5.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "path": "nuglify/1.5.13", + "hashPath": "nuglify.1.5.13.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.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.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.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.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.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.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.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.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IVb+mn9clcLztIixCuZaUHzOpPeHOMKm+LKsvViNblmuyYstJJyaquMTrnEV/jlWbICPDeBux5W+Eu50tD3tNg==", + "path": "volo.abp.apiversioning.abstractions/2.7.0", + "hashPath": "volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V0Xmn2dqjpdXYf6xOWZHW5t+qipr3ReAgYrcCsP0GMdEtuLLa0SBPk2bk9V7cfwkAgYrtETFkSbdYLhOsm/OFg==", + "path": "volo.abp.aspnetcore/2.7.0", + "hashPath": "volo.abp.aspnetcore.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60bM5mtr+bQD0gaDZQ5DZ8egApJt92MtNcW6XrxCh7LMoJJJZhMRyicx6IGqztwyvV3r7+YqYpI0FjtDfWsPfg==", + "path": "volo.abp.aspnetcore.mvc/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J2AsYy3P1UGWBdYwj/uhEoNpw9/fjIHYeHV748BHzV4bv6Zqb/c97h2pWhkmk1gL9r3+5NsZJBd/mktNA9iLPw==", + "path": "volo.abp.aspnetcore.mvc.contracts/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.contracts.2.7.0.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/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "path": "volo.abp.http/2.7.0", + "hashPath": "volo.abp.http.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.Minify/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "path": "volo.abp.minify/2.7.0", + "hashPath": "volo.abp.minify.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.UI/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YjDr9Fb5HAvejzLNra9RGjJSwtOKY5k7+STMNWkCVwpPagLOxyAUvtytseOoWg3n7FGxYVvUYJYlRcgM8kX9vA==", + "path": "volo.abp.ui/2.7.0", + "hashPath": "volo.abp.ui.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.Shared/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/4.0.15.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/4.1.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Permissions/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows.Extensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll new file mode 100644 index 000000000..6412412e5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb new file mode 100644 index 000000000..2a4d642ca Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 000000000..1662f2ffb Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 000000000..3ead48c37 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100644 index 000000000..dd3424b65 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 000000000..c8a73b5c3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100644 index 000000000..c57d6c0b2 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 000000000..4d60a8883 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 000000000..fbc4c49ea Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 000000000..3c5998f4d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 000000000..ceecd7b63 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 000000000..52790a991 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 000000000..dfa191bfd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll new file mode 100644 index 000000000..aa7f2ce01 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 000000000..16f7f1e5a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100644 index 000000000..0fc83bd5c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 000000000..4210047ea Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 000000000..739b28e12 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100644 index 000000000..1d2696913 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 000000000..8a3d76772 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 000000000..382489a9c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 000000000..4a0b3e978 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 000000000..f0310bcde Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100644 index 000000000..76c9f4893 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 000000000..762a12c58 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 000000000..d44196dec Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 000000000..e2137aa09 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 000000000..b0c4b2f4c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 000000000..2b3b8112f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 000000000..4e2ea58d8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 000000000..9f1ecf577 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 000000000..ee1ed052f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 000000000..ec0b4e72e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 000000000..b406b226a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 000000000..2ac58580f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll new file mode 100644 index 000000000..aa0f80fcd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 000000000..c151679f1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100644 index 000000000..004122810 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll new file mode 100644 index 000000000..39f5e3b08 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100644 index 000000000..c3c5e9590 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll new file mode 100644 index 000000000..babcb29c5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 000000000..d80a55078 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 000000000..b31c7e649 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 000000000..5d4d461ad Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 000000000..03696e379 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 000000000..98f04dfea Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 000000000..57f1424d9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 000000000..b6cfca11a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 000000000..cc1fef149 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 000000000..cf28dc317 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 000000000..7bd76805b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 000000000..863e7e663 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 000000000..2fddac6ee Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 000000000..f03eca583 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 000000000..b77e91134 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 000000000..c1a3192de Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 000000000..4045ddc8e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100644 index 000000000..5951177be Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100644 index 000000000..90e076a71 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100644 index 000000000..7c1482d74 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 000000000..9ef2e01f4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 000000000..cc07d1fb0 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 000000000..ba506881f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 000000000..84bf0a072 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 000000000..a908f7d72 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 000000000..978b018ae Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 000000000..30b598d3b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 000000000..582595e6e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll new file mode 100644 index 000000000..17093c068 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 000000000..01ebd41b6 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 000000000..ee88a0517 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 000000000..98caa4764 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 000000000..450d2daef Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 000000000..ac67cd8ca Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 000000000..d99cebfa7 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 000000000..6c32dd42a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll new file mode 100644 index 000000000..1960f2bfd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll new file mode 100644 index 000000000..f85bffd45 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 000000000..c08bf6394 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 000000000..70735926b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100644 index 000000000..6fb99fb3b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 000000000..9f6792ca9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100644 index 000000000..25a09e2eb Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100644 index 000000000..321d9c603 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100644 index 000000000..917c100ff Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 000000000..a9f104fd3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll new file mode 100644 index 000000000..4997aef92 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll new file mode 100644 index 000000000..3be680011 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100644 index 000000000..d8c0f24f8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100644 index 000000000..97af69159 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 000000000..2680dab07 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 000000000..2bd346482 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 000000000..9c644d086 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 000000000..4c4e96882 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 000000000..5ed77b6dd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100644 index 000000000..f157e9572 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 000000000..b27f2dee4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100644 index 000000000..4a9c8219b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 000000000..59ae6231b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll new file mode 100644 index 000000000..ccf22395c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll new file mode 100644 index 000000000..5950b1b4e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll new file mode 100644 index 000000000..d91ae4994 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll new file mode 100644 index 000000000..cd3989b37 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll new file mode 100644 index 000000000..43ba80ca4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll new file mode 100644 index 000000000..6c1aa2539 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll new file mode 100644 index 000000000..6f91b4de3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll new file mode 100644 index 000000000..fd8b1a7d8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll new file mode 100644 index 000000000..b04f22f66 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll new file mode 100644 index 000000000..d64a1c41a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll new file mode 100644 index 000000000..7b4515368 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll new file mode 100644 index 000000000..3d04382ab Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll new file mode 100644 index 000000000..a09c53039 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll new file mode 100644 index 000000000..0857b8e5e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 000000000..1b93a6b55 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 000000000..ceaad81de Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll new file mode 100644 index 000000000..b002b20a9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll new file mode 100644 index 000000000..e0d655ee0 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll new file mode 100644 index 000000000..a4f1ab64a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll new file mode 100644 index 000000000..ba07a6d89 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll new file mode 100644 index 000000000..929d10560 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll new file mode 100644 index 000000000..a1219b922 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll new file mode 100644 index 000000000..d98027956 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll new file mode 100644 index 000000000..75b184566 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll new file mode 100644 index 000000000..28dd7b5d5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll new file mode 100644 index 000000000..d883bbf1c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll new file mode 100644 index 000000000..a8db445dd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 000000000..afac747ed Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll new file mode 100644 index 000000000..76e50a2cb Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 000000000..9cc1b7df7 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll new file mode 100644 index 000000000..8e7771794 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll new file mode 100644 index 000000000..cb8f0e8f8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 000000000..2d969d25f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll new file mode 100644 index 000000000..28f9e7efa Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll new file mode 100644 index 000000000..0d7d38540 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll new file mode 100644 index 000000000..c38a193eb Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll new file mode 100644 index 000000000..dd867f9bd Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll new file mode 100644 index 000000000..d93f8c69b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll new file mode 100644 index 000000000..921deb9d1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll new file mode 100644 index 000000000..ec695373c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll new file mode 100644 index 000000000..c9ba57759 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll new file mode 100644 index 000000000..f63cd8c33 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll new file mode 100644 index 000000000..0379a2e22 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll new file mode 100644 index 000000000..5bf044790 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll new file mode 100644 index 000000000..21b4f2db4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll new file mode 100644 index 000000000..7bd457ca1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 000000000..b3587e947 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll new file mode 100644 index 000000000..73ae6de43 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll new file mode 100644 index 000000000..74c8de2bb Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll new file mode 100644 index 000000000..77af48a49 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll new file mode 100644 index 000000000..f6e789212 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll new file mode 100644 index 000000000..e86c475e5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll new file mode 100644 index 000000000..cca2bd89f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll new file mode 100644 index 000000000..df53660b0 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 000000000..8a6041fa9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll new file mode 100644 index 000000000..9fa2121d4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll new file mode 100644 index 000000000..8a8523039 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll new file mode 100644 index 000000000..66f2fdb30 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll new file mode 100644 index 000000000..be49f0aff Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll new file mode 100644 index 000000000..862f1b5c8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll new file mode 100644 index 000000000..fe5365dd2 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll new file mode 100644 index 000000000..acb4c1ede Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll new file mode 100644 index 000000000..8fb84a0d4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll new file mode 100644 index 000000000..dbd96428d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll new file mode 100644 index 000000000..adc4b5b4a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll new file mode 100644 index 000000000..293cd463e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll new file mode 100644 index 000000000..ec6f318e4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll new file mode 100644 index 000000000..b8fb4b5df Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll new file mode 100644 index 000000000..02efa962f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll new file mode 100644 index 000000000..956573b60 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll new file mode 100644 index 000000000..4402e1386 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll new file mode 100644 index 000000000..871616d2d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll new file mode 100644 index 000000000..e05a333ec Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll new file mode 100644 index 000000000..c1757a561 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll new file mode 100644 index 000000000..d542d7464 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll new file mode 100644 index 000000000..854e5520d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll new file mode 100644 index 000000000..01ee061b5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll new file mode 100644 index 000000000..a2362373c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll new file mode 100644 index 000000000..e392b9ca5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll new file mode 100644 index 000000000..b00ee905f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll new file mode 100644 index 000000000..a8e56ee9e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll new file mode 100644 index 000000000..a156ed304 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 000000000..7f95ee287 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 000000000..1a99d68c4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll new file mode 100644 index 000000000..a293d70f5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll new file mode 100644 index 000000000..5d3d85961 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll new file mode 100644 index 000000000..9519d3dda Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll new file mode 100644 index 000000000..50b2df27c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll new file mode 100644 index 000000000..d7b4faf47 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll new file mode 100644 index 000000000..8c985668b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll new file mode 100644 index 000000000..a6cef86ed Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll new file mode 100644 index 000000000..c6997eb26 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll new file mode 100644 index 000000000..2b8d2612d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 000000000..d7a8f23cf Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 000000000..5f0b98ed1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll new file mode 100644 index 000000000..d802711ce Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll new file mode 100644 index 000000000..52cd3d79d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 000000000..d30d39b0f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll new file mode 100644 index 000000000..7d3b89d26 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll new file mode 100644 index 000000000..0fb143d72 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll new file mode 100644 index 000000000..8ae7d2697 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll new file mode 100644 index 000000000..c29380cc7 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll new file mode 100644 index 000000000..7b0b9105e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 000000000..72e17412a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll new file mode 100644 index 000000000..1f1983b5d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 000000000..678345a43 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll new file mode 100644 index 000000000..8703aa044 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll new file mode 100644 index 000000000..b55f3c326 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll new file mode 100644 index 000000000..40ceb7715 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll new file mode 100644 index 000000000..6908632f5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll new file mode 100644 index 000000000..ed9b04259 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 000000000..338e4db14 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll new file mode 100644 index 000000000..f4a4fc87d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll new file mode 100644 index 000000000..73c9346db Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll new file mode 100644 index 000000000..acd9a0df1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll new file mode 100644 index 000000000..44f6c3146 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 000000000..61202d6d1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll new file mode 100644 index 000000000..1fa47b70c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll new file mode 100644 index 000000000..0b9f80fbe Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll new file mode 100644 index 000000000..f8373f5c6 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll new file mode 100644 index 000000000..f782bbc79 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll new file mode 100644 index 000000000..040cfd5b9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll new file mode 100644 index 000000000..f911034a1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll new file mode 100644 index 000000000..d54cb4b52 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll new file mode 100644 index 000000000..f0c2d53a9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll new file mode 100644 index 000000000..b00edb184 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll new file mode 100644 index 000000000..7ae54eb82 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll new file mode 100644 index 000000000..81e2ae58d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll new file mode 100644 index 000000000..d2d7aeca7 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll new file mode 100644 index 000000000..ebd3000f3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll new file mode 100644 index 000000000..07a1ab4f8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll new file mode 100644 index 000000000..a83221e87 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 000000000..4417c5e6d Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll new file mode 100644 index 000000000..6b7846cf8 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll new file mode 100644 index 000000000..876fcb5f0 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll new file mode 100644 index 000000000..34814c135 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll new file mode 100644 index 000000000..2882ceec3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll new file mode 100644 index 000000000..37ee3351e Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll new file mode 100644 index 000000000..2d5602bf4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll new file mode 100644 index 000000000..9d0c4beb6 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll new file mode 100644 index 000000000..d9822cb4c Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll new file mode 100644 index 000000000..e67ffa39b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll new file mode 100644 index 000000000..91b8927e1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll new file mode 100644 index 000000000..af89489e1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll new file mode 100644 index 000000000..50e378854 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll new file mode 100644 index 000000000..ae64d99a7 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll new file mode 100644 index 000000000..68b989c8a Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll new file mode 100644 index 000000000..b0d1a486b Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll new file mode 100644 index 000000000..9c060de28 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll new file mode 100644 index 000000000..8b3e3f8d4 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll new file mode 100644 index 000000000..5b25fed2f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll new file mode 100644 index 000000000..3fb543958 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll new file mode 100644 index 000000000..36c0419f6 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll new file mode 100644 index 000000000..b0d46d295 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll new file mode 100644 index 000000000..f5522e7d3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll new file mode 100644 index 000000000..798ca6ee1 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll new file mode 100644 index 000000000..b3563248f Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll new file mode 100644 index 000000000..c3fcb9fc6 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll new file mode 100644 index 000000000..0d2b46cd3 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll new file mode 100644 index 000000000..a3968c570 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs new file mode 100644 index 000000000..4840727df --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.HttpApi")] +[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.HttpApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.HttpApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache new file mode 100644 index 000000000..12a3eac54 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +94f9b64dcf0b41a51414f70a1863bfe9dba64818 diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.assets.cache new file mode 100644 index 000000000..257c92a22 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.assets.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.CopyComplete b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.FileListAbsolute.txt b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..afbe0edf5 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csproj.FileListAbsolute.txt @@ -0,0 +1,540 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Identity.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Session.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.CSharp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.ObjectPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.WebEncoders.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.JSInterop.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Net.Http.Headers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Registry.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\mscorlib.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\netstandard.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.AppContext.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Buffers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Concurrent.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Immutable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.NonGeneric.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Specialized.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Annotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.EventBasedAsync.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.TypeConverter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.DataSetExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.DiagnosticSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.FileVersionInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Process.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.StackTrace.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tools.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tracing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Dynamic.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Calendars.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.Brotli.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.ZipFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.DriveInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Watcher.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.IsolatedStorage.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.MemoryMappedFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipelines.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipes.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.UnmanagedMemoryStream.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Expressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Queryable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Memory.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.HttpListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Mail.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NameResolution.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NetworkInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Ping.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Requests.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.ServicePoint.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebClient.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebHeaderCollection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.Client.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.Vectors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ObjectModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.DispatchProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.ILGeneration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.Lightweight.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Metadata.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.TypeExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Reader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.ResourceManager.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Writer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Handles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.WindowsRuntime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Intrinsics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Loader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Formatters.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.AccessControl.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Claims.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Algorithms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Cng.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Csp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.X509Certificates.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Permissions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.SecureString.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceModel.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceProcess.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.CodePages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encodings.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.RegularExpressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Channels.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Overlapped.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Dataflow.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Thread.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.ThreadPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Timer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.Local.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ValueTuple.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.HttpUtility.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.ReaderWriter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlSerializer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\WindowsBase.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.deps.json +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cors.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Identity.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Session.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.CSharp.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Hosting.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Http.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Console.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.ObjectPool.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.WebEncoders.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.JSInterop.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Net.Http.Headers.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Registry.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\mscorlib.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\netstandard.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.AppContext.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Buffers.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Concurrent.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Immutable.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.NonGeneric.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Specialized.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Annotations.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.DataAnnotations.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.EventBasedAsync.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.TypeConverter.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Configuration.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Console.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Core.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.Common.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.DataSetExtensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Contracts.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Debug.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.DiagnosticSource.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.EventLog.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.FileVersionInfo.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Process.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.StackTrace.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tools.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TraceSource.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tracing.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Dynamic.Runtime.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Calendars.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.Brotli.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.FileSystem.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.ZipFile.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.DriveInfo.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Watcher.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.IsolatedStorage.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.MemoryMappedFiles.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipelines.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipes.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.UnmanagedMemoryStream.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Expressions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Parallel.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Queryable.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Memory.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Http.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.HttpListener.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Mail.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NameResolution.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NetworkInformation.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Ping.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Requests.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Security.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.ServicePoint.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Sockets.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebClient.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebHeaderCollection.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebProxy.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.Client.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.Vectors.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ObjectModel.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.DispatchProxy.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.ILGeneration.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.Lightweight.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Metadata.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.TypeExtensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Reader.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.ResourceManager.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Writer.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Handles.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.WindowsRuntime.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Intrinsics.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Loader.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Numerics.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Formatters.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Json.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Xml.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.AccessControl.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Claims.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Algorithms.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Cng.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Csp.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Encoding.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Primitives.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.X509Certificates.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Xml.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Permissions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.Windows.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.SecureString.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceModel.Web.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceProcess.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.CodePages.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encodings.Web.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.RegularExpressions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Channels.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Overlapped.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Dataflow.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Parallel.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Thread.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.ThreadPool.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Timer.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.Local.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ValueTuple.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.HttpUtility.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.Extensions.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Linq.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.ReaderWriter.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Serialization.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XDocument.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlDocument.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlSerializer.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.XDocument.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\refs\WindowsBase.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Application.Contracts.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Domain.Shared.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.ApiGateway.Domain.Shared.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.csproj.CopyComplete +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\apigateway\LINGYUN.ApiGateway.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.ApiGateway.HttpApi.pdb diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache new file mode 100644 index 000000000..fd2218849 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll new file mode 100644 index 000000000..6412412e5 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.dll differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb new file mode 100644 index 000000000..2a4d642ca Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.ApiGateway.HttpApi.pdb differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs new file mode 100644 index 000000000..4840727df --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.ApiGateway.HttpApi")] +[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.HttpApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.ApiGateway.HttpApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache new file mode 100644 index 000000000..12a3eac54 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +94f9b64dcf0b41a51414f70a1863bfe9dba64818 diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.assets.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.assets.cache new file mode 100644 index 000000000..51970a4f9 Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.assets.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache new file mode 100644 index 000000000..ed5c088ef Binary files /dev/null and b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/Debug/netstandard2.0/LINGYUN.ApiGateway.HttpApi.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.cache new file mode 100644 index 000000000..a2318af61 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "gemwr+aMO6Yf5lvbfied7KPI1gL6UaOFvt0uObUfs9gLc8vPoSC+wgqeuif/IMgX6Bph4kRmqBy9xzRGQWPiAA==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.dgspec.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.dgspec.json new file mode 100644 index 000000000..2e1ef4ba5 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.dgspec.json @@ -0,0 +1,210 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.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" + } + } + }, + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.csproj", + "projectName": "LINGYUN.ApiGateway.HttpApi", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\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": [ + "netcoreapp3.1" + ], + "sources": { + "D:\\NugetLocal": {}, + "http://10.21.15.28:8081/repository/nuget-hosted/": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "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" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Volo.Abp.AspNetCore.Mvc": { + "target": "Package", + "version": "[2.7.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "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.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.props b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.props new file mode 100644 index 000000000..cc9562941 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + 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) + + + + Volo.Abp.AspNetCore.Mvc + 2.7.0 + Content + False + Properties\launchSettings.json + + + + C:\Users\iVarKey\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.3 + + \ No newline at end of file diff --git a/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.targets b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.csproj.nuget.g.targets new file mode 100644 index 000000000..5155aa6c7 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/LINGYUN.ApiGateway.HttpApi.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.HttpApi/obj/project.assets.json b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.assets.json new file mode 100644 index 000000000..8af152e73 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.assets.json @@ -0,0 +1,4743 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "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/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Metadata/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "3.1.2", + "Newtonsoft.Json": "12.0.2", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2", + "Microsoft.Extensions.DependencyModel": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.3", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.3.0]" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.CSharp": "3.3.0", + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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.DependencyModel/3.1.2": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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.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/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "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/_._": {} + } + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.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": {} + } + }, + "NUglify/1.5.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NUglify.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", + "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.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/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", + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/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", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "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/_._": {} + }, + "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/_._": {} + }, + "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.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "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.5.2": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.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.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Json/4.7.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.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.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + } + }, + "Volo.Abp.AspNetCore/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Auditing": "2.7.0", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.Security": "2.7.0", + "Volo.Abp.UI": "2.7.0", + "Volo.Abp.Uow": "2.7.0", + "Volo.Abp.Validation": "2.7.0", + "Volo.Abp.VirtualFileSystem": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "3.1.2", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "3.1.2", + "Microsoft.AspNetCore.Mvc.Versioning": "4.1.0", + "Volo.Abp.ApiVersioning.Abstractions": "2.7.0", + "Volo.Abp.AspNetCore": "2.7.0", + "Volo.Abp.AspNetCore.Mvc.Contracts": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.UI": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + }, + "contentFiles": { + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Ddd.Application": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.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/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.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.Minify/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.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.UI/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.UI.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.UI.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.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.JsonPatch/3.1.2": { + "sha512": "fdrF8gZnWy/sAtRgV6IMRr9V6t8nfTqS6VpzPUnCqe8vFnWlJP/J45LULpQfRCuyq7Mdk1qoDOnT9S9qI0Exqw==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.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.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "sha512": "pa3e4g6ppyn8fJHYxJCuMfCqIp2e8VWF2Cgl4XmQV3dnJHoGMZnZFnmnCNVsdQKbLTFpDiox2r48/KDo0czV2Q==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "sha512": "/4EqGr6fZWqKGh44iWqnHktattiEEMu4QpNaEoWGepLdRme+hS+9bxUDO7SwVGG8pdcDf2EAUEZ/FqoViCYDIA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", + "microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "sha512": "AcUZX2rkjccGaBosUfu5PYdzSM3/FkmC0y9UyyoneXz/iVGiLUeXZZtGOzYPxpkg5G1yyMtag50BCq6yMm0mTA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "sha512": "QuFIocMUP8K9+QrjLNio6uD3CE805afEJNz9qaEPl0ah2D2iQrmEW3bD5+LfathtdVS4MkmmgEVrhJBP1yFOFA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.versioning/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "icon.png", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.pdb", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.pdb", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.xml", + "microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.versioning.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "sha512": "VttbHyOJLKtaW57Zv7wUaKmgx6EZ5O7FjXMrBMzQu6DXfFTW79le/rzDeBcqhGeeji2rKuzBMrehyCbRal+reA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml", + "microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "sha512": "cDKEoHdg3icjLrn9EJ4KIkJG+ahU1YouhB0J8EARhj6fTqA/3oUneak0hWbToLOBLOTePu/Oc1QEA4mwmMEYVA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/2.9.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "sha512": "hK0BGWD2ZlTCZ/KD84LQrD95lwJuRg8++uVGeiLq+klmcsNf3g7j/QvXowZX5Wi+oL9egCFxI7d3A4GtpQAl0A==", + "type": "package", + "path": "microsoft.codeanalysis.common/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.3.3.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "sha512": "C0acBZTXLgi72UpV+E2zT+joclyPxNQ+zuHnvE0bS6hJA4i7kBBdW7qaLEwVP6a9MrrtL869StzvXqMc/0PvTg==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "sha512": "blQr2sK7c8XhmImjUf/4KOlhJJ3mxHuUj2drw+0gwH2rf+/18C/1g3CJN5DZ/2IHsFvYFbb9zcnrXor5+mZI+w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml", + "microsoft.codeanalysis.razor.3.1.2.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.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/netstandard2.0/Microsoft.CSharp.xml", + "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.7.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.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.DependencyModel/3.1.2": { + "sha512": "AZR4ChHbwEHArC6iuLyf5Pr7BANayuVGcDUzuF+HoX5P1MTxFnyJu7cYOgRwPWAgIDZftqqeOm4LbGIQnQXsTw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.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/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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" + ] + }, + "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" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "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" + ] + }, + "NUglify/1.5.13": { + "sha512": "EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "type": "package", + "path": "nuglify/1.5.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.5.13.nupkg.sha512", + "nuglify.nuspec" + ] + }, + "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.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.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.5.2": { + "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "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.5.2.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.Encoding.CodePages/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.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.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "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.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "sha512": "IVb+mn9clcLztIixCuZaUHzOpPeHOMKm+LKsvViNblmuyYstJJyaquMTrnEV/jlWbICPDeBux5W+Eu50tD3tNg==", + "type": "package", + "path": "volo.abp.apiversioning.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll", + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.pdb", + "volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512", + "volo.abp.apiversioning.abstractions.nuspec" + ] + }, + "Volo.Abp.AspNetCore/2.7.0": { + "sha512": "V0Xmn2dqjpdXYf6xOWZHW5t+qipr3ReAgYrcCsP0GMdEtuLLa0SBPk2bk9V7cfwkAgYrtETFkSbdYLhOsm/OFg==", + "type": "package", + "path": "volo.abp.aspnetcore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "content/Properties/launchSettings.json", + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.pdb", + "volo.abp.aspnetcore.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.nuspec" + ] + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "sha512": "60bM5mtr+bQD0gaDZQ5DZ8egApJt92MtNcW6XrxCh7LMoJJJZhMRyicx6IGqztwyvV3r7+YqYpI0FjtDfWsPfg==", + "type": "package", + "path": "volo.abp.aspnetcore.mvc/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "content/Properties/launchSettings.json", + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.pdb", + "volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.mvc.nuspec" + ] + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "sha512": "J2AsYy3P1UGWBdYwj/uhEoNpw9/fjIHYeHV748BHzV4bv6Zqb/c97h2pWhkmk1gL9r3+5NsZJBd/mktNA9iLPw==", + "type": "package", + "path": "volo.abp.aspnetcore.mvc.contracts/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.pdb", + "volo.abp.aspnetcore.mvc.contracts.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.mvc.contracts.nuspec" + ] + }, + "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/2.7.0": { + "sha512": "qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "type": "package", + "path": "volo.abp.http/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Http.dll", + "lib/netstandard2.0/Volo.Abp.Http.pdb", + "volo.abp.http.2.7.0.nupkg.sha512", + "volo.abp.http.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.Minify/2.7.0": { + "sha512": "DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "type": "package", + "path": "volo.abp.minify/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Minify.dll", + "lib/netstandard2.0/Volo.Abp.Minify.pdb", + "volo.abp.minify.2.7.0.nupkg.sha512", + "volo.abp.minify.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.UI/2.7.0": { + "sha512": "YjDr9Fb5HAvejzLNra9RGjJSwtOKY5k7+STMNWkCVwpPagLOxyAUvtytseOoWg3n7FGxYVvUYJYlRcgM8kX9vA==", + "type": "package", + "path": "volo.abp.ui/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.UI.dll", + "lib/netstandard2.0/Volo.Abp.UI.pdb", + "volo.abp.ui.2.7.0.nupkg.sha512", + "volo.abp.ui.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.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": { + ".NETCoreApp,Version=v3.1": [ + "LINGYUN.ApiGateway.Application.Contracts >= 1.0.0", + "Volo.Abp.AspNetCore.Mvc >= 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.HttpApi\\LINGYUN.ApiGateway.HttpApi.csproj", + "projectName": "LINGYUN.ApiGateway.HttpApi", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\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": [ + "netcoreapp3.1" + ], + "sources": { + "D:\\NugetLocal": {}, + "http://10.21.15.28:8081/repository/nuget-hosted/": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "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" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Volo.Abp.AspNetCore.Mvc": { + "target": "Package", + "version": "[2.7.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "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.HttpApi/obj/project.nuget.cache b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.nuget.cache new file mode 100644 index 000000000..f603e13c1 --- /dev/null +++ b/aspnet-core/modules/apigateway/LINGYUN.ApiGateway.HttpApi/obj/project.nuget.cache @@ -0,0 +1,121 @@ +{ + "version": 2, + "dgSpecHash": "4V/VOnOMu3keJzdqrHG+D8PFblomz111zYeLN1EFd4w6LYp9LX/SMsKd7rDDOE0QItuznAI2REZ6XSBMct3jzA==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\apigateway\\LINGYUN.ApiGateway.HttpApi\\LINGYUN.ApiGateway.HttpApi.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.jsonpatch\\3.1.2\\microsoft.aspnetcore.jsonpatch.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.aspnetcore.mvc.newtonsoftjson\\3.1.2\\microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\3.1.2\\microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\3.1.2\\microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning\\4.1.0\\microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\3.1.2\\microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\2.9.3\\microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.common\\3.3.0\\microsoft.codeanalysis.common.3.3.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.3.0\\microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.razor\\3.1.2\\microsoft.codeanalysis.razor.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.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.dependencymodel\\3.1.2\\microsoft.extensions.dependencymodel.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:\\Users\\iVarKey\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.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:\\Users\\iVarKey\\.nuget\\packages\\nuglify\\1.5.13\\nuglify.1.5.13.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.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.metadata\\1.6.0\\system.reflection.metadata.1.6.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.5.2\\system.runtime.compilerservices.unsafe.4.5.2.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.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.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.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.apiversioning.abstractions\\2.7.0\\volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore\\2.7.0\\volo.abp.aspnetcore.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore.mvc\\2.7.0\\volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore.mvc.contracts\\2.7.0\\volo.abp.aspnetcore.mvc.contracts.2.7.0.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\\2.7.0\\volo.abp.http.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.minify\\2.7.0\\volo.abp.minify.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.ui\\2.7.0\\volo.abp.ui.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/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj new file mode 100644 index 000000000..7b26376aa --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj @@ -0,0 +1,17 @@ + + + + netstandard2.0 + + + + + + + + + + + + + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.deps.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.deps.json new file mode 100644 index 000000000..501c1896c --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.deps.json @@ -0,0 +1,1786 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.Abp.PermissionManagement.Application.Contracts/1.0.0": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.PermissionManagement.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.PermissionManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Validation": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.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" + } + } + } + } + }, + "libraries": { + "LINGYUN.Abp.PermissionManagement.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.PermissionManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/z7gILfBmAlF3xgAGJqRDl0oE8viIBaPybec0iLWQG2PxJaKJI4KXb8xPZPL5SmV9D9eua2pvJVXmmFCnHhM/g==", + "path": "volo.abp.permissionmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.permissionmanagement.domain.shared.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" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll new file mode 100644 index 000000000..5d8a3291a Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb new file mode 100644 index 000000000..57785449e Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfo.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfo.cs new file mode 100644 index 000000000..d5270cb58 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.PermissionManagement.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.Abp.PermissionManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.PermissionManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfoInputs.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 000000000..931b5165a --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +239b8c05788d4dd872e6152122bdfe5f2cd00fc3 diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.assets.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.assets.cache new file mode 100644 index 000000000..e9036b0c3 Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.assets.cache differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.CoreCompileInputs.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..115167779 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +faf4ab9b7e50b83c3112bd30f90b36b076ce9583 diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.FileListAbsolute.txt b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..6bd250454 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.CoreCompileInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csprojAssemblyReference.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csprojAssemblyReference.cache new file mode 100644 index 000000000..3665cbc0e Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll new file mode 100644 index 000000000..5d8a3291a Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb new file mode 100644 index 000000000..57785449e Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.dgspec.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.dgspec.json new file mode 100644 index 000000000..ae093b49d --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.PermissionManagement.Domain.Shared": { + "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/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.props b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.props new file mode 100644 index 000000000..67ca95c64 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.targets b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.assets.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.assets.json new file mode 100644 index 000000000..6d74a79aa --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.assets.json @@ -0,0 +1,4174 @@ +{ + "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.PermissionManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Validation": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.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": {} + } + } + } + }, + "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.PermissionManagement.Domain.Shared/2.7.0": { + "sha512": "/z7gILfBmAlF3xgAGJqRDl0oE8viIBaPybec0iLWQG2PxJaKJI4KXb8xPZPL5SmV9D9eua2pvJVXmmFCnHhM/g==", + "type": "package", + "path": "volo.abp.permissionmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb", + "volo.abp.permissionmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.domain.shared.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" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.0": [ + "NETStandard.Library >= 2.0.3", + "Volo.Abp.Ddd.Application >= 2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared >= 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\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.PermissionManagement.Domain.Shared": { + "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/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.nuget.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.nuget.cache new file mode 100644 index 000000000..d58b579c8 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application.Contracts/obj/project.nuget.cache @@ -0,0 +1,104 @@ +{ + "version": 2, + "dgSpecHash": "HHX0HTnQz0+s5lwl9IVx/OcpGcSxcHQ/VHaW6t1MO98vw0rBXOiKFwz6OQx2FAI6Vy1ShMRO0wMTm7BUjkLd4w==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application.Contracts\\LINGYUN.Abp.PermissionManagement.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.permissionmanagement.domain.shared\\2.7.0\\volo.abp.permissionmanagement.domain.shared.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/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN.Abp.PermissionManagement.Application.csproj b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN.Abp.PermissionManagement.Application.csproj new file mode 100644 index 000000000..ad598bac1 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN.Abp.PermissionManagement.Application.csproj @@ -0,0 +1,13 @@ + + + + netstandard2.0 + + + + + + + + + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/AbpPermissionManagementApplicationModule.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/AbpPermissionManagementApplicationModule.cs new file mode 100644 index 000000000..cb926bb7f --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/AbpPermissionManagementApplicationModule.cs @@ -0,0 +1,13 @@ +using Volo.Abp.Modularity; +using Volo.Abp.PermissionManagement; + +namespace LINGYUN.Abp.PermissionManagement +{ + [DependsOn( + typeof(AbpPermissionManagementDomainModule), + typeof(AbpPermissionManagementApplicationContractsModule) + )] + public class AbpPermissionManagementApplicationModule : AbpModule + { + } +} diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/PermissionAppService.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/PermissionAppService.cs new file mode 100644 index 000000000..0561c1b08 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/LINGYUN/Abp/PermissionManagement/PermissionAppService.cs @@ -0,0 +1,157 @@ +using Microsoft.AspNetCore.Authorization; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Options; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Services; +using Volo.Abp.Authorization.Permissions; +using Volo.Abp.DependencyInjection; +using Volo.Abp.MultiTenancy; +using Volo.Abp.PermissionManagement; +using Volo.Abp.Users; + +namespace LINGYUN.Abp.PermissionManagement +{ + [Authorize] + [Dependency(ServiceLifetime.Transient, ReplaceServices = true)] + [ExposeServices(typeof(IPermissionAppService), typeof(PermissionAppService))] + public class PermissionAppService : ApplicationService, IPermissionAppService + { + protected PermissionManagementOptions Options { get; } + protected IPermissionGrantRepository PermissionGrantRepository { get; } + protected IPermissionDefinitionManager PermissionDefinitionManager { get; } + public PermissionAppService( + IPermissionGrantRepository permissionGrantRepository, + IPermissionDefinitionManager permissionDefinitionManager, + IOptions options) + { + Options = options.Value; + PermissionGrantRepository = permissionGrantRepository; + PermissionDefinitionManager = permissionDefinitionManager; + } + public virtual async Task GetAsync(string providerName, string providerKey) + { + var permissionListResult = new GetPermissionListResultDto + { + EntityDisplayName = providerKey, + Groups = new List() + }; + var multiTenancySide = CurrentTenant.GetMultiTenancySide(); + var permissionGroups = PermissionDefinitionManager.GetGroups(); + IEnumerable permissions = + await PermissionGrantRepository.GetListAsync(providerName, providerKey); + + // 如果是当前用户权限,还需要查询角色权限 + if (providerName.Equals("U")) + { + var userId = CurrentUser.GetId().ToString(); + if (providerKey.Equals(userId)) + { + foreach (var role in CurrentUser.Roles) + { + var rolePermissions = await PermissionGrantRepository + .GetListAsync(RolePermissionValueProvider.ProviderName, role); + permissions = permissions.Union(rolePermissions); + } + } + } + foreach (var permissionGroup in permissionGroups) + { + var groupDto = new PermissionGroupDto + { + Name = permissionGroup.Name, + DisplayName = permissionGroup.DisplayName.Localize(StringLocalizerFactory), + Permissions = new List() + }; + foreach (var permission in permissionGroup.GetPermissionsWithChildren()) + { + if (!permission.IsEnabled) + { + continue; + } + + if (permission.Providers.Any() && !permission.Providers.Contains(providerName)) + { + continue; + } + + if (!permission.MultiTenancySide.HasFlag(multiTenancySide)) + { + continue; + } + + var grantInfoDto = new PermissionGrantInfoDto + { + Name = permission.Name, + DisplayName = permission.DisplayName.Localize(StringLocalizerFactory), + ParentName = permission.Parent?.Name, + AllowedProviders = permission.Providers, + GrantedProviders = new List() + }; + + var grantedPermissions = permissions.Where(p => p.Name.Equals(permission.Name)); + + foreach (var grantedPermission in grantedPermissions) + { + grantInfoDto.IsGranted = true; + grantInfoDto.GrantedProviders.Add(new ProviderInfoDto + { + ProviderKey = grantedPermission.ProviderKey, + ProviderName = grantedPermission.ProviderName + }); + } + + groupDto.Permissions.Add(grantInfoDto); + } + + if (groupDto.Permissions.Any()) + { + permissionListResult.Groups.Add(groupDto); + } + } + + return permissionListResult; + } + + public virtual async Task UpdateAsync(string providerName, string providerKey, UpdatePermissionsDto input) + { + await CheckProviderPolicy(providerName); + + var permissions = await PermissionGrantRepository.GetListAsync(providerName, providerKey); + foreach(var permission in input.Permissions) + { + var editPermission = permissions.FirstOrDefault(p => p.Name.Equals(permission.Name)); + if(editPermission == null) + { + if(permission.IsGranted) + { + var permissionGrant = new PermissionGrant(GuidGenerator.Create(), + permission.Name, providerName, providerKey, CurrentTenant.Id); + await PermissionGrantRepository.InsertAsync(permissionGrant); + } + } + else + { + if (!permission.IsGranted) + { + await PermissionGrantRepository.DeleteAsync(editPermission.Id); + } + } + } + } + + protected virtual async Task CheckProviderPolicy(string providerName) + { + var policyName = Options.ProviderPolicies.GetOrDefault(providerName); + if (policyName.IsNullOrEmpty()) + { + throw new AbpException($"No policy defined to get/set permissions for the provider '{policyName}'. Use {nameof(PermissionManagementOptions)} to map the policy."); + } + + await AuthorizationService.CheckAsync(policyName); + } + } +} diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.deps.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.deps.json new file mode 100644 index 000000000..2d269e586 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.deps.json @@ -0,0 +1,1911 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.Abp.PermissionManagement.Application/1.0.0": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "Volo.Abp.PermissionManagement.Application.Contracts": "2.7.0", + "Volo.Abp.PermissionManagement.Domain": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.PermissionManagement.Application.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.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.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.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.PermissionManagement.Application.Contracts/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "Volo.Abp.PermissionManagement.Domain/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Validation": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.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" + } + } + } + } + }, + "libraries": { + "LINGYUN.Abp.PermissionManagement.Application/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.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.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.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.PermissionManagement.Application.Contracts/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-404Xf9wOTx+isIlIgWz6KFcXO5KTieuhJjWaANseLv2xxlfd/LyLSiODdCwLFr7uSU2w0j6OgVG2QVgqUO34QA==", + "path": "volo.abp.permissionmanagement.application.contracts/2.7.0", + "hashPath": "volo.abp.permissionmanagement.application.contracts.2.7.0.nupkg.sha512" + }, + "Volo.Abp.PermissionManagement.Domain/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CbehmR2AAkIlc7lDBvyhrS3lnn3E2iwu8JzbMvj748G6ca4e38AwBB1DZrH8HgfQn1RDnkVBtxXWjyIJBJhE/Q==", + "path": "volo.abp.permissionmanagement.domain/2.7.0", + "hashPath": "volo.abp.permissionmanagement.domain.2.7.0.nupkg.sha512" + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/z7gILfBmAlF3xgAGJqRDl0oE8viIBaPybec0iLWQG2PxJaKJI4KXb8xPZPL5SmV9D9eua2pvJVXmmFCnHhM/g==", + "path": "volo.abp.permissionmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.permissionmanagement.domain.shared.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" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll new file mode 100644 index 000000000..54b4aaa97 Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb new file mode 100644 index 000000000..8d6a3e8ef Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs new file mode 100644 index 000000000..469ff5380 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.PermissionManagement.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.Abp.PermissionManagement.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.PermissionManagement.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache new file mode 100644 index 000000000..c9ae44641 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6ecdccda01e4a4fcdcd9bcb8518978f936f3f065 diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.assets.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.assets.cache new file mode 100644 index 000000000..a52ea329f Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.assets.cache differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csproj.FileListAbsolute.txt b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..8689ac74f --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.deps.json +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.pdb +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.dll +D:\Projects\MicroService\CRM\Vue\vue-abp\aspnet-core\modules\permissions\LINGYUN.Abp.PermissionManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.PermissionManagement.Application.pdb diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache new file mode 100644 index 000000000..7e1324bbf Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll new file mode 100644 index 000000000..54b4aaa97 Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.dll differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb new file mode 100644 index 000000000..8d6a3e8ef Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Application.pdb differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.cache new file mode 100644 index 000000000..3cea3eb13 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "wQ94dQTJb7lSuM/tQfDL5ghoypLr7/jDoVTBZPqfFg09AFREpZtK4YI0Kfgmx8x/kTL7ruOVYDyMfNk7UWqRVA==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.dgspec.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.dgspec.json new file mode 100644 index 000000000..3cc76ca14 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.PermissionManagement.Application.Contracts": { + "target": "Package", + "version": "[2.7.0, )" + }, + "Volo.Abp.PermissionManagement.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/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.props b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.props new file mode 100644 index 000000000..2528351cf --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.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/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.targets b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/LINGYUN.Abp.PermissionManagement.Application.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.assets.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.assets.json new file mode 100644 index 000000000..06a6cd4e1 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.assets.json @@ -0,0 +1,4347 @@ +{ + "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.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.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.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.PermissionManagement.Application.Contracts/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {} + } + }, + "Volo.Abp.PermissionManagement.Domain/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {} + } + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Validation": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.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": {} + } + } + } + }, + "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.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.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.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.PermissionManagement.Application.Contracts/2.7.0": { + "sha512": "404Xf9wOTx+isIlIgWz6KFcXO5KTieuhJjWaANseLv2xxlfd/LyLSiODdCwLFr7uSU2w0j6OgVG2QVgqUO34QA==", + "type": "package", + "path": "volo.abp.permissionmanagement.application.contracts/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.pdb", + "volo.abp.permissionmanagement.application.contracts.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.application.contracts.nuspec" + ] + }, + "Volo.Abp.PermissionManagement.Domain/2.7.0": { + "sha512": "CbehmR2AAkIlc7lDBvyhrS3lnn3E2iwu8JzbMvj748G6ca4e38AwBB1DZrH8HgfQn1RDnkVBtxXWjyIJBJhE/Q==", + "type": "package", + "path": "volo.abp.permissionmanagement.domain/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb", + "volo.abp.permissionmanagement.domain.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.domain.nuspec" + ] + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "sha512": "/z7gILfBmAlF3xgAGJqRDl0oE8viIBaPybec0iLWQG2PxJaKJI4KXb8xPZPL5SmV9D9eua2pvJVXmmFCnHhM/g==", + "type": "package", + "path": "volo.abp.permissionmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb", + "volo.abp.permissionmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.domain.shared.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" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.0": [ + "NETStandard.Library >= 2.0.3", + "Volo.Abp.PermissionManagement.Application.Contracts >= 2.7.0", + "Volo.Abp.PermissionManagement.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\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.PermissionManagement.Application.Contracts": { + "target": "Package", + "version": "[2.7.0, )" + }, + "Volo.Abp.PermissionManagement.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/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.nuget.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.nuget.cache new file mode 100644 index 000000000..0f44d88b6 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Application/obj/project.nuget.cache @@ -0,0 +1,110 @@ +{ + "version": 2, + "dgSpecHash": "wQ94dQTJb7lSuM/tQfDL5ghoypLr7/jDoVTBZPqfFg09AFREpZtK4YI0Kfgmx8x/kTL7ruOVYDyMfNk7UWqRVA==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Application\\LINGYUN.Abp.PermissionManagement.Application.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.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:\\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.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.permissionmanagement.application.contracts\\2.7.0\\volo.abp.permissionmanagement.application.contracts.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.permissionmanagement.domain\\2.7.0\\volo.abp.permissionmanagement.domain.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.permissionmanagement.domain.shared\\2.7.0\\volo.abp.permissionmanagement.domain.shared.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/permissions/LINGYUN.Abp.PermissionManagement.Domain/Class1.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/Class1.cs new file mode 100644 index 000000000..1bb586422 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace LINGYUN.Abp.PermissionManagement +{ + public class Class1 + { + } +} diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN.Abp.PermissionManagement.Domain.csproj b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN.Abp.PermissionManagement.Domain.csproj new file mode 100644 index 000000000..e6e621f98 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN.Abp.PermissionManagement.Domain.csproj @@ -0,0 +1,12 @@ + + + + netstandard2.0 + + + + + + + + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN/Abp/PermissionManagement/PermissionManagementProvider.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN/Abp/PermissionManagement/PermissionManagementProvider.cs new file mode 100644 index 000000000..7e1becbe8 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/LINGYUN/Abp/PermissionManagement/PermissionManagementProvider.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Volo.Abp.Guids; +using Volo.Abp.MultiTenancy; +using Volo.Abp.PermissionManagement; + +namespace LINGYUN.Abp.PermissionManagement +{ + public abstract class PermissionManagementProvider : IPermissionManagementProvider + { + public abstract string Name { get; } + + protected IPermissionGrantRepository PermissionGrantRepository { get; } + + protected IGuidGenerator GuidGenerator { get; } + + protected ICurrentTenant CurrentTenant { get; } + } +} diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfo.cs b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfo.cs new file mode 100644 index 000000000..a1a0c5831 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.PermissionManagement.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.Abp.PermissionManagement.Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.PermissionManagement.Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfoInputs.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfoInputs.cache new file mode 100644 index 000000000..2d26d25b3 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2bf7d8e09f8d1d946d91a3cd5632a2f11859d0c7 diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.assets.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.assets.cache new file mode 100644 index 000000000..d379a0334 Binary files /dev/null and b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/Debug/netstandard2.0/LINGYUN.Abp.PermissionManagement.Domain.assets.cache differ diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.dgspec.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.dgspec.json new file mode 100644 index 000000000..b664804fb --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Domain", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.PermissionManagement.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/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.props b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.props new file mode 100644 index 000000000..67ca95c64 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.targets b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/LINGYUN.Abp.PermissionManagement.Domain.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.assets.json b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.assets.json new file mode 100644 index 000000000..d2638eefa --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.assets.json @@ -0,0 +1,4198 @@ +{ + "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.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.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.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.PermissionManagement.Domain/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.PermissionManagement.Domain.Shared": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {} + } + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Validation": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.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": {} + } + } + } + }, + "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.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.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.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.PermissionManagement.Domain/2.7.0": { + "sha512": "CbehmR2AAkIlc7lDBvyhrS3lnn3E2iwu8JzbMvj748G6ca4e38AwBB1DZrH8HgfQn1RDnkVBtxXWjyIJBJhE/Q==", + "type": "package", + "path": "volo.abp.permissionmanagement.domain/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb", + "volo.abp.permissionmanagement.domain.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.domain.nuspec" + ] + }, + "Volo.Abp.PermissionManagement.Domain.Shared/2.7.0": { + "sha512": "/z7gILfBmAlF3xgAGJqRDl0oE8viIBaPybec0iLWQG2PxJaKJI4KXb8xPZPL5SmV9D9eua2pvJVXmmFCnHhM/g==", + "type": "package", + "path": "volo.abp.permissionmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb", + "volo.abp.permissionmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.permissionmanagement.domain.shared.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" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.0": [ + "NETStandard.Library >= 2.0.3", + "Volo.Abp.PermissionManagement.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\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj", + "projectName": "LINGYUN.Abp.PermissionManagement.Domain", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.Domain.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.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": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.PermissionManagement.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/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.nuget.cache b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.nuget.cache new file mode 100644 index 000000000..a4185df87 --- /dev/null +++ b/aspnet-core/modules/permissions/LINGYUN.Abp.PermissionManagement.Domain/obj/project.nuget.cache @@ -0,0 +1,105 @@ +{ + "version": 2, + "dgSpecHash": "ywdXO2aS764JD0X93GDVygHwvN9BRfJQk8zaG/se5a6Z6ISHSoLCqu0eweTKfBGHgc6a2sZRJopwA5Z/Ax4A1Q==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\permissions\\LINGYUN.Abp.PermissionManagement.Domain\\LINGYUN.Abp.PermissionManagement.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\\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.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:\\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.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.permissionmanagement.domain\\2.7.0\\volo.abp.permissionmanagement.domain.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.permissionmanagement.domain.shared\\2.7.0\\volo.abp.permissionmanagement.domain.shared.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/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj new file mode 100644 index 000000000..7bc371c1a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj @@ -0,0 +1,25 @@ + + + + netstandard2.0 + + + + + + + + + + + + + + + + + + + + + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationContractsModule.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationContractsModule.cs new file mode 100644 index 000000000..a341f50ba --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationContractsModule.cs @@ -0,0 +1,29 @@ +using Volo.Abp.Application; +using Volo.Abp.Localization; +using Volo.Abp.Modularity; +using Volo.Abp.SettingManagement; +using Volo.Abp.SettingManagement.Localization; +using Volo.Abp.VirtualFileSystem; + +namespace LINGYUN.Abp.SettingManagement +{ + [DependsOn(typeof(AbpDddApplicationModule))] + [DependsOn(typeof(AbpSettingManagementDomainSharedModule))] + public class AbpSettingManagementApplicationContractsModule : AbpModule + { + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.FileSets.AddEmbedded(); + }); + + Configure(options => + { + options.Resources + .Get() + .AddVirtualJson("/Multicolin/Abp/SettingManagement/Localization/ApplicationContracts"); + }); + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissionProvider.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissionProvider.cs new file mode 100644 index 000000000..e0c0ae567 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissionProvider.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Volo.Abp.Authorization.Permissions; +using Volo.Abp.Localization; +using Volo.Abp.SettingManagement.Localization; + +namespace LINGYUN.Abp.SettingManagement +{ + public class AbpSettingManagementPermissionProvider : PermissionDefinitionProvider + { + public override void Define(IPermissionDefinitionContext context) + { + var settingPermissionGroup = context.AddGroup(AbpSettingManagementPermissions.GroupName, L("Permission:SettingManagement")); + + settingPermissionGroup.AddPermission(AbpSettingManagementPermissions.Settings.Default, L("Permission:Settings")); + settingPermissionGroup.AddPermission(AbpSettingManagementPermissions.Settings.Update, L("Permission:Update")); + } + + private static LocalizableString L(string name) + { + return LocalizableString.Create(name); + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissions.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissions.cs new file mode 100644 index 000000000..eaa87cf0f --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementPermissions.cs @@ -0,0 +1,14 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class AbpSettingManagementPermissions + { + public const string GroupName = "AbpSettingManagement"; + + public class Settings + { + public const string Default = GroupName + ".Settings"; + + public const string Update = GroupName + ".Update"; + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementRemoteServiceConsts.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementRemoteServiceConsts.cs new file mode 100644 index 000000000..3035f4deb --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/AbpSettingManagementRemoteServiceConsts.cs @@ -0,0 +1,7 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class AbpSettingManagementRemoteServiceConsts + { + public const string RemoteServiceName = "AbpSettingManagement"; + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/AccountSettingsDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/AccountSettingsDto.cs new file mode 100644 index 000000000..038571024 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/AccountSettingsDto.cs @@ -0,0 +1,14 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class AccountSettingsDto + { + /// + /// 是否允许用户自行注册帐户 + /// + public bool IsSelfRegistrationEnabled { get; set; } + /// + /// 服务器是否将允许用户使用本地帐户进行身份验证 + /// + public bool EnableLocalLogin { get; set; } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/IdentitySettingsDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/IdentitySettingsDto.cs new file mode 100644 index 000000000..edf706e9e --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/IdentitySettingsDto.cs @@ -0,0 +1,83 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace LINGYUN.Abp.SettingManagement +{ + public class IdentitySettingsDto + { + public IdentityPasswordSettings Password { get; set; } + public IdentityLockoutSettings Lockout { get; set; } + public IdentitySignInSettings SignIn { get; set; } + public IdentityUserSettings User { get; set; } + } + + public class IdentityPasswordSettings + { + /// + /// 密码的最小长度 + /// + public int RequiredLength { get; set; } + /// + /// 密码必须包含唯一字符的数量 + /// + public int RequiredUniqueChars { get; set; } + /// + /// 密码是否必须包含非字母数字 + /// + public bool RequireNonAlphanumeric { get; set; } + /// + /// 密码是否必须包含小写字母 + /// + public bool RequireLowercase { get; set; } + /// + /// 密码是否必须包含大写字母 + /// + public bool RequireUppercase { get; set; } + /// + /// 密码是否必须包含数字 + /// + public bool RequireDigit { get; set; } + } + public class IdentityLockoutSettings + { + /// + /// 允许新用户被锁定 + /// + public bool AllowedForNewUsers { get; set; } + /// + /// 当锁定发生时用户被的锁定的时间(秒) + /// + public int LockoutDuration { get; set; } + /// + /// 如果启用锁定, 当用户被锁定前失败的访问尝试次数 + /// + public int MaxFailedAccessAttempts { get; set; } + } + public class IdentitySignInSettings + { + /// + /// 登录时是否需要验证电子邮箱 + /// + public bool RequireConfirmedEmail { get; set; } + /// + /// 用户是否可以确认手机号码 + /// + public bool EnablePhoneNumberConfirmation { get; set; } + /// + /// 登录时是否需要验证手机号码 + /// + public bool RequireConfirmedPhoneNumber { get; set; } + } + public class IdentityUserSettings + { + /// + /// 是否允许用户更新用户名 + /// + public bool IsUserNameUpdateEnabled { get; set; } + /// + /// 是否允许用户更新电子邮箱 + /// + public bool IsEmailUpdateEnabled { get; set; } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/LocalizationSettingsDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/LocalizationSettingsDto.cs new file mode 100644 index 000000000..966363e36 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/LocalizationSettingsDto.cs @@ -0,0 +1,10 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class LocalizationSettingsDto + { + /// + /// 应用程序的默认语言 + /// + public string DefaultLanguage { get; set; } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/SettingDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/SettingDto.cs new file mode 100644 index 000000000..21177ff3a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/SettingDto.cs @@ -0,0 +1,15 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class SettingDto + { + public string Name { get; set; } + + public string DisplayName { get; set; } + + public string Description { get; set; } + + public string Value { get; set; } + + public string DefaultValue { get; set; } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingDto.cs new file mode 100644 index 000000000..9eb1f0ec6 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingDto.cs @@ -0,0 +1,8 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class UpdateSettingDto + { + public string Name { get; set; } + public string Value { get; set; } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingsDto.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingsDto.cs new file mode 100644 index 000000000..378ff0236 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Dto/UpdateSettingsDto.cs @@ -0,0 +1,11 @@ +namespace LINGYUN.Abp.SettingManagement +{ + public class UpdateSettingsDto + { + public UpdateSettingDto[] Settings { get; set; } + public UpdateSettingsDto() + { + Settings = new UpdateSettingDto[0]; + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/ISettingAppService.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/ISettingAppService.cs new file mode 100644 index 000000000..8f1d15c70 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/ISettingAppService.cs @@ -0,0 +1,14 @@ +using JetBrains.Annotations; +using System.Threading.Tasks; +using Volo.Abp.Application.Dtos; +using Volo.Abp.Application.Services; + +namespace LINGYUN.Abp.SettingManagement +{ + public interface ISettingAppService : IApplicationService + { + Task> GetAsync([NotNull] string providerName, [NotNull] string providerKey); + + Task UpdateAsync([NotNull] string providerName, [NotNull] string providerKey, UpdateSettingsDto input); + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/en.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/en.json new file mode 100644 index 000000000..ec938f4fd --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/en.json @@ -0,0 +1,8 @@ +{ + "culture": "en", + "texts": { + "Permission:SettingManagement": "SettingManagement", + "Permission:Settings": "Settings", + "Permission:Update": "Update" + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-CN.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-CN.json new file mode 100644 index 000000000..0952a5984 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-CN.json @@ -0,0 +1,8 @@ +{ + "culture": "zh-CN", + "texts": { + "Permission:SettingManagement": "系统设置", + "Permission:Settings": "配置管理", + "Permission:Update": "变更" + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-Hans.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-Hans.json new file mode 100644 index 000000000..9312ce80e --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN/Abp/SettingManagement/Localization/ApplicationContracts/zh-Hans.json @@ -0,0 +1,8 @@ +{ + "culture": "zh-Hans", + "texts": { + "Permission:SettingManagement": "系统设置", + "Permission:Settings": "配置管理", + "Permission:Update": "变更" + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.deps.json new file mode 100644 index 000000000..4715b1090 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.deps.json @@ -0,0 +1,1786 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.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.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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" + } + } + } + } + }, + "libraries": { + "LINGYUN.Abp.SettingManagement.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.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..51ea2927a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..6a61fd0e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.deps.json new file mode 100644 index 000000000..9291b1a72 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.deps.json @@ -0,0 +1,1786 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "Multicolin.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "NETStandard.Library": "2.0.3", + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.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.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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" + } + } + } + } + }, + "libraries": { + "Multicolin.Abp.SettingManagement.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.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..6f13733a3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..e2ca4cfdc Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs new file mode 100644 index 000000000..8a7830eb9 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.SettingManagement.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.Abp.SettingManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.SettingManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 000000000..382884d71 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0d73f3d71555759e6f341a5729e4b753832312ae diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.assets.cache new file mode 100644 index 000000000..48f81c069 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.CoreCompileInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..61575641f --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0911609dc8b0ec0ed0681b9bb0ea531d27fcc499 diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..1d624784c --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.CoreCompileInputs.cache diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache new file mode 100644 index 000000000..8438368d4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..51ea2927a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..6a61fd0e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs new file mode 100644 index 000000000..f29f04e42 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Multicolin.Abp.SettingManagement.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("Multicolin.Abp.SettingManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Multicolin.Abp.SettingManagement.Application.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 000000000..2f1f3708a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f63bdf5c701e7b55bc2ab8a0f1fb6dc719d55c5a diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.assets.cache new file mode 100644 index 000000000..c7408dad0 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..5f0aea5d0 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application.Contracts\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.pdb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache new file mode 100644 index 000000000..8c9d89718 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..6f13733a3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..e2ca4cfdc Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache new file mode 100644 index 000000000..01fe71608 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "3n18PdFcNO/tj17C3EnivU/ByeIX+Qt5cmaUWn0C1QEm0Jp8yT8KTbFD4O7aChrLv6jjYMljHDxHfhYwSVlwLg==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json new file mode 100644 index 000000000..b7e2809eb --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props new file mode 100644 index 000000000..67ca95c64 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache new file mode 100644 index 000000000..a326909f4 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "//6OXEAKSzQNzS4Xwzoi47QxIqviUNbULZhubqVc/eJWf9iu52Yo0+kw+cLjphKdaR73BWaoNv3X/zQnSMUb3w==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json new file mode 100644 index 000000000..f7b7f8afc --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "Multicolin.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.props new file mode 100644 index 000000000..2528351cf --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.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/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/Multicolin.Abp.SettingManagement.Application.Contracts.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.assets.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.assets.json new file mode 100644 index 000000000..0d8a2ea1a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.assets.json @@ -0,0 +1,4174 @@ +{ + "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.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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": {} + } + } + } + }, + "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.SettingManagement.Domain.Shared/2.7.0": { + "sha512": "Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "type": "package", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.pdb", + "volo.abp.settingmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.settingmanagement.domain.shared.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" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.0": [ + "NETStandard.Library >= 2.0.3", + "Volo.Abp.Ddd.Application >= 2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared >= 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\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.nuget.cache new file mode 100644 index 000000000..6fc5fa274 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application.Contracts/obj/project.nuget.cache @@ -0,0 +1,104 @@ +{ + "version": 2, + "dgSpecHash": "oigHOQDh8BG8ZhtbaF6z8wFc/4ODaWXNFJ+9Z5YduSL0DGXVwq77p9ZVaeCHFXnjfUyRWkxK37NreCMlP61TeA==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.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.settingmanagement.domain.shared\\2.7.0\\volo.abp.settingmanagement.domain.shared.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/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj new file mode 100644 index 000000000..9611d9e3b --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj @@ -0,0 +1,15 @@ + + + + netstandard2.0 + + + + + + + + + + + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs new file mode 100644 index 000000000..318b8d6ac --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs @@ -0,0 +1,13 @@ +using Volo.Abp.Modularity; +using Volo.Abp.SettingManagement; + +namespace LINGYUN.Abp.SettingManagement +{ + [DependsOn( + typeof(AbpSettingManagementDomainModule), + typeof(AbpSettingManagementApplicationContractsModule) + )] + public class AbpSettingManagementApplicationModule : AbpModule + { + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/SettingAppService.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/SettingAppService.cs new file mode 100644 index 000000000..63ec28a83 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/SettingAppService.cs @@ -0,0 +1,61 @@ +using JetBrains.Annotations; +using Microsoft.AspNetCore.Authorization; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.Application.Dtos; +using Volo.Abp.Application.Services; +using Volo.Abp.SettingManagement; +using Volo.Abp.SettingManagement.Localization; +using Volo.Abp.Settings; + +namespace LINGYUN.Abp.SettingManagement +{ + [Authorize(AbpSettingManagementPermissions.Settings.Default)] + public class SettingAppService : ApplicationService, ISettingAppService + { + protected ISettingManager SettingManager { get; } + protected ISettingDefinitionManager SettingDefinitionManager { get; } + public SettingAppService(ISettingManager settingManager, + ISettingDefinitionManager settingDefinitionManager) + { + SettingManager = settingManager; + SettingDefinitionManager = settingDefinitionManager; + LocalizationResource = typeof(AbpSettingManagementResource); + } + + public virtual async Task> GetAsync([NotNull] string providerName, [NotNull] string providerKey) + { + var settingsDto = new List(); + var settingDefinitions = SettingDefinitionManager.GetAll(); + foreach(var setting in settingDefinitions) + { + if (setting.Providers.Any() && !setting.Providers.Contains(providerName)) + { + continue; + } + + var settingValue = await SettingManager.GetOrNullAsync(setting.Name, providerName, providerKey); + var settingInfo = new SettingDto + { + Name = setting.Name, + Value = settingValue, + DefaultValue = setting.DefaultValue, + Description = setting.Description.Localize(StringLocalizerFactory), + DisplayName = setting.DisplayName.Localize(StringLocalizerFactory) + }; + settingsDto.Add(settingInfo); + } + return new ListResultDto(settingsDto); + } + + [Authorize(AbpSettingManagementPermissions.Settings.Update)] + public virtual async Task UpdateAsync([NotNull] string providerName, [NotNull] string providerKey, UpdateSettingsDto input) + { + foreach (var setting in input.Settings) + { + await SettingManager.SetAsync(setting.Name, providerName, providerKey, setting.Value); + } + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..51ea2927a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..6a61fd0e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.deps.json new file mode 100644 index 000000000..25110d1f2 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.deps.json @@ -0,0 +1,1903 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "LINGYUN.Abp.SettingManagement.Application/1.0.0": { + "dependencies": { + "LINGYUN.Abp.SettingManagement.Application.Contracts": "1.0.0", + "NETStandard.Library": "2.0.3", + "Volo.Abp.SettingManagement.Domain": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.Application.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.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.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.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.SettingManagement.Domain/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.Application.Contracts.dll": {} + } + } + } + }, + "libraries": { + "LINGYUN.Abp.SettingManagement.Application/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.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.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.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512" + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..f9247dec9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..fdaeed332 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..6f13733a3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..e2ca4cfdc Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.deps.json new file mode 100644 index 000000000..674faa05a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.deps.json @@ -0,0 +1,1903 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.0/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.0": {}, + ".NETStandard,Version=v2.0/": { + "Multicolin.Abp.SettingManagement.Application/1.0.0": { + "dependencies": { + "Multicolin.Abp.SettingManagement.Application.Contracts": "1.0.0", + "NETStandard.Library": "2.0.3", + "Volo.Abp.SettingManagement.Domain": "2.7.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.Application.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.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.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.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.SettingManagement.Domain/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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" + } + } + }, + "Multicolin.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.Application.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Multicolin.Abp.SettingManagement.Application/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.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.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.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512" + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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" + }, + "Multicolin.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..2b08133f2 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..9bfaef932 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/bin/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfo.cs new file mode 100644 index 000000000..0c5e043e3 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.SettingManagement.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.Abp.SettingManagement.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.SettingManagement.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfoInputs.cache new file mode 100644 index 000000000..88b949121 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +63de39dd81ca4e687febf7af48449a1afbcf8398 diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.assets.cache new file mode 100644 index 000000000..5c2ad9f7c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CopyComplete b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CoreCompileInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..95c965e6f --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3ccc53d67aadfb2019400c017b938a6ecf6d067f diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..c8ac900e1 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\LINGYUN.Abp.SettingManagement.Application.csproj.CoreCompileInputs.cache diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csprojAssemblyReference.cache new file mode 100644 index 000000000..70a0eeb27 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..f9247dec9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..fdaeed332 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/LINGYUN.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfo.cs new file mode 100644 index 000000000..6d3f08280 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Multicolin.Abp.SettingManagement.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("Multicolin.Abp.SettingManagement.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("Multicolin.Abp.SettingManagement.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfoInputs.cache new file mode 100644 index 000000000..2307d9213 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +84240f107f4666c9e0b32dd46ede75545725caf0 diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.assets.cache new file mode 100644 index 000000000..b2d228a4d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.CopyComplete b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..2be921579 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\bin\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.Application\obj\Debug\netstandard2.0\Multicolin.Abp.SettingManagement.Application.pdb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csprojAssemblyReference.cache new file mode 100644 index 000000000..d87057849 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..2b08133f2 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..9bfaef932 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Debug/netstandard2.0/Multicolin.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.cache new file mode 100644 index 000000000..30d87dcc7 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "D8cRivwHsLpp5Si+UrjUAv32WSjLZGBluKmPQL6OzxuzISyfr1e28KCtP41EaqwYO83C9l/7SGkZ7z49PX20yQ==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.dgspec.json new file mode 100644 index 000000000..1e651ca8a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.dgspec.json @@ -0,0 +1,146 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.SettingManagement.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/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.props new file mode 100644 index 000000000..67ca95c64 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/LINGYUN.Abp.SettingManagement.Application.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.cache new file mode 100644 index 000000000..b714b86b5 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "8KO6Cy2ggXx1AoAJM7o0ELw6VeBmhxVk4qfCJOdIiEN7qgNsnzHjAX9Z9MamYRzBLB0V4FCk8g7wm03GAAKcfQ==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.dgspec.json new file mode 100644 index 000000000..51bb80e69 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.dgspec.json @@ -0,0 +1,146 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "Multicolin.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj", + "projectName": "Multicolin.Abp.SettingManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.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\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.SettingManagement.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/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.props new file mode 100644 index 000000000..2528351cf --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.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/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.targets new file mode 100644 index 000000000..c6394fd66 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/Multicolin.Abp.SettingManagement.Application.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.assets.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.assets.json new file mode 100644 index 000000000..a3b5e04c0 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.assets.json @@ -0,0 +1,4337 @@ +{ + "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.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.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.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "compile": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.Contracts.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.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.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.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.SettingManagement.Domain/2.7.0": { + "sha512": "qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "type": "package", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.pdb", + "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512", + "volo.abp.settingmanagement.domain.nuspec" + ] + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "sha512": "Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "type": "package", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.pdb", + "volo.abp.settingmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.settingmanagement.domain.shared.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.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "path": "../LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "msbuildProject": "../LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.0": [ + "LINGYUN.Abp.SettingManagement.Application.Contracts >= 1.0.0", + "NETStandard.Library >= 2.0.3", + "Volo.Abp.SettingManagement.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\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.SettingManagement.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/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.nuget.cache new file mode 100644 index 000000000..8e9026d7a --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/obj/project.nuget.cache @@ -0,0 +1,109 @@ +{ + "version": 2, + "dgSpecHash": "ucbobBnkT3RJG83clbJHkGf6iQIQaHDSjDNcNP/nK0fH729otFFqFjrcBYy18GPTjfQVIotl/0YmC+JgKAPPjg==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.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.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:\\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.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.settingmanagement.domain\\2.7.0\\volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settingmanagement.domain.shared\\2.7.0\\volo.abp.settingmanagement.domain.shared.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/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN.Abp.SettingManagement.HttpApi.csproj b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN.Abp.SettingManagement.HttpApi.csproj new file mode 100644 index 000000000..2064be3f3 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN.Abp.SettingManagement.HttpApi.csproj @@ -0,0 +1,15 @@ + + + + netcoreapp3.1 + + + + + + + + + + + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/AbpSettingManagementHttpApiModule.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/AbpSettingManagementHttpApiModule.cs new file mode 100644 index 000000000..9df35a1e2 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/AbpSettingManagementHttpApiModule.cs @@ -0,0 +1,36 @@ +using Localization.Resources.AbpUi; +using Microsoft.Extensions.DependencyInjection; +using Volo.Abp.AspNetCore.Mvc; +using Volo.Abp.Localization; +using Volo.Abp.Modularity; +using Volo.Abp.SettingManagement.Localization; + +namespace LINGYUN.Abp.SettingManagement +{ + [DependsOn( + typeof(AbpSettingManagementApplicationModule), + typeof(AbpAspNetCoreMvcModule) + )] + public class AbpSettingManagementHttpApiModule : AbpModule + { + public override void PreConfigureServices(ServiceConfigurationContext context) + { + PreConfigure(mvcBuilder => + { + mvcBuilder.AddApplicationPartIfNotExists(typeof(AbpSettingManagementHttpApiModule).Assembly); + }); + } + + public override void ConfigureServices(ServiceConfigurationContext context) + { + Configure(options => + { + options.Resources + .Get() + .AddBaseTypes( + typeof(AbpUiResource) + ); + }); + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/SettingController.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/SettingController.cs new file mode 100644 index 000000000..70cbd5240 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/LINGYUN/Abp/SettingManagement/SettingController.cs @@ -0,0 +1,30 @@ +using JetBrains.Annotations; +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; +using Volo.Abp; +using Volo.Abp.Application.Dtos; +using Volo.Abp.AspNetCore.Mvc; + +namespace LINGYUN.Abp.SettingManagement +{ + [RemoteService(Name = AbpSettingManagementRemoteServiceConsts.RemoteServiceName)] + [Area("abp")] + public class SettingController : AbpController, ISettingAppService + { + private readonly ISettingAppService _settingAppService; + public SettingController(ISettingAppService settingAppService) + { + _settingAppService = settingAppService; + } + + public virtual async Task> GetAsync([NotNull] string providerName, [NotNull] string providerKey) + { + return await _settingAppService.GetAsync(providerName, providerKey); + } + + public virtual async Task UpdateAsync([NotNull] string providerName, [NotNull] string providerKey, UpdateSettingsDto input) + { + await _settingAppService.UpdateAsync(providerName, providerKey, input); + } + } +} diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..51ea2927a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..6a61fd0e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..f9247dec9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..fdaeed332 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.deps.json new file mode 100644 index 000000000..d1b15dd6d --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.deps.json @@ -0,0 +1,5547 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP", + "NETCOREAPP3_1" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": false, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v3.1": { + "LINGYUN.Abp.SettingManagement.HttpApi/1.0.0": { + "dependencies": { + "LINGYUN.Abp.SettingManagement.Application": "1.0.0", + "Volo.Abp.AspNetCore.Mvc": "2.7.0", + "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0", + "Microsoft.AspNetCore.Authentication": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0", + "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0", + "Microsoft.AspNetCore.Components": "3.1.0.0", + "Microsoft.AspNetCore.Components.Forms": "3.1.0.0", + "Microsoft.AspNetCore.Components.Server": "3.1.0.0", + "Microsoft.AspNetCore.Components.Web": "3.1.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0", + "Microsoft.AspNetCore.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.AspNetCore": "3.1.0.0", + "Microsoft.AspNetCore.HostFiltering": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Hosting": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections": "3.1.0.0", + "Microsoft.AspNetCore.Http": "3.1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Features": "3.1.0.0", + "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0", + "Microsoft.AspNetCore.Identity": "3.1.0.0", + "Microsoft.AspNetCore.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0", + "Microsoft.AspNetCore.Mvc": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0", + "Microsoft.AspNetCore.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0", + "Microsoft.AspNetCore.Rewrite": "3.1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0", + "Microsoft.AspNetCore.Server.IIS": "3.1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0", + "Microsoft.AspNetCore.Session": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0", + "Microsoft.AspNetCore.SignalR": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0", + "Microsoft.AspNetCore.StaticFiles": "3.1.0.0", + "Microsoft.AspNetCore.WebSockets": "3.1.0.0", + "Microsoft.AspNetCore.WebUtilities": "3.1.0.0", + "Microsoft.CSharp.Reference": "4.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", + "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", + "Microsoft.Extensions.Hosting": "3.1.0.0", + "Microsoft.Extensions.Http": "3.1.0.0", + "Microsoft.Extensions.Identity.Core": "3.1.0.0", + "Microsoft.Extensions.Identity.Stores": "3.1.0.0", + "Microsoft.Extensions.Logging.Configuration": "3.1.0.0", + "Microsoft.Extensions.Logging.Console": "3.1.0.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0.0", + "Microsoft.Extensions.Logging.EventLog": "3.1.0.0", + "Microsoft.Extensions.Logging.EventSource": "3.1.0.0", + "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0", + "Microsoft.Extensions.ObjectPool": "3.1.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", + "Microsoft.Extensions.WebEncoders": "3.1.0.0", + "Microsoft.JSInterop": "3.1.0.0", + "Microsoft.Net.Http.Headers": "3.1.0.0", + "Microsoft.VisualBasic.Core": "10.0.5.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "4.1.2.0", + "Microsoft.Win32.Registry": "4.1.3.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "4.2.2.0", + "System.Buffers": "4.0.2.0", + "System.Collections.Concurrent": "4.0.15.0", + "System.Collections.Reference": "4.1.2.0", + "System.Collections.Immutable.Reference": "1.2.5.0", + "System.Collections.NonGeneric": "4.1.2.0", + "System.Collections.Specialized": "4.1.2.0", + "System.ComponentModel.Annotations.Reference": "4.3.1.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "4.0.4.0", + "System.ComponentModel.EventBasedAsync": "4.1.2.0", + "System.ComponentModel.Primitives": "4.2.2.0", + "System.ComponentModel.TypeConverter": "4.2.2.0", + "System.Configuration": "4.0.0.0", + "System.Console": "4.1.2.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "4.2.2.0", + "System.Data.DataSetExtensions": "4.0.1.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "4.0.4.0", + "System.Diagnostics.Debug.Reference": "4.1.2.0", + "System.Diagnostics.DiagnosticSource": "4.0.5.0", + "System.Diagnostics.EventLog": "4.0.2.0", + "System.Diagnostics.FileVersionInfo": "4.0.4.0", + "System.Diagnostics.Process": "4.2.2.0", + "System.Diagnostics.StackTrace": "4.1.2.0", + "System.Diagnostics.TextWriterTraceListener": "4.1.2.0", + "System.Diagnostics.Tools": "4.1.2.0", + "System.Diagnostics.TraceSource": "4.1.2.0", + "System.Diagnostics.Tracing": "4.2.2.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "4.2.1.0", + "System.Dynamic.Runtime": "4.1.2.0", + "System.Globalization.Calendars": "4.1.2.0", + "System.Globalization.Reference": "4.1.2.0", + "System.Globalization.Extensions": "4.1.2.0", + "System.IO.Compression.Brotli": "4.2.2.0", + "System.IO.Compression": "4.2.2.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "4.0.5.0", + "System.IO.Reference": "4.2.2.0", + "System.IO.FileSystem": "4.1.2.0", + "System.IO.FileSystem.DriveInfo": "4.1.2.0", + "System.IO.FileSystem.Primitives": "4.1.2.0", + "System.IO.FileSystem.Watcher": "4.1.2.0", + "System.IO.IsolatedStorage": "4.1.2.0", + "System.IO.MemoryMappedFiles": "4.1.2.0", + "System.IO.Pipelines": "4.0.2.0", + "System.IO.Pipes": "4.1.2.0", + "System.IO.UnmanagedMemoryStream": "4.1.2.0", + "System.Linq.Reference": "4.2.2.0", + "System.Linq.Expressions.Reference": "4.2.2.0", + "System.Linq.Parallel": "4.0.4.0", + "System.Linq.Queryable.Reference": "4.0.4.0", + "System.Memory.Reference": "4.2.1.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "4.2.2.0", + "System.Net.HttpListener": "4.0.2.0", + "System.Net.Mail": "4.0.2.0", + "System.Net.NameResolution": "4.1.2.0", + "System.Net.NetworkInformation": "4.2.2.0", + "System.Net.Ping": "4.1.2.0", + "System.Net.Primitives": "4.1.2.0", + "System.Net.Requests": "4.1.2.0", + "System.Net.Security": "4.1.2.0", + "System.Net.ServicePoint": "4.0.2.0", + "System.Net.Sockets": "4.2.2.0", + "System.Net.WebClient": "4.0.2.0", + "System.Net.WebHeaderCollection": "4.1.2.0", + "System.Net.WebProxy": "4.0.2.0", + "System.Net.WebSockets.Client": "4.1.2.0", + "System.Net.WebSockets": "4.1.2.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "4.1.6.0", + "System.ObjectModel.Reference": "4.1.2.0", + "System.Reflection.DispatchProxy": "4.0.6.0", + "System.Reflection.Reference": "4.2.2.0", + "System.Reflection.Emit.Reference": "4.1.2.0", + "System.Reflection.Emit.ILGeneration.Reference": "4.1.1.0", + "System.Reflection.Emit.Lightweight.Reference": "4.1.1.0", + "System.Reflection.Extensions.Reference": "4.1.2.0", + "System.Reflection.Metadata.Reference": "1.4.5.0", + "System.Reflection.Primitives.Reference": "4.1.2.0", + "System.Reflection.TypeExtensions.Reference": "4.1.2.0", + "System.Resources.Reader": "4.1.2.0", + "System.Resources.ResourceManager.Reference": "4.1.2.0", + "System.Resources.Writer": "4.1.2.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0", + "System.Runtime.CompilerServices.VisualC": "4.1.2.0", + "System.Runtime.Reference": "4.2.2.0", + "System.Runtime.Extensions.Reference": "4.2.2.0", + "System.Runtime.Handles": "4.1.2.0", + "System.Runtime.InteropServices": "4.2.2.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0", + "System.Runtime.Intrinsics": "4.0.1.0", + "System.Runtime.Loader.Reference": "4.1.1.0", + "System.Runtime.Numerics": "4.1.2.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "4.0.4.0", + "System.Runtime.Serialization.Json": "4.0.5.0", + "System.Runtime.Serialization.Primitives": "4.2.2.0", + "System.Runtime.Serialization.Xml": "4.1.5.0", + "System.Security.AccessControl": "4.1.1.0", + "System.Security.Claims": "4.1.2.0", + "System.Security.Cryptography.Algorithms": "4.3.2.0", + "System.Security.Cryptography.Cng": "4.3.3.0", + "System.Security.Cryptography.Csp": "4.1.2.0", + "System.Security.Cryptography.Encoding": "4.1.2.0", + "System.Security.Cryptography.Primitives": "4.1.2.0", + "System.Security.Cryptography.X509Certificates": "4.2.2.0", + "System.Security.Cryptography.Xml": "4.0.3.0", + "System.Security": "4.0.0.0", + "System.Security.Permissions": "4.0.3.0", + "System.Security.Principal": "4.1.2.0", + "System.Security.Principal.Windows": "4.1.1.0", + "System.Security.SecureString": "4.1.2.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages.Reference": "4.1.3.0", + "System.Text.Encoding.Reference": "4.1.2.0", + "System.Text.Encoding.Extensions": "4.1.2.0", + "System.Text.Encodings.Web": "4.0.5.0", + "System.Text.RegularExpressions": "4.2.2.0", + "System.Threading.Channels": "4.0.2.0", + "System.Threading.Reference": "4.1.2.0", + "System.Threading.Overlapped": "4.1.2.0", + "System.Threading.Tasks.Dataflow": "4.6.5.0", + "System.Threading.Tasks.Reference": "4.1.2.0", + "System.Threading.Tasks.Extensions.Reference": "4.3.1.0", + "System.Threading.Tasks.Parallel": "4.0.4.0", + "System.Threading.Thread": "4.1.2.0", + "System.Threading.ThreadPool": "4.1.2.0", + "System.Threading.Timer": "4.1.2.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "4.0.2.0", + "System.ValueTuple": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "4.0.2.0", + "System.Windows": "4.0.0.0", + "System.Windows.Extensions": "4.0.1.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "4.2.2.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "4.1.2.0", + "System.Xml.XmlDocument": "4.1.2.0", + "System.Xml.XmlSerializer": "4.1.2.0", + "System.Xml.XPath": "4.1.2.0", + "System.Xml.XPath.XDocument": "4.1.2.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.HttpApi.dll": {} + }, + "compile": { + "LINGYUN.Abp.SettingManagement.HttpApi.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" + } + }, + "compile": { + "lib/netstandard2.0/ConfigureAwait.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/JetBrains.Annotations.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/3.1.2": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Metadata/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "3.1.2", + "Newtonsoft.Json": "12.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2", + "Microsoft.Extensions.DependencyModel": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.7277.28678" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": {}, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.3", + "System.Collections.Immutable": "1.7.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.CSharp": "3.3.0", + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Caching.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.FileProviders.Physical": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.2": { + "dependencies": { + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6704" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2", + "Microsoft.Extensions.FileSystemGlobbing": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.2": { + "dependencies": { + "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/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2", + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.2": {}, + "Microsoft.NETCore.Targets/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" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {} + } + }, + "Nito.Collections.Deque/1.0.4": { + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "assemblyVersion": "1.0.4.0", + "fileVersion": "1.0.4.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Disposables.dll": {} + } + }, + "NUglify/1.5.13": { + "runtime": { + "lib/netstandard2.0/NUglify.dll": { + "assemblyVersion": "1.5.13.0", + "fileVersion": "1.5.13.0" + } + }, + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.7.0": { + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Linq.Dynamic.Core/1.0.19": { + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.0.19.0", + "fileVersion": "1.0.19.0" + } + }, + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + } + }, + "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" + } + }, + "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" + } + }, + "System.Memory/4.5.3": {}, + "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" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "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" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + } + }, + "System.Text.Json/4.7.1": { + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "assemblyVersion": "4.0.1.1", + "fileVersion": "4.700.20.6702" + } + }, + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + } + }, + "Volo.Abp.AspNetCore/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Auditing": "2.7.0", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.Security": "2.7.0", + "Volo.Abp.UI": "2.7.0", + "Volo.Abp.Uow": "2.7.0", + "Volo.Abp.Validation": "2.7.0", + "Volo.Abp.VirtualFileSystem": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "3.1.2", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "3.1.2", + "Microsoft.AspNetCore.Mvc.Versioning": "4.1.0", + "Volo.Abp.ApiVersioning.Abstractions": "2.7.0", + "Volo.Abp.AspNetCore": "2.7.0", + "Volo.Abp.AspNetCore.Mvc.Contracts": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.UI": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Ddd.Application": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Auditing.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Authorization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Caching.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Core.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Data.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.EventBus.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Features.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Guids.dll": {} + } + }, + "Volo.Abp.Http/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Json.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {} + } + }, + "Volo.Abp.Minify/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Security.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Serialization.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Settings.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Threading.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Timing.dll": {} + } + }, + "Volo.Abp.UI/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.UI.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.UI.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Uow.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {} + } + }, + "LINGYUN.Abp.SettingManagement.Application/1.0.0": { + "dependencies": { + "LINGYUN.Abp.SettingManagement.Application.Contracts": "1.0.0", + "Volo.Abp.SettingManagement.Domain": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.Application.dll": {} + }, + "compile": { + "LINGYUN.Abp.SettingManagement.Application.dll": {} + } + }, + "LINGYUN.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "LINGYUN.Abp.SettingManagement.Application.Contracts.dll": {} + }, + "compile": { + "LINGYUN.Abp.SettingManagement.Application.Contracts.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/3.1.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/4.2.2.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/4.0.2.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/4.0.15.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Reference/4.1.2.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/4.1.2.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/4.1.2.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/4.0.4.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/4.1.2.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/4.2.2.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/4.2.2.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/4.1.2.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/4.2.1.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/4.1.2.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/4.1.2.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Reference/4.1.2.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/4.1.2.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/4.2.2.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO.Reference/4.2.2.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/4.1.2.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/4.0.2.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/4.1.2.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Reference/4.2.2.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/4.0.4.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/4.2.1.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/4.2.2.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/4.0.2.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/4.0.2.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/4.1.2.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/4.2.2.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/4.1.2.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/4.1.2.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/4.1.2.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/4.1.2.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/4.0.2.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/4.2.2.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/4.0.2.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/4.0.2.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/4.1.2.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/4.1.6.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel.Reference/4.1.2.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Reference/4.2.2.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/4.1.2.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/4.1.2.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Reference/4.2.2.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/4.1.2.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/4.2.2.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/4.1.2.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/4.1.1.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/4.1.2.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions/4.0.3.0": { + "compile": { + "System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/4.1.2.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/4.1.1.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/4.1.2.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/4.0.5.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/4.2.2.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/4.0.2.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Reference/4.1.2.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/4.1.2.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/4.1.2.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/4.1.2.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/4.1.2.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/4.0.2.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/4.0.2.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Windows.Extensions/4.0.1.0": { + "compile": { + "System.Windows.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/4.1.2.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/4.1.2.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "LINGYUN.Abp.SettingManagement.HttpApi/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.JsonPatch/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdrF8gZnWy/sAtRgV6IMRr9V6t8nfTqS6VpzPUnCqe8vFnWlJP/J45LULpQfRCuyq7Mdk1qoDOnT9S9qI0Exqw==", + "path": "microsoft.aspnetcore.jsonpatch/3.1.2", + "hashPath": "microsoft.aspnetcore.jsonpatch.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.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pa3e4g6ppyn8fJHYxJCuMfCqIp2e8VWF2Cgl4XmQV3dnJHoGMZnZFnmnCNVsdQKbLTFpDiox2r48/KDo0czV2Q==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/4EqGr6fZWqKGh44iWqnHktattiEEMu4QpNaEoWGepLdRme+hS+9bxUDO7SwVGG8pdcDf2EAUEZ/FqoViCYDIA==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AcUZX2rkjccGaBosUfu5PYdzSM3/FkmC0y9UyyoneXz/iVGiLUeXZZtGOzYPxpkg5G1yyMtag50BCq6yMm0mTA==", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QuFIocMUP8K9+QrjLNio6uD3CE805afEJNz9qaEPl0ah2D2iQrmEW3bD5+LfathtdVS4MkmmgEVrhJBP1yFOFA==", + "path": "microsoft.aspnetcore.mvc.versioning/4.1.0", + "hashPath": "microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VttbHyOJLKtaW57Zv7wUaKmgx6EZ5O7FjXMrBMzQu6DXfFTW79le/rzDeBcqhGeeji2rKuzBMrehyCbRal+reA==", + "path": "microsoft.aspnetcore.razor.language/3.1.2", + "hashPath": "microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDKEoHdg3icjLrn9EJ4KIkJG+ahU1YouhB0J8EARhj6fTqA/3oUneak0hWbToLOBLOTePu/Oc1QEA4mwmMEYVA==", + "path": "microsoft.codeanalysis.analyzers/2.9.3", + "hashPath": "microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hK0BGWD2ZlTCZ/KD84LQrD95lwJuRg8++uVGeiLq+klmcsNf3g7j/QvXowZX5Wi+oL9egCFxI7d3A4GtpQAl0A==", + "path": "microsoft.codeanalysis.common/3.3.0", + "hashPath": "microsoft.codeanalysis.common.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C0acBZTXLgi72UpV+E2zT+joclyPxNQ+zuHnvE0bS6hJA4i7kBBdW7qaLEwVP6a9MrrtL869StzvXqMc/0PvTg==", + "path": "microsoft.codeanalysis.csharp/3.3.0", + "hashPath": "microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-blQr2sK7c8XhmImjUf/4KOlhJJ3mxHuUj2drw+0gwH2rf+/18C/1g3CJN5DZ/2IHsFvYFbb9zcnrXor5+mZI+w==", + "path": "microsoft.codeanalysis.razor/3.1.2", + "hashPath": "microsoft.codeanalysis.razor.3.1.2.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.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.DependencyModel/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZR4ChHbwEHArC6iuLyf5Pr7BANayuVGcDUzuF+HoX5P1MTxFnyJu7cYOgRwPWAgIDZftqqeOm4LbGIQnQXsTw==", + "path": "microsoft.extensions.dependencymodel/3.1.2", + "hashPath": "microsoft.extensions.dependencymodel.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/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "path": "microsoft.netcore.platforms/2.1.2", + "hashPath": "microsoft.netcore.platforms.2.1.2.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" + }, + "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" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.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" + }, + "NUglify/1.5.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "path": "nuglify/1.5.13", + "hashPath": "nuglify.1.5.13.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.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.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.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.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.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.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.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.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IVb+mn9clcLztIixCuZaUHzOpPeHOMKm+LKsvViNblmuyYstJJyaquMTrnEV/jlWbICPDeBux5W+Eu50tD3tNg==", + "path": "volo.abp.apiversioning.abstractions/2.7.0", + "hashPath": "volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V0Xmn2dqjpdXYf6xOWZHW5t+qipr3ReAgYrcCsP0GMdEtuLLa0SBPk2bk9V7cfwkAgYrtETFkSbdYLhOsm/OFg==", + "path": "volo.abp.aspnetcore/2.7.0", + "hashPath": "volo.abp.aspnetcore.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60bM5mtr+bQD0gaDZQ5DZ8egApJt92MtNcW6XrxCh7LMoJJJZhMRyicx6IGqztwyvV3r7+YqYpI0FjtDfWsPfg==", + "path": "volo.abp.aspnetcore.mvc/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J2AsYy3P1UGWBdYwj/uhEoNpw9/fjIHYeHV748BHzV4bv6Zqb/c97h2pWhkmk1gL9r3+5NsZJBd/mktNA9iLPw==", + "path": "volo.abp.aspnetcore.mvc.contracts/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.contracts.2.7.0.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.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/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "path": "volo.abp.http/2.7.0", + "hashPath": "volo.abp.http.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.Minify/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "path": "volo.abp.minify/2.7.0", + "hashPath": "volo.abp.minify.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512" + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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.UI/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YjDr9Fb5HAvejzLNra9RGjJSwtOKY5k7+STMNWkCVwpPagLOxyAUvtytseOoWg3n7FGxYVvUYJYlRcgM8kX9vA==", + "path": "volo.abp.ui/2.7.0", + "hashPath": "volo.abp.ui.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.Abp.SettingManagement.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "LINGYUN.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/4.0.15.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/4.1.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Permissions/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows.Extensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll new file mode 100644 index 000000000..f726db54f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb new file mode 100644 index 000000000..1420dfe72 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.dll new file mode 100644 index 000000000..6f13733a3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.pdb new file mode 100644 index 000000000..e2ca4cfdc Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.Contracts.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.dll new file mode 100644 index 000000000..2b08133f2 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.pdb new file mode 100644 index 000000000..9bfaef932 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.Application.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.deps.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.deps.json new file mode 100644 index 000000000..144ef0fb5 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.deps.json @@ -0,0 +1,5547 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NETCOREAPP", + "NETCOREAPP3_1" + ], + "languageVersion": "", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": false, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Multicolin.Abp.SettingManagement.HttpApi/1.0.0": { + "dependencies": { + "Multicolin.Abp.SettingManagement.Application": "1.0.0", + "Volo.Abp.AspNetCore.Mvc": "2.7.0", + "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0", + "Microsoft.AspNetCore.Authentication": "3.1.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0", + "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0", + "Microsoft.AspNetCore.Components": "3.1.0.0", + "Microsoft.AspNetCore.Components.Forms": "3.1.0.0", + "Microsoft.AspNetCore.Components.Server": "3.1.0.0", + "Microsoft.AspNetCore.Components.Web": "3.1.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0", + "Microsoft.AspNetCore.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection": "3.1.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics": "3.1.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.AspNetCore": "3.1.0.0", + "Microsoft.AspNetCore.HostFiltering": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Hosting": "3.1.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0", + "Microsoft.AspNetCore.Http.Connections": "3.1.0.0", + "Microsoft.AspNetCore.Http": "3.1.0.0", + "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0", + "Microsoft.AspNetCore.Http.Features": "3.1.0.0", + "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0", + "Microsoft.AspNetCore.Identity": "3.1.0.0", + "Microsoft.AspNetCore.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0", + "Microsoft.AspNetCore.Mvc": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0", + "Microsoft.AspNetCore.Razor": "3.1.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0", + "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0", + "Microsoft.AspNetCore.Rewrite": "3.1.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0", + "Microsoft.AspNetCore.Routing": "3.1.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0", + "Microsoft.AspNetCore.Server.IIS": "3.1.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0", + "Microsoft.AspNetCore.Session": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0", + "Microsoft.AspNetCore.SignalR": "3.1.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0", + "Microsoft.AspNetCore.StaticFiles": "3.1.0.0", + "Microsoft.AspNetCore.WebSockets": "3.1.0.0", + "Microsoft.AspNetCore.WebUtilities": "3.1.0.0", + "Microsoft.CSharp.Reference": "4.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", + "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", + "Microsoft.Extensions.Hosting": "3.1.0.0", + "Microsoft.Extensions.Http": "3.1.0.0", + "Microsoft.Extensions.Identity.Core": "3.1.0.0", + "Microsoft.Extensions.Identity.Stores": "3.1.0.0", + "Microsoft.Extensions.Logging.Configuration": "3.1.0.0", + "Microsoft.Extensions.Logging.Console": "3.1.0.0", + "Microsoft.Extensions.Logging.Debug": "3.1.0.0", + "Microsoft.Extensions.Logging.EventLog": "3.1.0.0", + "Microsoft.Extensions.Logging.EventSource": "3.1.0.0", + "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0", + "Microsoft.Extensions.ObjectPool": "3.1.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", + "Microsoft.Extensions.WebEncoders": "3.1.0.0", + "Microsoft.JSInterop": "3.1.0.0", + "Microsoft.Net.Http.Headers": "3.1.0.0", + "Microsoft.VisualBasic.Core": "10.0.5.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "4.1.2.0", + "Microsoft.Win32.Registry": "4.1.3.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "4.2.2.0", + "System.Buffers": "4.0.2.0", + "System.Collections.Concurrent": "4.0.15.0", + "System.Collections.Reference": "4.1.2.0", + "System.Collections.Immutable.Reference": "1.2.5.0", + "System.Collections.NonGeneric": "4.1.2.0", + "System.Collections.Specialized": "4.1.2.0", + "System.ComponentModel.Annotations.Reference": "4.3.1.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "4.0.4.0", + "System.ComponentModel.EventBasedAsync": "4.1.2.0", + "System.ComponentModel.Primitives": "4.2.2.0", + "System.ComponentModel.TypeConverter": "4.2.2.0", + "System.Configuration": "4.0.0.0", + "System.Console": "4.1.2.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "4.2.2.0", + "System.Data.DataSetExtensions": "4.0.1.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "4.0.4.0", + "System.Diagnostics.Debug.Reference": "4.1.2.0", + "System.Diagnostics.DiagnosticSource": "4.0.5.0", + "System.Diagnostics.EventLog": "4.0.2.0", + "System.Diagnostics.FileVersionInfo": "4.0.4.0", + "System.Diagnostics.Process": "4.2.2.0", + "System.Diagnostics.StackTrace": "4.1.2.0", + "System.Diagnostics.TextWriterTraceListener": "4.1.2.0", + "System.Diagnostics.Tools": "4.1.2.0", + "System.Diagnostics.TraceSource": "4.1.2.0", + "System.Diagnostics.Tracing": "4.2.2.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "4.2.1.0", + "System.Dynamic.Runtime": "4.1.2.0", + "System.Globalization.Calendars": "4.1.2.0", + "System.Globalization.Reference": "4.1.2.0", + "System.Globalization.Extensions": "4.1.2.0", + "System.IO.Compression.Brotli": "4.2.2.0", + "System.IO.Compression": "4.2.2.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "4.0.5.0", + "System.IO.Reference": "4.2.2.0", + "System.IO.FileSystem": "4.1.2.0", + "System.IO.FileSystem.DriveInfo": "4.1.2.0", + "System.IO.FileSystem.Primitives": "4.1.2.0", + "System.IO.FileSystem.Watcher": "4.1.2.0", + "System.IO.IsolatedStorage": "4.1.2.0", + "System.IO.MemoryMappedFiles": "4.1.2.0", + "System.IO.Pipelines": "4.0.2.0", + "System.IO.Pipes": "4.1.2.0", + "System.IO.UnmanagedMemoryStream": "4.1.2.0", + "System.Linq.Reference": "4.2.2.0", + "System.Linq.Expressions.Reference": "4.2.2.0", + "System.Linq.Parallel": "4.0.4.0", + "System.Linq.Queryable.Reference": "4.0.4.0", + "System.Memory.Reference": "4.2.1.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "4.2.2.0", + "System.Net.HttpListener": "4.0.2.0", + "System.Net.Mail": "4.0.2.0", + "System.Net.NameResolution": "4.1.2.0", + "System.Net.NetworkInformation": "4.2.2.0", + "System.Net.Ping": "4.1.2.0", + "System.Net.Primitives": "4.1.2.0", + "System.Net.Requests": "4.1.2.0", + "System.Net.Security": "4.1.2.0", + "System.Net.ServicePoint": "4.0.2.0", + "System.Net.Sockets": "4.2.2.0", + "System.Net.WebClient": "4.0.2.0", + "System.Net.WebHeaderCollection": "4.1.2.0", + "System.Net.WebProxy": "4.0.2.0", + "System.Net.WebSockets.Client": "4.1.2.0", + "System.Net.WebSockets": "4.1.2.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "4.1.6.0", + "System.ObjectModel.Reference": "4.1.2.0", + "System.Reflection.DispatchProxy": "4.0.6.0", + "System.Reflection.Reference": "4.2.2.0", + "System.Reflection.Emit.Reference": "4.1.2.0", + "System.Reflection.Emit.ILGeneration.Reference": "4.1.1.0", + "System.Reflection.Emit.Lightweight.Reference": "4.1.1.0", + "System.Reflection.Extensions.Reference": "4.1.2.0", + "System.Reflection.Metadata.Reference": "1.4.5.0", + "System.Reflection.Primitives.Reference": "4.1.2.0", + "System.Reflection.TypeExtensions.Reference": "4.1.2.0", + "System.Resources.Reader": "4.1.2.0", + "System.Resources.ResourceManager.Reference": "4.1.2.0", + "System.Resources.Writer": "4.1.2.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0", + "System.Runtime.CompilerServices.VisualC": "4.1.2.0", + "System.Runtime.Reference": "4.2.2.0", + "System.Runtime.Extensions.Reference": "4.2.2.0", + "System.Runtime.Handles": "4.1.2.0", + "System.Runtime.InteropServices": "4.2.2.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0", + "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0", + "System.Runtime.Intrinsics": "4.0.1.0", + "System.Runtime.Loader.Reference": "4.1.1.0", + "System.Runtime.Numerics": "4.1.2.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "4.0.4.0", + "System.Runtime.Serialization.Json": "4.0.5.0", + "System.Runtime.Serialization.Primitives": "4.2.2.0", + "System.Runtime.Serialization.Xml": "4.1.5.0", + "System.Security.AccessControl": "4.1.1.0", + "System.Security.Claims": "4.1.2.0", + "System.Security.Cryptography.Algorithms": "4.3.2.0", + "System.Security.Cryptography.Cng": "4.3.3.0", + "System.Security.Cryptography.Csp": "4.1.2.0", + "System.Security.Cryptography.Encoding": "4.1.2.0", + "System.Security.Cryptography.Primitives": "4.1.2.0", + "System.Security.Cryptography.X509Certificates": "4.2.2.0", + "System.Security.Cryptography.Xml": "4.0.3.0", + "System.Security": "4.0.0.0", + "System.Security.Permissions": "4.0.3.0", + "System.Security.Principal": "4.1.2.0", + "System.Security.Principal.Windows": "4.1.1.0", + "System.Security.SecureString": "4.1.2.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages.Reference": "4.1.3.0", + "System.Text.Encoding.Reference": "4.1.2.0", + "System.Text.Encoding.Extensions": "4.1.2.0", + "System.Text.Encodings.Web": "4.0.5.0", + "System.Text.RegularExpressions": "4.2.2.0", + "System.Threading.Channels": "4.0.2.0", + "System.Threading.Reference": "4.1.2.0", + "System.Threading.Overlapped": "4.1.2.0", + "System.Threading.Tasks.Dataflow": "4.6.5.0", + "System.Threading.Tasks.Reference": "4.1.2.0", + "System.Threading.Tasks.Extensions.Reference": "4.3.1.0", + "System.Threading.Tasks.Parallel": "4.0.4.0", + "System.Threading.Thread": "4.1.2.0", + "System.Threading.ThreadPool": "4.1.2.0", + "System.Threading.Timer": "4.1.2.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "4.0.2.0", + "System.ValueTuple": "4.0.3.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "4.0.2.0", + "System.Windows": "4.0.0.0", + "System.Windows.Extensions": "4.0.1.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "4.2.2.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "4.1.2.0", + "System.Xml.XmlDocument": "4.1.2.0", + "System.Xml.XmlSerializer": "4.1.2.0", + "System.Xml.XPath": "4.1.2.0", + "System.Xml.XPath.XDocument": "4.1.2.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.HttpApi.dll": {} + }, + "compile": { + "Multicolin.Abp.SettingManagement.HttpApi.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" + } + }, + "compile": { + "lib/netstandard2.0/ConfigureAwait.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/JetBrains.Annotations.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/3.1.2": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Metadata/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "3.1.2", + "Newtonsoft.Json": "12.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2", + "Microsoft.Extensions.DependencyModel": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6801" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.7277.28678" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": {}, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.3", + "System.Collections.Immutable": "1.7.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.300.19.41501" + } + }, + "resources": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.CSharp": "3.3.0", + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6709" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Extensions.Caching.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.FileProviders.Physical": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2", + "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/3.1.2": { + "dependencies": { + "System.Text.Json": "4.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6704" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.2": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2", + "Microsoft.Extensions.FileSystemGlobbing": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.2": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.2": { + "dependencies": { + "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/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/3.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2", + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + } + }, + "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/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.2": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "3.1.2.0", + "fileVersion": "3.100.220.6706" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.2": {}, + "Microsoft.NETCore.Targets/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" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {} + } + }, + "Nito.Collections.Deque/1.0.4": { + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "assemblyVersion": "1.0.4.0", + "fileVersion": "1.0.4.0" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Nito.Disposables.dll": {} + } + }, + "NUglify/1.5.13": { + "runtime": { + "lib/netstandard2.0/NUglify.dll": { + "assemblyVersion": "1.5.13.0", + "fileVersion": "1.5.13.0" + } + }, + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.7.0": { + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Linq.Dynamic.Core/1.0.19": { + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.0.19.0", + "fileVersion": "1.0.19.0" + } + }, + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + } + }, + "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" + } + }, + "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" + } + }, + "System.Memory/4.5.3": {}, + "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" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "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" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + } + }, + "System.Text.Json/4.7.1": { + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": { + "assemblyVersion": "4.0.1.1", + "fileVersion": "4.700.20.6702" + } + }, + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + } + }, + "Volo.Abp.AspNetCore/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Auditing": "2.7.0", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.Security": "2.7.0", + "Volo.Abp.UI": "2.7.0", + "Volo.Abp.Uow": "2.7.0", + "Volo.Abp.Validation": "2.7.0", + "Volo.Abp.VirtualFileSystem": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "3.1.2", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "3.1.2", + "Microsoft.AspNetCore.Mvc.Versioning": "4.1.0", + "Volo.Abp.ApiVersioning.Abstractions": "2.7.0", + "Volo.Abp.AspNetCore": "2.7.0", + "Volo.Abp.AspNetCore.Mvc.Contracts": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.UI": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + } + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Ddd.Application": "2.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Auditing.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Authorization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Caching.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Core.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Data.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.EventBus.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Features.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Guids.dll": {} + } + }, + "Volo.Abp.Http/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Json.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {} + } + }, + "Volo.Abp.Minify/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Security.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Serialization.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Settings.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Threading.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Timing.dll": {} + } + }, + "Volo.Abp.UI/2.7.0": { + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.UI.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.UI.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Uow.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {} + } + }, + "Multicolin.Abp.SettingManagement.Application/1.0.0": { + "dependencies": { + "Multicolin.Abp.SettingManagement.Application.Contracts": "1.0.0", + "Volo.Abp.SettingManagement.Domain": "2.7.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.Application.dll": {} + }, + "compile": { + "Multicolin.Abp.SettingManagement.Application.dll": {} + } + }, + "Multicolin.Abp.SettingManagement.Application.Contracts/1.0.0": { + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "runtime": { + "Multicolin.Abp.SettingManagement.Application.Contracts.dll": {} + }, + "compile": { + "Multicolin.Abp.SettingManagement.Application.Contracts.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/3.1.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/4.2.2.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/4.0.2.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/4.0.15.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Reference/4.1.2.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/4.1.2.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/4.1.2.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/4.0.4.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/4.1.2.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/4.2.2.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/4.2.2.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/4.1.2.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/4.2.1.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/4.1.2.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/4.1.2.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Reference/4.1.2.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/4.1.2.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/4.2.2.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO.Reference/4.2.2.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/4.1.2.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/4.0.2.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/4.1.2.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Reference/4.2.2.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/4.0.4.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/4.2.1.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/4.2.2.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/4.0.2.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/4.0.2.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/4.1.2.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/4.2.2.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/4.1.2.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/4.1.2.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/4.1.2.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/4.1.2.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/4.0.2.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/4.2.2.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/4.0.2.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/4.0.2.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/4.1.2.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/4.1.6.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel.Reference/4.1.2.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Reference/4.2.2.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/4.1.2.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/4.1.2.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Reference/4.2.2.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/4.1.2.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/4.2.2.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "compile": { + "System.Runtime.InteropServices.WindowsRuntime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/4.1.2.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/4.1.1.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/4.1.2.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Permissions/4.0.3.0": { + "compile": { + "System.Security.Permissions.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/4.1.2.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/4.1.1.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/4.1.2.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/4.0.5.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/4.2.2.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/4.0.2.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Reference/4.1.2.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/4.1.2.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/4.1.2.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/4.1.2.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/4.1.2.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/4.0.2.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/4.0.3.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/4.0.2.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Windows.Extensions/4.0.1.0": { + "compile": { + "System.Windows.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/4.1.2.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/4.1.2.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "Multicolin.Abp.SettingManagement.HttpApi/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.JsonPatch/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdrF8gZnWy/sAtRgV6IMRr9V6t8nfTqS6VpzPUnCqe8vFnWlJP/J45LULpQfRCuyq7Mdk1qoDOnT9S9qI0Exqw==", + "path": "microsoft.aspnetcore.jsonpatch/3.1.2", + "hashPath": "microsoft.aspnetcore.jsonpatch.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.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pa3e4g6ppyn8fJHYxJCuMfCqIp2e8VWF2Cgl4XmQV3dnJHoGMZnZFnmnCNVsdQKbLTFpDiox2r48/KDo0czV2Q==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/4EqGr6fZWqKGh44iWqnHktattiEEMu4QpNaEoWGepLdRme+hS+9bxUDO7SwVGG8pdcDf2EAUEZ/FqoViCYDIA==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AcUZX2rkjccGaBosUfu5PYdzSM3/FkmC0y9UyyoneXz/iVGiLUeXZZtGOzYPxpkg5G1yyMtag50BCq6yMm0mTA==", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/3.1.2", + "hashPath": "microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QuFIocMUP8K9+QrjLNio6uD3CE805afEJNz9qaEPl0ah2D2iQrmEW3bD5+LfathtdVS4MkmmgEVrhJBP1yFOFA==", + "path": "microsoft.aspnetcore.mvc.versioning/4.1.0", + "hashPath": "microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VttbHyOJLKtaW57Zv7wUaKmgx6EZ5O7FjXMrBMzQu6DXfFTW79le/rzDeBcqhGeeji2rKuzBMrehyCbRal+reA==", + "path": "microsoft.aspnetcore.razor.language/3.1.2", + "hashPath": "microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cDKEoHdg3icjLrn9EJ4KIkJG+ahU1YouhB0J8EARhj6fTqA/3oUneak0hWbToLOBLOTePu/Oc1QEA4mwmMEYVA==", + "path": "microsoft.codeanalysis.analyzers/2.9.3", + "hashPath": "microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hK0BGWD2ZlTCZ/KD84LQrD95lwJuRg8++uVGeiLq+klmcsNf3g7j/QvXowZX5Wi+oL9egCFxI7d3A4GtpQAl0A==", + "path": "microsoft.codeanalysis.common/3.3.0", + "hashPath": "microsoft.codeanalysis.common.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C0acBZTXLgi72UpV+E2zT+joclyPxNQ+zuHnvE0bS6hJA4i7kBBdW7qaLEwVP6a9MrrtL869StzvXqMc/0PvTg==", + "path": "microsoft.codeanalysis.csharp/3.3.0", + "hashPath": "microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-blQr2sK7c8XhmImjUf/4KOlhJJ3mxHuUj2drw+0gwH2rf+/18C/1g3CJN5DZ/2IHsFvYFbb9zcnrXor5+mZI+w==", + "path": "microsoft.codeanalysis.razor/3.1.2", + "hashPath": "microsoft.codeanalysis.razor.3.1.2.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.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.DependencyModel/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZR4ChHbwEHArC6iuLyf5Pr7BANayuVGcDUzuF+HoX5P1MTxFnyJu7cYOgRwPWAgIDZftqqeOm4LbGIQnQXsTw==", + "path": "microsoft.extensions.dependencymodel/3.1.2", + "hashPath": "microsoft.extensions.dependencymodel.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/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "path": "microsoft.netcore.platforms/2.1.2", + "hashPath": "microsoft.netcore.platforms.2.1.2.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" + }, + "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" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.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" + }, + "NUglify/1.5.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "path": "nuglify/1.5.13", + "hashPath": "nuglify.1.5.13.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.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.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.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.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.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.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.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.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IVb+mn9clcLztIixCuZaUHzOpPeHOMKm+LKsvViNblmuyYstJJyaquMTrnEV/jlWbICPDeBux5W+Eu50tD3tNg==", + "path": "volo.abp.apiversioning.abstractions/2.7.0", + "hashPath": "volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V0Xmn2dqjpdXYf6xOWZHW5t+qipr3ReAgYrcCsP0GMdEtuLLa0SBPk2bk9V7cfwkAgYrtETFkSbdYLhOsm/OFg==", + "path": "volo.abp.aspnetcore/2.7.0", + "hashPath": "volo.abp.aspnetcore.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60bM5mtr+bQD0gaDZQ5DZ8egApJt92MtNcW6XrxCh7LMoJJJZhMRyicx6IGqztwyvV3r7+YqYpI0FjtDfWsPfg==", + "path": "volo.abp.aspnetcore.mvc/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512" + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J2AsYy3P1UGWBdYwj/uhEoNpw9/fjIHYeHV748BHzV4bv6Zqb/c97h2pWhkmk1gL9r3+5NsZJBd/mktNA9iLPw==", + "path": "volo.abp.aspnetcore.mvc.contracts/2.7.0", + "hashPath": "volo.abp.aspnetcore.mvc.contracts.2.7.0.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.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/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "path": "volo.abp.http/2.7.0", + "hashPath": "volo.abp.http.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.Minify/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "path": "volo.abp.minify/2.7.0", + "hashPath": "volo.abp.minify.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512" + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "hashPath": "volo.abp.settingmanagement.domain.shared.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.UI/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YjDr9Fb5HAvejzLNra9RGjJSwtOKY5k7+STMNWkCVwpPagLOxyAUvtytseOoWg3n7FGxYVvUYJYlRcgM8kX9vA==", + "path": "volo.abp.ui/2.7.0", + "hashPath": "volo.abp.ui.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" + }, + "Multicolin.Abp.SettingManagement.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Multicolin.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp.Reference/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/3.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/10.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/4.0.15.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/1.2.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable.Reference/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/4.2.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/4.1.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/1.4.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions.Reference/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader.Reference/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/4.1.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/4.3.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/4.3.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Permissions/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/4.1.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages.Reference/4.1.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/4.0.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/4.6.5.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Reference/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/4.0.4.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/4.0.3.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/4.0.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows.Extensions/4.0.1.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/4.2.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/4.1.2.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll new file mode 100644 index 000000000..e8114ddc7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb new file mode 100644 index 000000000..924226811 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 000000000..1662f2ffb Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 000000000..3ead48c37 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100644 index 000000000..dd3424b65 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 000000000..c8a73b5c3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100644 index 000000000..c57d6c0b2 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 000000000..4d60a8883 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 000000000..fbc4c49ea Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 000000000..3c5998f4d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 000000000..ceecd7b63 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 000000000..52790a991 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 000000000..dfa191bfd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll new file mode 100644 index 000000000..aa7f2ce01 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 000000000..16f7f1e5a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100644 index 000000000..0fc83bd5c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 000000000..4210047ea Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 000000000..739b28e12 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100644 index 000000000..1d2696913 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 000000000..8a3d76772 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 000000000..382489a9c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 000000000..4a0b3e978 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 000000000..f0310bcde Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100644 index 000000000..76c9f4893 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 000000000..762a12c58 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 000000000..d44196dec Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 000000000..e2137aa09 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 000000000..b0c4b2f4c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 000000000..2b3b8112f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 000000000..4e2ea58d8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 000000000..9f1ecf577 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 000000000..ee1ed052f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 000000000..ec0b4e72e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 000000000..b406b226a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 000000000..2ac58580f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll new file mode 100644 index 000000000..aa0f80fcd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 000000000..c151679f1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100644 index 000000000..004122810 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll new file mode 100644 index 000000000..39f5e3b08 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100644 index 000000000..c3c5e9590 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll new file mode 100644 index 000000000..babcb29c5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 000000000..d80a55078 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 000000000..b31c7e649 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 000000000..5d4d461ad Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 000000000..03696e379 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 000000000..98f04dfea Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 000000000..57f1424d9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 000000000..b6cfca11a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 000000000..cc1fef149 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 000000000..cf28dc317 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 000000000..7bd76805b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 000000000..863e7e663 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 000000000..2fddac6ee Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 000000000..f03eca583 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 000000000..b77e91134 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 000000000..c1a3192de Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 000000000..4045ddc8e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100644 index 000000000..5951177be Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100644 index 000000000..90e076a71 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100644 index 000000000..7c1482d74 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 000000000..9ef2e01f4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 000000000..cc07d1fb0 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 000000000..ba506881f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 000000000..84bf0a072 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 000000000..a908f7d72 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 000000000..978b018ae Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 000000000..30b598d3b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 000000000..582595e6e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll new file mode 100644 index 000000000..17093c068 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 000000000..01ebd41b6 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 000000000..ee88a0517 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 000000000..98caa4764 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 000000000..450d2daef Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 000000000..ac67cd8ca Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 000000000..d99cebfa7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 000000000..6c32dd42a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll new file mode 100644 index 000000000..1960f2bfd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.AspNetCore.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll new file mode 100644 index 000000000..f85bffd45 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.CSharp.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100644 index 000000000..6fb99fb3b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 000000000..9f6792ca9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100644 index 000000000..25a09e2eb Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100644 index 000000000..321d9c603 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100644 index 000000000..917c100ff Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 000000000..a9f104fd3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll new file mode 100644 index 000000000..4997aef92 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll new file mode 100644 index 000000000..3be680011 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Http.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100644 index 000000000..d8c0f24f8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100644 index 000000000..97af69159 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 000000000..2680dab07 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 000000000..2bd346482 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 000000000..9c644d086 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 000000000..4c4e96882 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 000000000..5ed77b6dd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100644 index 000000000..f157e9572 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 000000000..b27f2dee4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100644 index 000000000..4a9c8219b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 000000000..59ae6231b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll new file mode 100644 index 000000000..ccf22395c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.JSInterop.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll new file mode 100644 index 000000000..5950b1b4e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll new file mode 100644 index 000000000..d91ae4994 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll new file mode 100644 index 000000000..cd3989b37 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.VisualBasic.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll new file mode 100644 index 000000000..43ba80ca4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll new file mode 100644 index 000000000..6c1aa2539 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/Microsoft.Win32.Registry.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll new file mode 100644 index 000000000..6f91b4de3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.AppContext.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll new file mode 100644 index 000000000..fd8b1a7d8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Buffers.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll new file mode 100644 index 000000000..b04f22f66 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Concurrent.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll new file mode 100644 index 000000000..d64a1c41a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Immutable.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll new file mode 100644 index 000000000..7b4515368 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.NonGeneric.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll new file mode 100644 index 000000000..3d04382ab Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.Specialized.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll new file mode 100644 index 000000000..a09c53039 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Collections.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll new file mode 100644 index 000000000..0857b8e5e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Annotations.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 000000000..1b93a6b55 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 000000000..ceaad81de Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll new file mode 100644 index 000000000..b002b20a9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll new file mode 100644 index 000000000..e0d655ee0 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll new file mode 100644 index 000000000..a4f1ab64a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ComponentModel.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll new file mode 100644 index 000000000..ba07a6d89 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Configuration.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll new file mode 100644 index 000000000..929d10560 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Console.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll new file mode 100644 index 000000000..a1219b922 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Core.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll new file mode 100644 index 000000000..d98027956 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.Common.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll new file mode 100644 index 000000000..75b184566 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.DataSetExtensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll new file mode 100644 index 000000000..28dd7b5d5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Data.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll new file mode 100644 index 000000000..d883bbf1c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Contracts.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll new file mode 100644 index 000000000..a8db445dd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Debug.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 000000000..afac747ed Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll new file mode 100644 index 000000000..76e50a2cb Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.EventLog.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 000000000..9cc1b7df7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll new file mode 100644 index 000000000..8e7771794 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Process.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll new file mode 100644 index 000000000..cb8f0e8f8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.StackTrace.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 000000000..2d969d25f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll new file mode 100644 index 000000000..28f9e7efa Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tools.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll new file mode 100644 index 000000000..0d7d38540 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.TraceSource.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll new file mode 100644 index 000000000..c38a193eb Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Diagnostics.Tracing.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll new file mode 100644 index 000000000..dd867f9bd Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll new file mode 100644 index 000000000..d93f8c69b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Drawing.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll new file mode 100644 index 000000000..921deb9d1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Dynamic.Runtime.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll new file mode 100644 index 000000000..ec695373c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Calendars.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll new file mode 100644 index 000000000..c9ba57759 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll new file mode 100644 index 000000000..f63cd8c33 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Globalization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll new file mode 100644 index 000000000..0379a2e22 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.Brotli.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll new file mode 100644 index 000000000..5bf044790 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.FileSystem.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll new file mode 100644 index 000000000..21b4f2db4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.ZipFile.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll new file mode 100644 index 000000000..7bd457ca1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Compression.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 000000000..b3587e947 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll new file mode 100644 index 000000000..73ae6de43 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll new file mode 100644 index 000000000..74c8de2bb Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll new file mode 100644 index 000000000..77af48a49 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.FileSystem.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll new file mode 100644 index 000000000..f6e789212 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.IsolatedStorage.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll new file mode 100644 index 000000000..e86c475e5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll new file mode 100644 index 000000000..cca2bd89f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipelines.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll new file mode 100644 index 000000000..df53660b0 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.Pipes.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 000000000..8a6041fa9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll new file mode 100644 index 000000000..9fa2121d4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.IO.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll new file mode 100644 index 000000000..8a8523039 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Expressions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll new file mode 100644 index 000000000..66f2fdb30 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Parallel.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll new file mode 100644 index 000000000..be49f0aff Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.Queryable.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll new file mode 100644 index 000000000..862f1b5c8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Linq.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll new file mode 100644 index 000000000..fe5365dd2 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Memory.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll new file mode 100644 index 000000000..acb4c1ede Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Http.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll new file mode 100644 index 000000000..8fb84a0d4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.HttpListener.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll new file mode 100644 index 000000000..dbd96428d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Mail.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll new file mode 100644 index 000000000..adc4b5b4a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NameResolution.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll new file mode 100644 index 000000000..293cd463e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.NetworkInformation.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll new file mode 100644 index 000000000..ec6f318e4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Ping.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll new file mode 100644 index 000000000..b8fb4b5df Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll new file mode 100644 index 000000000..02efa962f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Requests.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll new file mode 100644 index 000000000..956573b60 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Security.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll new file mode 100644 index 000000000..4402e1386 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.ServicePoint.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll new file mode 100644 index 000000000..871616d2d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.Sockets.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll new file mode 100644 index 000000000..e05a333ec Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebClient.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll new file mode 100644 index 000000000..c1757a561 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebHeaderCollection.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll new file mode 100644 index 000000000..d542d7464 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebProxy.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll new file mode 100644 index 000000000..854e5520d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.Client.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll new file mode 100644 index 000000000..01ee061b5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.WebSockets.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll new file mode 100644 index 000000000..a2362373c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Net.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll new file mode 100644 index 000000000..e392b9ca5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.Vectors.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll new file mode 100644 index 000000000..b00ee905f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Numerics.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll new file mode 100644 index 000000000..a8e56ee9e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ObjectModel.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll new file mode 100644 index 000000000..a156ed304 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.DispatchProxy.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 000000000..7f95ee287 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 000000000..1a99d68c4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll new file mode 100644 index 000000000..a293d70f5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Emit.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll new file mode 100644 index 000000000..5d3d85961 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll new file mode 100644 index 000000000..9519d3dda Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Metadata.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll new file mode 100644 index 000000000..50b2df27c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll new file mode 100644 index 000000000..d7b4faf47 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.TypeExtensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll new file mode 100644 index 000000000..8c985668b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Reflection.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll new file mode 100644 index 000000000..a6cef86ed Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Reader.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll new file mode 100644 index 000000000..c6997eb26 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.ResourceManager.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll new file mode 100644 index 000000000..2b8d2612d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Resources.Writer.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 000000000..d7a8f23cf Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 000000000..5f0b98ed1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll new file mode 100644 index 000000000..d802711ce Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll new file mode 100644 index 000000000..52cd3d79d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Handles.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 000000000..d30d39b0f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll new file mode 100644 index 000000000..7d3b89d26 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.WindowsRuntime.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll new file mode 100644 index 000000000..0fb143d72 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.InteropServices.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll new file mode 100644 index 000000000..8ae7d2697 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Intrinsics.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll new file mode 100644 index 000000000..c29380cc7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Loader.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll new file mode 100644 index 000000000..7b0b9105e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Numerics.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 000000000..72e17412a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll new file mode 100644 index 000000000..1f1983b5d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Json.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 000000000..678345a43 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll new file mode 100644 index 000000000..8703aa044 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll new file mode 100644 index 000000000..b55f3c326 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.Serialization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll new file mode 100644 index 000000000..40ceb7715 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Runtime.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll new file mode 100644 index 000000000..6908632f5 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.AccessControl.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll new file mode 100644 index 000000000..ed9b04259 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Claims.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 000000000..338e4db14 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll new file mode 100644 index 000000000..f4a4fc87d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Cng.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll new file mode 100644 index 000000000..73c9346db Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Csp.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll new file mode 100644 index 000000000..acd9a0df1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll new file mode 100644 index 000000000..44f6c3146 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 000000000..61202d6d1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll new file mode 100644 index 000000000..1fa47b70c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Cryptography.Xml.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll new file mode 100644 index 000000000..0b9f80fbe Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Permissions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll new file mode 100644 index 000000000..f8373f5c6 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.Windows.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll new file mode 100644 index 000000000..f782bbc79 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.Principal.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll new file mode 100644 index 000000000..040cfd5b9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.SecureString.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll new file mode 100644 index 000000000..f911034a1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Security.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll new file mode 100644 index 000000000..d54cb4b52 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceModel.Web.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll new file mode 100644 index 000000000..f0c2d53a9 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ServiceProcess.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll new file mode 100644 index 000000000..b00edb184 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.CodePages.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll new file mode 100644 index 000000000..7ae54eb82 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll new file mode 100644 index 000000000..81e2ae58d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encoding.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll new file mode 100644 index 000000000..d2d7aeca7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.Encodings.Web.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll new file mode 100644 index 000000000..ebd3000f3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Text.RegularExpressions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll new file mode 100644 index 000000000..07a1ab4f8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Channels.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll new file mode 100644 index 000000000..a83221e87 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Overlapped.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 000000000..4417c5e6d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll new file mode 100644 index 000000000..6b7846cf8 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll new file mode 100644 index 000000000..876fcb5f0 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll new file mode 100644 index 000000000..34814c135 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Tasks.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll new file mode 100644 index 000000000..2882ceec3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Thread.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll new file mode 100644 index 000000000..37ee3351e Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.ThreadPool.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll new file mode 100644 index 000000000..2d5602bf4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.Timer.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll new file mode 100644 index 000000000..9d0c4beb6 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Threading.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll new file mode 100644 index 000000000..d9822cb4c Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.Local.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll new file mode 100644 index 000000000..e67ffa39b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Transactions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll new file mode 100644 index 000000000..91b8927e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.ValueTuple.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll new file mode 100644 index 000000000..af89489e1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.HttpUtility.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll new file mode 100644 index 000000000..50e378854 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Web.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll new file mode 100644 index 000000000..ae64d99a7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.Extensions.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll new file mode 100644 index 000000000..68b989c8a Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Windows.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll new file mode 100644 index 000000000..b0d1a486b Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Linq.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll new file mode 100644 index 000000000..9c060de28 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.ReaderWriter.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll new file mode 100644 index 000000000..8b3e3f8d4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.Serialization.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll new file mode 100644 index 000000000..5b25fed2f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XDocument.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll new file mode 100644 index 000000000..3fb543958 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.XDocument.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll new file mode 100644 index 000000000..36c0419f6 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XPath.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll new file mode 100644 index 000000000..b0d46d295 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlDocument.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll new file mode 100644 index 000000000..f5522e7d3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.XmlSerializer.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll new file mode 100644 index 000000000..798ca6ee1 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.Xml.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll new file mode 100644 index 000000000..b3563248f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/System.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll new file mode 100644 index 000000000..c3fcb9fc6 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/WindowsBase.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll new file mode 100644 index 000000000..0d2b46cd3 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/mscorlib.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll new file mode 100644 index 000000000..a3968c570 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/bin/Debug/netcoreapp3.1/refs/netstandard.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfo.cs new file mode 100644 index 000000000..60fc26242 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("LINGYUN.Abp.SettingManagement.HttpApi")] +[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.Abp.SettingManagement.HttpApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("LINGYUN.Abp.SettingManagement.HttpApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache new file mode 100644 index 000000000..c77032b6d --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +9650140c07c3ca072f607fc5ef9eb305873681d5 diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.assets.cache new file mode 100644 index 000000000..e8845dd8d Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CopyComplete b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CoreCompileInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..c2e7a3d17 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ccda624f7bf374787571cc565659bb45d897aa20 diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..5069a59ea --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt @@ -0,0 +1,269 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Identity.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Session.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.CSharp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.ObjectPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.WebEncoders.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.JSInterop.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Net.Http.Headers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Registry.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\mscorlib.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\netstandard.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.AppContext.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Buffers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Concurrent.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Immutable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.NonGeneric.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Specialized.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Annotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.EventBasedAsync.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.TypeConverter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.DataSetExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.DiagnosticSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.FileVersionInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Process.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.StackTrace.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tools.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tracing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Dynamic.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Calendars.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.Brotli.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.ZipFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.DriveInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Watcher.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.IsolatedStorage.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.MemoryMappedFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipelines.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipes.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.UnmanagedMemoryStream.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Expressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Queryable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Memory.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.HttpListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Mail.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NameResolution.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NetworkInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Ping.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Requests.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.ServicePoint.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebClient.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebHeaderCollection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.Client.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.Vectors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ObjectModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.DispatchProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.ILGeneration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.Lightweight.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Metadata.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.TypeExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Reader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.ResourceManager.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Writer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Handles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.WindowsRuntime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Intrinsics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Loader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Formatters.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.AccessControl.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Claims.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Algorithms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Cng.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Csp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.X509Certificates.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Permissions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.SecureString.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceModel.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceProcess.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.CodePages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encodings.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.RegularExpressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Channels.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Overlapped.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Dataflow.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Thread.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.ThreadPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Timer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.Local.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ValueTuple.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.HttpUtility.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.ReaderWriter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlSerializer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\WindowsBase.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\LINGYUN.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\LINGYUN.Abp.SettingManagement.HttpApi.csproj.CoreCompileInputs.cache diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache new file mode 100644 index 000000000..28df53308 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll new file mode 100644 index 000000000..f726db54f Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb new file mode 100644 index 000000000..1420dfe72 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/LINGYUN.Abp.SettingManagement.HttpApi.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfo.cs b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfo.cs new file mode 100644 index 000000000..d2643fa6f --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Multicolin.Abp.SettingManagement.HttpApi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Multicolin.Abp.SettingManagement.HttpApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("Multicolin.Abp.SettingManagement.HttpApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache new file mode 100644 index 000000000..e04e68081 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61a51c501c065350460e4335d61f670530d9df1b diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.assets.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.assets.cache new file mode 100644 index 000000000..a7414acf4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.assets.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.CopyComplete b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..9b2378dee --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csproj.FileListAbsolute.txt @@ -0,0 +1,268 @@ +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.Application.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.Application.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfoInputs.cache +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.AssemblyInfo.cs +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.deps.json +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Identity.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Routing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.Session.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.CSharp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Hosting.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.ObjectPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Extensions.WebEncoders.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.JSInterop.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Net.Http.Headers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.VisualBasic.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\Microsoft.Win32.Registry.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\mscorlib.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\netstandard.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.AppContext.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Buffers.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Concurrent.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Immutable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.NonGeneric.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Collections.Specialized.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Annotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.DataAnnotations.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.EventBasedAsync.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ComponentModel.TypeConverter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Configuration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Console.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Core.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.Common.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.DataSetExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Data.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Contracts.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Debug.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.DiagnosticSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.EventLog.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.FileVersionInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Process.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.StackTrace.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tools.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.TraceSource.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Diagnostics.Tracing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Drawing.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Dynamic.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Calendars.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Globalization.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.Brotli.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Compression.ZipFile.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.DriveInfo.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.FileSystem.Watcher.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.IsolatedStorage.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.MemoryMappedFiles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipelines.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.Pipes.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.IO.UnmanagedMemoryStream.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Expressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Linq.Queryable.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Memory.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Http.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.HttpListener.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Mail.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NameResolution.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.NetworkInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Ping.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Requests.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.ServicePoint.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.Sockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebClient.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebHeaderCollection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.Client.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Net.WebSockets.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Numerics.Vectors.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ObjectModel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.DispatchProxy.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.ILGeneration.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Emit.Lightweight.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Metadata.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Reflection.TypeExtensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Reader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.ResourceManager.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Resources.Writer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Handles.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.InteropServices.WindowsRuntime.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Intrinsics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Loader.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Numerics.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Formatters.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Json.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Runtime.Serialization.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.AccessControl.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Claims.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Algorithms.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Cng.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Csp.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Primitives.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.X509Certificates.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Cryptography.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Permissions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.Principal.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Security.SecureString.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceModel.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ServiceProcess.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.CodePages.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encoding.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.Encodings.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Text.RegularExpressions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Channels.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Overlapped.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Dataflow.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Tasks.Parallel.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Thread.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.ThreadPool.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Threading.Timer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Transactions.Local.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.ValueTuple.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Web.HttpUtility.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Windows.Extensions.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Linq.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.ReaderWriter.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.Serialization.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XmlSerializer.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\System.Xml.XPath.XDocument.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\refs\WindowsBase.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.Application.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\bin\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.Application.Contracts.pdb +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.csproj.CopyComplete +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.dll +D:\Projects\MicroService\CRM\Multicolin.MicroService\modules\settings\Multicolin.Abp.SettingManagement.HttpApi\obj\Debug\netcoreapp3.1\Multicolin.Abp.SettingManagement.HttpApi.pdb diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache new file mode 100644 index 000000000..76b37f0f4 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.csprojAssemblyReference.cache differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll new file mode 100644 index 000000000..e8114ddc7 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.dll differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb new file mode 100644 index 000000000..924226811 Binary files /dev/null and b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Debug/netcoreapp3.1/Multicolin.Abp.SettingManagement.HttpApi.pdb differ diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.cache new file mode 100644 index 000000000..ae8ebd613 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "OuqZxVdpMod9snnZ/mxqAoWUFOJ6L3xcgLApINhjYq/OPJhD/Ww1WvTRB1eSEtE4tmGivnf39LKhVnsA6hr3UA==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json new file mode 100644 index 000000000..171748c08 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json @@ -0,0 +1,217 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.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\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application.Contracts\\LINGYUN.Abp.SettingManagement.Application.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.SettingManagement.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" + } + } + }, + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.HttpApi", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\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": [ + "netcoreapp3.1" + ], + "sources": { + "D:\\NugetLocal": {}, + "http://10.21.15.28:8081/repository/nuget-hosted/": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Volo.Abp.AspNetCore.Mvc": { + "target": "Package", + "version": "[2.7.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.props new file mode 100644 index 000000000..acc7b7ec1 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + 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.5.0 + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + Volo.Abp.AspNetCore.Mvc + 2.7.0 + Content + False + Properties\launchSettings.json + + + + C:\Users\iVarKey\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.3 + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets new file mode 100644 index 000000000..5155aa6c7 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/LINGYUN.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.cache new file mode 100644 index 000000000..2a613a0bc --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.cache @@ -0,0 +1,5 @@ +{ + "version": 1, + "dgSpecHash": "8Epltt7sdXB2Sxnm4qMXBjuk7Um9bPyCysD6Q6Rs8cM6UJP1fUrwBB7506OBs6UbTT9LvvdPkfIWpXQNtis9HA==", + "success": true +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json new file mode 100644 index 000000000..be05394ae --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.dgspec.json @@ -0,0 +1,214 @@ +{ + "format": 1, + "restore": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.HttpApi\\Multicolin.Abp.SettingManagement.HttpApi.csproj": {} + }, + "projects": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "projectName": "Multicolin.Abp.SettingManagement.Application.Contracts", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.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": {} + } + }, + "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, )" + }, + "Volo.Abp.SettingManagement.Domain.Shared": { + "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\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj", + "projectName": "Multicolin.Abp.SettingManagement.Application", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.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\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application.Contracts\\Multicolin.Abp.SettingManagement.Application.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.0": { + "dependencies": { + "NETStandard.Library": { + "suppressParent": "All", + "target": "Package", + "version": "[2.0.3, )", + "autoReferenced": true + }, + "Volo.Abp.SettingManagement.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" + } + } + }, + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.HttpApi\\Multicolin.Abp.SettingManagement.HttpApi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.HttpApi\\Multicolin.Abp.SettingManagement.HttpApi.csproj", + "projectName": "Multicolin.Abp.SettingManagement.HttpApi", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.HttpApi\\Multicolin.Abp.SettingManagement.HttpApi.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.HttpApi\\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": [ + "netcoreapp3.1" + ], + "sources": { + "D:\\NugetLocal": {}, + "http://10.21.15.28:8081/repository/nuget-hosted/": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": { + "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Multicolin.MicroService\\modules\\settings\\Multicolin.Abp.SettingManagement.Application\\Multicolin.Abp.SettingManagement.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Volo.Abp.AspNetCore.Mvc": { + "target": "Package", + "version": "[2.7.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.props b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.props new file mode 100644 index 000000000..cc9562941 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + 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) + + + + Volo.Abp.AspNetCore.Mvc + 2.7.0 + Content + False + Properties\launchSettings.json + + + + C:\Users\iVarKey\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.3 + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets new file mode 100644 index 000000000..5155aa6c7 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/Multicolin.Abp.SettingManagement.HttpApi.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.assets.json b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.assets.json new file mode 100644 index 000000000..fb6e92964 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.assets.json @@ -0,0 +1,4917 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "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/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "12.0.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Metadata/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "3.1.2", + "Newtonsoft.Json": "12.0.2", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "3.1.2", + "Microsoft.CodeAnalysis.Razor": "3.1.2", + "Microsoft.Extensions.DependencyModel": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "2.9.3", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.3", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.2", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.3.0]" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "3.1.2", + "Microsoft.CodeAnalysis.CSharp": "3.3.0", + "Microsoft.CodeAnalysis.Common": "3.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Json": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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.DependencyModel/3.1.2": { + "type": "package", + "dependencies": { + "System.Text.Json": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/3.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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.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/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/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/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.2": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "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/_._": {} + } + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.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": {} + } + }, + "NUglify/1.5.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NUglify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NUglify.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", + "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.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/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", + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/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", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "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/_._": {} + }, + "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/_._": {} + }, + "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.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "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.5.2": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.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.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Json/4.7.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.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.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {} + } + }, + "Volo.Abp.AspNetCore/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Auditing": "2.7.0", + "Volo.Abp.Authorization": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.Http": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.Security": "2.7.0", + "Volo.Abp.UI": "2.7.0", + "Volo.Abp.Uow": "2.7.0", + "Volo.Abp.Validation": "2.7.0", + "Volo.Abp.VirtualFileSystem": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "3.1.2", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "3.1.2", + "Microsoft.AspNetCore.Mvc.Versioning": "4.1.0", + "Volo.Abp.ApiVersioning.Abstractions": "2.7.0", + "Volo.Abp.AspNetCore": "2.7.0", + "Volo.Abp.AspNetCore.Mvc.Contracts": "2.7.0", + "Volo.Abp.Localization": "2.7.0", + "Volo.Abp.UI": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll": {} + }, + "contentFiles": { + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Ddd.Application": "2.7.0" + }, + "compile": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.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.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/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Http.Abstractions": "2.7.0", + "Volo.Abp.Json": "2.7.0", + "Volo.Abp.Minify": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Http.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.Minify/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "NUglify": "1.5.13", + "Volo.Abp.Core": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.Minify.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.Minify.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.SettingManagement.Domain/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Caching": "2.7.0", + "Volo.Abp.Ddd.Domain": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0", + "Volo.Abp.Settings": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll": {} + } + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.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.UI/2.7.0": { + "type": "package", + "dependencies": { + "ConfigureAwait.Fody": "3.3.1", + "Volo.Abp.Localization": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/Volo.Abp.UI.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Volo.Abp.UI.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.Abp.SettingManagement.Application/1.0.0": { + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "LINGYUN.Abp.SettingManagement.Application.Contracts": "1.0.0", + "Volo.Abp.SettingManagement.Domain": "2.7.0" + }, + "compile": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.dll": {} + }, + "runtime": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.dll": {} + } + }, + "LINGYUN.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Volo.Abp.Ddd.Application": "2.7.0", + "Volo.Abp.SettingManagement.Domain.Shared": "2.7.0" + }, + "compile": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/LINGYUN.Abp.SettingManagement.Application.Contracts.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.JsonPatch/3.1.2": { + "sha512": "fdrF8gZnWy/sAtRgV6IMRr9V6t8nfTqS6VpzPUnCqe8vFnWlJP/J45LULpQfRCuyq7Mdk1qoDOnT9S9qI0Exqw==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.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.AspNetCore.Mvc.NewtonsoftJson/3.1.2": { + "sha512": "pa3e4g6ppyn8fJHYxJCuMfCqIp2e8VWF2Cgl4XmQV3dnJHoGMZnZFnmnCNVsdQKbLTFpDiox2r48/KDo0czV2Q==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/3.1.2": { + "sha512": "/4EqGr6fZWqKGh44iWqnHktattiEEMu4QpNaEoWGepLdRme+hS+9bxUDO7SwVGG8pdcDf2EAUEZ/FqoViCYDIA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml", + "microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/3.1.2": { + "sha512": "AcUZX2rkjccGaBosUfu5PYdzSM3/FkmC0y9UyyoneXz/iVGiLUeXZZtGOzYPxpkg5G1yyMtag50BCq6yMm0mTA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Versioning/4.1.0": { + "sha512": "QuFIocMUP8K9+QrjLNio6uD3CE805afEJNz9qaEPl0ah2D2iQrmEW3bD5+LfathtdVS4MkmmgEVrhJBP1yFOFA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.versioning/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "icon.png", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.pdb", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.pdb", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Versioning.xml", + "microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.versioning.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/3.1.2": { + "sha512": "VttbHyOJLKtaW57Zv7wUaKmgx6EZ5O7FjXMrBMzQu6DXfFTW79le/rzDeBcqhGeeji2rKuzBMrehyCbRal+reA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml", + "microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/2.9.3": { + "sha512": "cDKEoHdg3icjLrn9EJ4KIkJG+ahU1YouhB0J8EARhj6fTqA/3oUneak0hWbToLOBLOTePu/Oc1QEA4mwmMEYVA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/2.9.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/3.3.0": { + "sha512": "hK0BGWD2ZlTCZ/KD84LQrD95lwJuRg8++uVGeiLq+klmcsNf3g7j/QvXowZX5Wi+oL9egCFxI7d3A4GtpQAl0A==", + "type": "package", + "path": "microsoft.codeanalysis.common/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.3.3.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/3.3.0": { + "sha512": "C0acBZTXLgi72UpV+E2zT+joclyPxNQ+zuHnvE0bS6hJA4i7kBBdW7qaLEwVP6a9MrrtL869StzvXqMc/0PvTg==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/3.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/3.1.2": { + "sha512": "blQr2sK7c8XhmImjUf/4KOlhJJ3mxHuUj2drw+0gwH2rf+/18C/1g3CJN5DZ/2IHsFvYFbb9zcnrXor5+mZI+w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml", + "microsoft.codeanalysis.razor.3.1.2.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.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/netstandard2.0/Microsoft.CSharp.xml", + "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.7.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.DependencyModel/3.1.2": { + "sha512": "AZR4ChHbwEHArC6iuLyf5Pr7BANayuVGcDUzuF+HoX5P1MTxFnyJu7cYOgRwPWAgIDZftqqeOm4LbGIQnQXsTw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.3.1.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.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/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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" + ] + }, + "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" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "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" + ] + }, + "NUglify/1.5.13": { + "sha512": "EgvMq0u3PEeKv6uypBvau999iNSOSYdayZcxsgS9TBWIqs63WIWI/syl7cOs82J54xJnS3STpKZAW4SZElGIqg==", + "type": "package", + "path": "nuglify/1.5.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.5.13.nupkg.sha512", + "nuglify.nuspec" + ] + }, + "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.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.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.5.2": { + "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.2", + "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.5.2.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.Encoding.CodePages/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.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.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "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.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Volo.Abp.ApiVersioning.Abstractions/2.7.0": { + "sha512": "IVb+mn9clcLztIixCuZaUHzOpPeHOMKm+LKsvViNblmuyYstJJyaquMTrnEV/jlWbICPDeBux5W+Eu50tD3tNg==", + "type": "package", + "path": "volo.abp.apiversioning.abstractions/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll", + "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.pdb", + "volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512", + "volo.abp.apiversioning.abstractions.nuspec" + ] + }, + "Volo.Abp.AspNetCore/2.7.0": { + "sha512": "V0Xmn2dqjpdXYf6xOWZHW5t+qipr3ReAgYrcCsP0GMdEtuLLa0SBPk2bk9V7cfwkAgYrtETFkSbdYLhOsm/OFg==", + "type": "package", + "path": "volo.abp.aspnetcore/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "content/Properties/launchSettings.json", + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.pdb", + "volo.abp.aspnetcore.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.nuspec" + ] + }, + "Volo.Abp.AspNetCore.Mvc/2.7.0": { + "sha512": "60bM5mtr+bQD0gaDZQ5DZ8egApJt92MtNcW6XrxCh7LMoJJJZhMRyicx6IGqztwyvV3r7+YqYpI0FjtDfWsPfg==", + "type": "package", + "path": "volo.abp.aspnetcore.mvc/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "content/Properties/launchSettings.json", + "contentFiles/any/netcoreapp3.1/Properties/launchSettings.json", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.pdb", + "volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.mvc.nuspec" + ] + }, + "Volo.Abp.AspNetCore.Mvc.Contracts/2.7.0": { + "sha512": "J2AsYy3P1UGWBdYwj/uhEoNpw9/fjIHYeHV748BHzV4bv6Zqb/c97h2pWhkmk1gL9r3+5NsZJBd/mktNA9iLPw==", + "type": "package", + "path": "volo.abp.aspnetcore.mvc.contracts/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.dll", + "lib/netcoreapp3.1/Volo.Abp.AspNetCore.Mvc.Contracts.pdb", + "volo.abp.aspnetcore.mvc.contracts.2.7.0.nupkg.sha512", + "volo.abp.aspnetcore.mvc.contracts.nuspec" + ] + }, + "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.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/2.7.0": { + "sha512": "qMvj50fEVNCEzRd5IsjEy21HgAccqGSyuwV3oOPxeWJXsyltLtj/0E8Gcg3q+3yJj8D6WjE+DxTzF9ZJUoaB/A==", + "type": "package", + "path": "volo.abp.http/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Http.dll", + "lib/netstandard2.0/Volo.Abp.Http.pdb", + "volo.abp.http.2.7.0.nupkg.sha512", + "volo.abp.http.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.Minify/2.7.0": { + "sha512": "DYGNPy2SKwmpQh5PRKwhbggUEuzUwZ9FcjNYI0+4yo4ZwcWxM+Af/1k2vbr2R8J1RmdBeT7tusoNQXMoZ53mpQ==", + "type": "package", + "path": "volo.abp.minify/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.Minify.dll", + "lib/netstandard2.0/Volo.Abp.Minify.pdb", + "volo.abp.minify.2.7.0.nupkg.sha512", + "volo.abp.minify.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.SettingManagement.Domain/2.7.0": { + "sha512": "qa4Lj+oxjbBy7Q5zS6orTavJ1HdluHYMAt6VU5X87/ixZus81MvV1I8msoBOChOelsDHO9lrYp7B6zl3lOuPIw==", + "type": "package", + "path": "volo.abp.settingmanagement.domain/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.dll", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.pdb", + "volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512", + "volo.abp.settingmanagement.domain.nuspec" + ] + }, + "Volo.Abp.SettingManagement.Domain.Shared/2.7.0": { + "sha512": "Md5NTyuS9k+ooXew5YbyAxCcJUMZs4uMQBrN2JXPxeOC/UvHpNbmtUhqRqttikTbi8DhnOOd8jB+W+V2IHX15g==", + "type": "package", + "path": "volo.abp.settingmanagement.domain.shared/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.dll", + "lib/netstandard2.0/Volo.Abp.SettingManagement.Domain.Shared.pdb", + "volo.abp.settingmanagement.domain.shared.2.7.0.nupkg.sha512", + "volo.abp.settingmanagement.domain.shared.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.UI/2.7.0": { + "sha512": "YjDr9Fb5HAvejzLNra9RGjJSwtOKY5k7+STMNWkCVwpPagLOxyAUvtytseOoWg3n7FGxYVvUYJYlRcgM8kX9vA==", + "type": "package", + "path": "volo.abp.ui/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Volo.Abp.UI.dll", + "lib/netstandard2.0/Volo.Abp.UI.pdb", + "volo.abp.ui.2.7.0.nupkg.sha512", + "volo.abp.ui.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.Abp.SettingManagement.Application/1.0.0": { + "type": "project", + "path": "../LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj", + "msbuildProject": "../LINGYUN.Abp.SettingManagement.Application/LINGYUN.Abp.SettingManagement.Application.csproj" + }, + "LINGYUN.Abp.SettingManagement.Application.Contracts/1.0.0": { + "type": "project", + "path": "../LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj", + "msbuildProject": "../LINGYUN.Abp.SettingManagement.Application.Contracts/LINGYUN.Abp.SettingManagement.Application.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "LINGYUN.Abp.SettingManagement.Application >= 1.0.0", + "Volo.Abp.AspNetCore.Mvc >= 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\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj", + "projectName": "LINGYUN.Abp.SettingManagement.HttpApi", + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.csproj", + "packagesPath": "C:\\Users\\iVarKey\\.nuget\\packages\\", + "outputPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\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": [ + "netcoreapp3.1" + ], + "sources": { + "D:\\NugetLocal": {}, + "http://10.21.15.28:8081/repository/nuget-hosted/": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": { + "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj": { + "projectPath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.Application\\LINGYUN.Abp.SettingManagement.Application.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Volo.Abp.AspNetCore.Mvc": { + "target": "Package", + "version": "[2.7.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files (x86)\\dotnet\\sdk\\3.1.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.nuget.cache b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.nuget.cache new file mode 100644 index 000000000..bd2225055 --- /dev/null +++ b/aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.HttpApi/obj/project.nuget.cache @@ -0,0 +1,127 @@ +{ + "version": 2, + "dgSpecHash": "eu7xQFyTpkfU9nwQttacjJl/362gwfo4uTKW0GbvctNBS0OT6ZUeb6RYjWpb+PFbIhzw458QAzwu3m9RDnsCwg==", + "success": true, + "projectFilePath": "D:\\Projects\\MicroService\\CRM\\Vue\\vue-abp\\aspnet-core\\modules\\settings\\LINGYUN.Abp.SettingManagement.HttpApi\\LINGYUN.Abp.SettingManagement.HttpApi.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.jsonpatch\\3.1.2\\microsoft.aspnetcore.jsonpatch.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.aspnetcore.mvc.newtonsoftjson\\3.1.2\\microsoft.aspnetcore.mvc.newtonsoftjson.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\3.1.2\\microsoft.aspnetcore.mvc.razor.extensions.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\3.1.2\\microsoft.aspnetcore.mvc.razor.runtimecompilation.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning\\4.1.0\\microsoft.aspnetcore.mvc.versioning.4.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\3.1.2\\microsoft.aspnetcore.razor.language.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\2.9.3\\microsoft.codeanalysis.analyzers.2.9.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.common\\3.3.0\\microsoft.codeanalysis.common.3.3.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.3.0\\microsoft.codeanalysis.csharp.3.3.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.codeanalysis.razor\\3.1.2\\microsoft.codeanalysis.razor.3.1.2.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.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.dependencymodel\\3.1.2\\microsoft.extensions.dependencymodel.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:\\Users\\iVarKey\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Program Files (x86)\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.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:\\Users\\iVarKey\\.nuget\\packages\\nuglify\\1.5.13\\nuglify.1.5.13.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.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.metadata\\1.6.0\\system.reflection.metadata.1.6.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.5.2\\system.runtime.compilerservices.unsafe.4.5.2.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.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.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.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.apiversioning.abstractions\\2.7.0\\volo.abp.apiversioning.abstractions.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore\\2.7.0\\volo.abp.aspnetcore.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore.mvc\\2.7.0\\volo.abp.aspnetcore.mvc.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.aspnetcore.mvc.contracts\\2.7.0\\volo.abp.aspnetcore.mvc.contracts.2.7.0.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.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\\2.7.0\\volo.abp.http.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.minify\\2.7.0\\volo.abp.minify.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.settingmanagement.domain\\2.7.0\\volo.abp.settingmanagement.domain.2.7.0.nupkg.sha512", + "C:\\Users\\iVarKey\\.nuget\\packages\\volo.abp.settingmanagement.domain.shared\\2.7.0\\volo.abp.settingmanagement.domain.shared.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.ui\\2.7.0\\volo.abp.ui.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/services/account/AuthServer.Host/.gitignore b/aspnet-core/services/account/AuthServer.Host/.gitignore new file mode 100644 index 000000000..79774a567 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/.gitignore @@ -0,0 +1,7 @@ +bin +obj +Logs +appsettings.*.json +node_modules +yarn.lock +package-lock.json \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/AuthIdentityServerModule.cs b/aspnet-core/services/account/AuthServer.Host/AuthIdentityServerModule.cs new file mode 100644 index 000000000..7a74b5e05 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/AuthIdentityServerModule.cs @@ -0,0 +1,187 @@ +using LINGYUN.ApiGateway; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Cors; +using Microsoft.AspNetCore.DataProtection; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Microsoft.OpenApi.Models; +using StackExchange.Redis; +using System; +using System.Linq; +using Volo.Abp; +using Volo.Abp.Account; +using Volo.Abp.Account.Web; +using Volo.Abp.AspNetCore.Authentication.JwtBearer; +using Volo.Abp.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy; +using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic; +using Volo.Abp.Auditing; +using Volo.Abp.Autofac; +using Volo.Abp.Data; +using Volo.Abp.EntityFrameworkCore; +using Volo.Abp.EntityFrameworkCore.MySQL; +using Volo.Abp.Identity; +using Volo.Abp.Identity.EntityFrameworkCore; +using Volo.Abp.IdentityServer; +using Volo.Abp.IdentityServer.EntityFrameworkCore; +using Volo.Abp.Localization; +using Volo.Abp.Modularity; +using Volo.Abp.MultiTenancy; +using Volo.Abp.PermissionManagement.EntityFrameworkCore; +using Volo.Abp.PermissionManagement.HttpApi; +using Volo.Abp.PermissionManagement.Identity; +using Volo.Abp.SettingManagement.EntityFrameworkCore; +using Volo.Abp.TenantManagement.EntityFrameworkCore; +using Volo.Abp.Threading; +using Volo.Abp.UI.Navigation.Urls; + +using AbpPermissionManagementApplicationModule = LINGYUN.Abp.PermissionManagement.AbpPermissionManagementApplicationModule; + +namespace AuthServer.Host +{ + [DependsOn( + typeof(ApiGatewayApplicationContractsModule), + typeof(AbpAccountApplicationModule), + typeof(AbpAccountWebIdentityServerModule), + typeof(AbpAspNetCoreMvcUiMultiTenancyModule), + typeof(AbpAspNetCoreMvcModule), + typeof(AbpAspNetCoreMvcUiBasicThemeModule), + typeof(AbpAutofacModule), + typeof(AbpEntityFrameworkCoreMySQLModule), + typeof(AbpIdentityHttpApiModule), + typeof(AbpIdentityApplicationModule), + typeof(AbpIdentityEntityFrameworkCoreModule), + typeof(AbpIdentityServerEntityFrameworkCoreModule), + typeof(AbpSettingManagementEntityFrameworkCoreModule), + typeof(AbpTenantManagementEntityFrameworkCoreModule), + typeof(AbpPermissionManagementDomainIdentityModule), + typeof(AbpPermissionManagementApplicationModule), + typeof(AbpPermissionManagementHttpApiModule), + typeof(AbpPermissionManagementEntityFrameworkCoreModule), + typeof(AbpAspNetCoreAuthenticationJwtBearerModule) + )] + public class AuthIdentityServerModule : AbpModule + { + private const string DefaultCorsPolicyName = "Default"; + + public override void ConfigureServices(ServiceConfigurationContext context) + { + var hostingEnvironment = context.Services.GetHostingEnvironment(); + var configuration = context.Services.GetConfiguration(); + + Configure(options => + { + options.UseMySQL(); + }); + + context.Services.AddSwaggerGen( + options => + { + options.SwaggerDoc("v1", new OpenApiInfo { Title = "AuthServer API", Version = "v1" }); + options.DocInclusionPredicate((docName, description) => true); + options.CustomSchemaIds(type => type.FullName); + }); + + Configure(options => + { + options.Languages.Add(new LanguageInfo("en", "en", "English")); + options.Languages.Add(new LanguageInfo("zh-Hans", "zh-Hans", "简体中文")); + }); + + Configure(options => + { + // options.IsEnabledForGetRequests = true; + options.ApplicationName = "AuthServer"; + }); + + Configure(options => + { + options.Applications["MVC"].RootUrl = configuration["App:SelfUrl"]; + }); + + context.Services.AddAuthentication() + .AddIdentityServerAuthentication(options => + { + options.Authority = configuration["AuthServer:Authority"]; + options.RequireHttpsMetadata = false; + options.ApiName = configuration["AuthServer:ApiName"]; + }); + + Configure(options => + { + options.IsEnabled = true; + }); + + context.Services.AddStackExchangeRedisCache(options => + { + options.InstanceName = configuration["Redis:InstanceName"]; + options.Configuration = configuration["Redis:Configuration"]; + }); + + if (!hostingEnvironment.IsDevelopment()) + { + var redis = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]); + context.Services + .AddDataProtection() + .PersistKeysToStackExchangeRedis(redis, "AuthServer-Protection-Keys"); + } + + context.Services.AddCors(options => + { + options.AddPolicy(DefaultCorsPolicyName, builder => + { + builder + .WithOrigins( + configuration["App:CorsOrigins"] + .Split(",", StringSplitOptions.RemoveEmptyEntries) + .Select(o => o.RemovePostFix("/")) + .ToArray() + ) + .WithAbpExposedHeaders() + .SetIsOriginAllowedToAllowWildcardSubdomains() + .AllowAnyHeader() + .AllowAnyMethod() + .AllowCredentials(); + }); + }); + } + + public override void OnApplicationInitialization(ApplicationInitializationContext context) + { + var app = context.GetApplicationBuilder(); + + app.UseCorrelationId(); + app.UseVirtualFiles(); + app.UseRouting(); + app.UseCors(DefaultCorsPolicyName); + app.UseAuthentication(); + app.UseJwtTokenMiddleware(); + app.UseMultiTenancy(); + app.UseIdentityServer(); + app.UseAbpRequestLocalization(); + app.UseSwagger(); + app.UseSwaggerUI(options => + { + options.SwaggerEndpoint("/swagger/v1/swagger.json", "Support AuthServer API"); + }); + app.UseAuditing(); + app.UseMvcWithDefaultRouteAndArea(); + + SeedData(context); + } + + private void SeedData(ApplicationInitializationContext context) + { + AsyncHelper.RunSync(async () => + { + using (var scope = context.ServiceProvider.CreateScope()) + { + await scope.ServiceProvider + .GetRequiredService() + .SeedAsync(); + } + }); + } + } +} diff --git a/aspnet-core/services/account/AuthServer.Host/AuthServer.Host.csproj b/aspnet-core/services/account/AuthServer.Host/AuthServer.Host.csproj new file mode 100644 index 000000000..2f89dc015 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/AuthServer.Host.csproj @@ -0,0 +1,62 @@ + + + + netcoreapp3.1 + InProcess + + + + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + + + + + + + + + + + + + + + Always + + + Always + + + + + + + + + + diff --git a/aspnet-core/services/account/AuthServer.Host/IdentityServer/IdentityServerDataSeedContributor.cs b/aspnet-core/services/account/AuthServer.Host/IdentityServer/IdentityServerDataSeedContributor.cs new file mode 100644 index 000000000..f05e4d42a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/IdentityServer/IdentityServerDataSeedContributor.cs @@ -0,0 +1,256 @@ +using Microsoft.Extensions.Configuration; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using Volo.Abp.Authorization.Permissions; +using Volo.Abp.Data; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Guids; +using Volo.Abp.IdentityServer.ApiResources; +using Volo.Abp.IdentityServer.Clients; +using Volo.Abp.IdentityServer.IdentityResources; +using Volo.Abp.PermissionManagement; +using Volo.Abp.Uow; + +namespace Multicolin.Aftermarket.IdentityServer +{ + public class IdentityServerDataSeedContributor : IDataSeedContributor, ITransientDependency + { + private readonly IApiResourceRepository _apiResourceRepository; + private readonly IClientRepository _clientRepository; + private readonly IIdentityResourceDataSeeder _identityResourceDataSeeder; + private readonly IPermissionDataSeeder _permissionDataSeeder; + private readonly IGuidGenerator _guidGenerator; + private readonly IConfiguration _configuration; + + public IdentityServerDataSeedContributor( + IClientRepository clientRepository, + IPermissionDataSeeder permissionDataSeeder, + IApiResourceRepository apiResourceRepository, + IIdentityResourceDataSeeder identityResourceDataSeeder, + IGuidGenerator guidGenerator) + { + _clientRepository = clientRepository; + _permissionDataSeeder = permissionDataSeeder; + _apiResourceRepository = apiResourceRepository; + _identityResourceDataSeeder = identityResourceDataSeeder; + _guidGenerator = guidGenerator; + var env = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? "Production"; + var configuration = new ConfigurationBuilder() + .SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile($"appsettings.{env}.json", optional: false, reloadOnChange: true) + .AddEnvironmentVariables() + .Build(); + _configuration = configuration; + } + + [UnitOfWork] + public virtual async Task SeedAsync(DataSeedContext context) + { + await _identityResourceDataSeeder.CreateStandardResourcesAsync(); + await CreateApiResourcesAsync(); + await CreateClientsAsync(); + } + + private async Task CreateApiResourcesAsync() + { + var commonApiUserClaims = new[] + { + "email", + "email_verified", + "name", + "phone_number", + "phone_number_verified", + "role" + }; + + await CreateApiResourceAsync("auth-service", commonApiUserClaims); + + var apigatewaySecret = new[] + { + "defj98734htgrb90365D23" + }; + await CreateApiResourceAsync("apigateway-service", commonApiUserClaims.Union(new[] { "apigateway-service" }), apigatewaySecret); + } + + private async Task CreateApiResourceAsync(string name, IEnumerable claims, IEnumerable secrets = null) + { + var apiResource = await _apiResourceRepository.FindByNameAsync(name); + if (apiResource == null) + { + apiResource = await _apiResourceRepository.InsertAsync( + new ApiResource( + _guidGenerator.Create(), + name, + name + " API" + ), + autoSave: true + ); + } + + foreach (var claim in claims) + { + if (apiResource.FindClaim(claim) == null) + { + apiResource.AddUserClaim(claim); + } + } + if (secrets != null) + { + foreach (var secret in secrets) + { + if (apiResource.FindSecret(secret) == null) + { + apiResource.AddSecret(secret); + } + } + } + + return await _apiResourceRepository.UpdateAsync(apiResource); + } + + private async Task CreateClientsAsync() + { + const string commonSecret = "E5Xd4yMqjP5kjWFKrYgySBju6JVfCzMyFp7n2QmMrME="; + + var commonScopes = new[] + { + "email", + "openid", + "profile", + "role", + "phone", + "address" + }; + + var configurationSection = _configuration.GetSection("IdentityServer:Clients"); + + //Web Client + var webClientId = configurationSection["AuthManagement:ClientId"]; + if (!webClientId.IsNullOrWhiteSpace()) + { + var webClientRootUrl = configurationSection["AuthManagement:RootUrl"].EnsureEndsWith('/'); + await CreateClientAsync( + webClientId, + commonScopes.Union(new[] { "auth-service" }), + new[] { "hybrid" }, + commonSecret, + redirectUri: $"{webClientRootUrl}signin-oidc", + postLogoutRedirectUri: $"{webClientRootUrl}signout-callback-oidc" + ); + } + + //Console Test Client + var consoleClientId = configurationSection["AuthVueAdmin:ClientId"]; + if (!consoleClientId.IsNullOrWhiteSpace()) + { + await CreateClientAsync( + consoleClientId, + commonScopes.Union(new[] { "auth-service", "apigateway-service" }), + new[] { "password", "client_credentials" }, + commonSecret + ); + } + + //ApiGateway + var apigatewayClientId = configurationSection["AuthApiGateway:ClientId"]; + if (!apigatewayClientId.IsNullOrWhiteSpace()) + { + var apigatewayPermissions = new string[8] + { + "ApiGateway.Global", "ApiGateway.Global.Export", + "ApiGateway.Route", "ApiGateway.Route.Export", + "ApiGateway.DynamicRoute", "ApiGateway.DynamicRoute.Export", + "ApiGateway.AggregateRoute", "ApiGateway.AggregateRoute.Export", + }; + await CreateClientAsync( + apigatewayClientId, + commonScopes.Union(new[] { "apigateway-service" }), + new[] { "client_credentials" }, + commonSecret, + permissions: apigatewayPermissions + ); + } + } + + private async Task CreateClientAsync( + string name, + IEnumerable scopes, + IEnumerable grantTypes, + string secret, + string redirectUri = null, + string postLogoutRedirectUri = null, + IEnumerable permissions = null) + { + var client = await _clientRepository.FindByCliendIdAsync(name); + if (client == null) + { + client = await _clientRepository.InsertAsync( + new Client( + _guidGenerator.Create(), + name + ) + { + ClientName = name, + ProtocolType = "oidc", + Description = name, + AlwaysIncludeUserClaimsInIdToken = true, + AllowOfflineAccess = true, + AbsoluteRefreshTokenLifetime = 10800, //3 hours + AccessTokenLifetime = 7200, //2 hours + AuthorizationCodeLifetime = 300, + IdentityTokenLifetime = 300, + RequireConsent = false + }, + autoSave: true + ); + } + + foreach (var scope in scopes) + { + if (client.FindScope(scope) == null) + { + client.AddScope(scope); + } + } + + foreach (var grantType in grantTypes) + { + if (client.FindGrantType(grantType) == null) + { + client.AddGrantType(grantType); + } + } + + if (client.FindSecret(secret) == null) + { + client.AddSecret(secret); + } + + if (redirectUri != null) + { + if (client.FindRedirectUri(redirectUri) == null) + { + client.AddRedirectUri(redirectUri); + } + } + + if (postLogoutRedirectUri != null) + { + if (client.FindPostLogoutRedirectUri(postLogoutRedirectUri) == null) + { + client.AddPostLogoutRedirectUri(postLogoutRedirectUri); + } + } + + if(permissions != null) + { + await _permissionDataSeeder.SeedAsync(ClientPermissionValueProvider.ProviderName, name, permissions); + } + + return await _clientRepository.UpdateAsync(client); + } + } +} diff --git a/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml b/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml new file mode 100644 index 000000000..af68a4616 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml @@ -0,0 +1,34 @@ +@page +@using AuthServer.Host.Pages +@using Volo.Abp.Users +@model IndexModel +@inject ICurrentUser CurrentUser +@if (CurrentUser.IsAuthenticated) +{ +
+ + + + Logout + + +

@CurrentUser.UserName

+
@CurrentUser.Email
+
+ Roles: @CurrentUser.Roles.JoinAsString(", ") +
+ Claims:
+ @Html.Raw(CurrentUser.GetAllClaims().Select(c => $"{c.Type}={c.Value}").JoinAsString("
")) +
+
+
+
+} + +@if (!CurrentUser.IsAuthenticated) +{ +
+

+ Login +
+} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml.cs b/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml.cs new file mode 100644 index 000000000..61b644778 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Pages/Index.cshtml.cs @@ -0,0 +1,11 @@ +using Volo.Abp.AspNetCore.Mvc.UI.RazorPages; + +namespace AuthServer.Host.Pages +{ + public class IndexModel : AbpPageModel + { + public void OnGet() + { + } + } +} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/Pages/_ViewImports.cshtml b/aspnet-core/services/account/AuthServer.Host/Pages/_ViewImports.cshtml new file mode 100644 index 000000000..c1da1f5f1 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Pages/_ViewImports.cshtml @@ -0,0 +1,4 @@ +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap +@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/Program.cs b/aspnet-core/services/account/AuthServer.Host/Program.cs new file mode 100644 index 000000000..6e191c423 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Program.cs @@ -0,0 +1,49 @@ +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; +using Serilog; +using System; +using System.IO; + +namespace AuthServer.Host +{ + public class Program + { + public static int Main(string[] args) + { + var env = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? "Production"; + var configuration = new ConfigurationBuilder() + .SetBasePath(Directory.GetCurrentDirectory()) + .AddJsonFile($"appsettings.{env}.json", optional: false, reloadOnChange: true) + .AddEnvironmentVariables() + .Build(); + Log.Logger = new LoggerConfiguration() + .ReadFrom.Configuration(configuration) + .CreateLogger(); + try + { + Log.Information("Starting web host."); + CreateHostBuilder(args).Build().Run(); + return 0; + } + catch (Exception ex) + { + Log.Fatal(ex, "Host terminated unexpectedly!"); + return 1; + } + finally + { + Log.CloseAndFlush(); + } + } + + internal static IHostBuilder CreateHostBuilder(string[] args) => + Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseStartup(); + }) + .UseSerilog() + .UseAutofac(); + } +} diff --git a/aspnet-core/services/account/AuthServer.Host/Properties/launchSettings.json b/aspnet-core/services/account/AuthServer.Host/Properties/launchSettings.json new file mode 100644 index 000000000..581e8d94f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Properties/launchSettings.json @@ -0,0 +1,20 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:57949", + "sslPort": 0 + } + }, + "profiles": { + "AuthServer.Host": { + "commandName": "Project", + "launchBrowser": false, + "applicationUrl": "http://localhost:44385", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/Startup.cs b/aspnet-core/services/account/AuthServer.Host/Startup.cs new file mode 100644 index 000000000..5f469b45f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/Startup.cs @@ -0,0 +1,20 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; + +namespace AuthServer.Host +{ + public class Startup + { + public void ConfigureServices(IServiceCollection services) + { + services.AddApplication(); + } + + public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerFactory loggerFactory) + { + app.InitializeApplication(); + } + } +} diff --git a/aspnet-core/services/account/AuthServer.Host/abp.resourcemapping.js b/aspnet-core/services/account/AuthServer.Host/abp.resourcemapping.js new file mode 100644 index 000000000..e2189c3c6 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/abp.resourcemapping.js @@ -0,0 +1,11 @@ +module.exports = { + aliases: { + + }, + clean: [ + + ], + mappings: { + + } +}; \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/gulpfile.js b/aspnet-core/services/account/AuthServer.Host/gulpfile.js new file mode 100644 index 000000000..5dcf4c5c6 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/gulpfile.js @@ -0,0 +1,9 @@ +"use strict"; + +var gulp = require("gulp"), + path = require('path'), + copyResources = require('./node_modules/@abp/aspnetcore.mvc.ui/gulp/copy-resources.js'); + +exports.default = function(){ + return copyResources(path.resolve('./')); +}; \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/package.json b/aspnet-core/services/account/AuthServer.Host/package.json new file mode 100644 index 000000000..412aab56a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/package.json @@ -0,0 +1,8 @@ +{ + "version": "1.0.0", + "name": "my-app-identityserver", + "private": true, + "dependencies": { + "@abp/aspnetcore.mvc.ui.theme.basic": "^2.6.2" + } +} diff --git a/aspnet-core/services/account/AuthServer.Host/tempkey.rsa b/aspnet-core/services/account/AuthServer.Host/tempkey.rsa new file mode 100644 index 000000000..b5f8fbb1f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/tempkey.rsa @@ -0,0 +1 @@ +{"KeyId":"3e6c235e98eaef624a571c3b47e5c812","Parameters":{"D":"trKg5nogSZw3j0iy0k2MQkqj0CTo+jJLmVxKPcEYjkYyBNUuyLA7cbLlI9yxKk1MIn+/8utBN36PMUsJcD7cSczIjVWpXPTUbcWSOaSCNz7AcOpaE5Ay35AgMFc4HfnpByc8c9Fcl0z1thaSZuCqiYpQmPpcL8fyEjOuw0NWze4yXmcl2GlfwRiF1JxqQHKfJ6mB/3QPIVBF/68upkGiiXhI6LimyTo4O6H1JLHf4rRnQhzojZXUA07BRdavYVHTR1GaQMpMuZENmi+/+Iu8alB6iH8Zz2D94irE8/kO5X+MoavfmNhpilxLw1GK1ea5OoUQS0jRl0Wmez000DCV3Q==","DP":"XYTLa2aqm5Pmapi7Jjr0LYBZzydxmU0xqgHshaClvoBJycMlBLNgKkYs9aPdE/QCSZFaDhyIGMlXovn5WfcNsSOeYnRvRiS6dDT0/a4N1cFX4kRQ09siaUUgXiefbAoOm6CghFB2Il0O1NTQ0cenVU5l6+pBQFbDtV1rP79lYbc=","DQ":"NzcjLWMrpySGWTVmfLrw/EMPd/P9vtQFo0IwoajS5cFF2NXk+mLpSZeIjYWKNzApBvHoLDwpaV2p7HaYpwk1CpwG/toWW/IBOWihvP4pKkX5ykV9ZkaC7WRqGc5jnd9NLd8TRY/h5LxPuNbIEhpTY3Q1vAI/x8XW6eTy67rgqKs=","Exponent":"AQAB","InverseQ":"Kadqz1hC/Icxb7Ld+oFbMBoQxyL8M9HqLpQguiHjXWHX53J5V83a4h48J98O+Arulnst7vRPK7p9tA8Ww6Z71GZsccLxs1msXsSqYdcEePaVa9H2/Wa0qm+tqy6Ubump235OkcG18F4G4GbO+/Jz7aAt58zmjFEMuJq/bppmW04=","Modulus":"w6KfF+JHu+Ot0HFQAjXGxS5XeVmr4U/aXr1v+lvbCcL5YgdrLwoz0PYtmIADxuxlpCdP1OFespRgDaDnI3vkg22YVX0ufpKHgjCP87bInU+TlJSixOkkj5VA/Xms6NK9+pr0VIicrH0NotmmYqbTDF0ePAkbTT6NnRE9ycIC26ZiPvr4MMRXcuy81/LBp2fwox4uKuoNIXXKJAN/TNo9MoKx0Ovrthak81XN/LvBytWAisdLboowllbZ9QaCH7IJIo4pdnhq4yTVq7CXKHHiXyeV2KEwS/nNvoXnrJUOrkGN92ItsoE0hr6rrbJZtrPrGMafexsJ69HXpTRv13oDGQ==","P":"0oW4MgjmH5cPeMlP5VJsY/eWZ8oxBUGvkbpljxYglKABfsyTIOY3gBhnTWWzepjmgSK0NKRZWgwn9axX3MKKWxe/H56DzKWi4w5VuRCNtiV91nrMsUXmhT/8Xu7AqKI+E/1B/A02JdJfh5lF+US6x1Md0ic1/Mgi7Z+B6fy4omc=","Q":"7eWeBma2tgB2ccy7HggkEehmYG0nYQVGjkb8nVnDbAi+r1RuvuIWdaet0gWvIKxXkWAzq5Yzfdr+8R1AmpjrAo8uryaCqwgmBphL5YqqFy1bk2a1HqVS4sFeCFJ9ltyxEhATMmQyOxwypM6eliEuF+zmtVNJqjpx7yJUdsg/vn8="}} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css new file mode 100644 index 000000000..1be893a9b --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css @@ -0,0 +1,4423 @@ +/*! + * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa, +.fas, +.far, +.fal, +.fad, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; } + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -.0667em; } + +.fa-xs { + font-size: .75em; } + +.fa-sm { + font-size: .875em; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; } + +.fa-border { + border: solid 0.08em #eee; + border-radius: .1em; + padding: .2em .25em .15em; } + +.fa-pull-left { + float: left; } + +.fa-pull-right { + float: right; } + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: .3em; } + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: .3em; } + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; } + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical, +:root .fa-flip-both { + -webkit-filter: none; + filter: none; } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: #fff; } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; } + +.fa-accessible-icon:before { + content: "\f368"; } + +.fa-accusoft:before { + content: "\f369"; } + +.fa-acquisitions-incorporated:before { + content: "\f6af"; } + +.fa-ad:before { + content: "\f641"; } + +.fa-address-book:before { + content: "\f2b9"; } + +.fa-address-card:before { + content: "\f2bb"; } + +.fa-adjust:before { + content: "\f042"; } + +.fa-adn:before { + content: "\f170"; } + +.fa-adobe:before { + content: "\f778"; } + +.fa-adversal:before { + content: "\f36a"; } + +.fa-affiliatetheme:before { + content: "\f36b"; } + +.fa-air-freshener:before { + content: "\f5d0"; } + +.fa-airbnb:before { + content: "\f834"; } + +.fa-algolia:before { + content: "\f36c"; } + +.fa-align-center:before { + content: "\f037"; } + +.fa-align-justify:before { + content: "\f039"; } + +.fa-align-left:before { + content: "\f036"; } + +.fa-align-right:before { + content: "\f038"; } + +.fa-alipay:before { + content: "\f642"; } + +.fa-allergies:before { + content: "\f461"; } + +.fa-amazon:before { + content: "\f270"; } + +.fa-amazon-pay:before { + content: "\f42c"; } + +.fa-ambulance:before { + content: "\f0f9"; } + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; } + +.fa-amilia:before { + content: "\f36d"; } + +.fa-anchor:before { + content: "\f13d"; } + +.fa-android:before { + content: "\f17b"; } + +.fa-angellist:before { + content: "\f209"; } + +.fa-angle-double-down:before { + content: "\f103"; } + +.fa-angle-double-left:before { + content: "\f100"; } + +.fa-angle-double-right:before { + content: "\f101"; } + +.fa-angle-double-up:before { + content: "\f102"; } + +.fa-angle-down:before { + content: "\f107"; } + +.fa-angle-left:before { + content: "\f104"; } + +.fa-angle-right:before { + content: "\f105"; } + +.fa-angle-up:before { + content: "\f106"; } + +.fa-angry:before { + content: "\f556"; } + +.fa-angrycreative:before { + content: "\f36e"; } + +.fa-angular:before { + content: "\f420"; } + +.fa-ankh:before { + content: "\f644"; } + +.fa-app-store:before { + content: "\f36f"; } + +.fa-app-store-ios:before { + content: "\f370"; } + +.fa-apper:before { + content: "\f371"; } + +.fa-apple:before { + content: "\f179"; } + +.fa-apple-alt:before { + content: "\f5d1"; } + +.fa-apple-pay:before { + content: "\f415"; } + +.fa-archive:before { + content: "\f187"; } + +.fa-archway:before { + content: "\f557"; } + +.fa-arrow-alt-circle-down:before { + content: "\f358"; } + +.fa-arrow-alt-circle-left:before { + content: "\f359"; } + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; } + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; } + +.fa-arrow-circle-down:before { + content: "\f0ab"; } + +.fa-arrow-circle-left:before { + content: "\f0a8"; } + +.fa-arrow-circle-right:before { + content: "\f0a9"; } + +.fa-arrow-circle-up:before { + content: "\f0aa"; } + +.fa-arrow-down:before { + content: "\f063"; } + +.fa-arrow-left:before { + content: "\f060"; } + +.fa-arrow-right:before { + content: "\f061"; } + +.fa-arrow-up:before { + content: "\f062"; } + +.fa-arrows-alt:before { + content: "\f0b2"; } + +.fa-arrows-alt-h:before { + content: "\f337"; } + +.fa-arrows-alt-v:before { + content: "\f338"; } + +.fa-artstation:before { + content: "\f77a"; } + +.fa-assistive-listening-systems:before { + content: "\f2a2"; } + +.fa-asterisk:before { + content: "\f069"; } + +.fa-asymmetrik:before { + content: "\f372"; } + +.fa-at:before { + content: "\f1fa"; } + +.fa-atlas:before { + content: "\f558"; } + +.fa-atlassian:before { + content: "\f77b"; } + +.fa-atom:before { + content: "\f5d2"; } + +.fa-audible:before { + content: "\f373"; } + +.fa-audio-description:before { + content: "\f29e"; } + +.fa-autoprefixer:before { + content: "\f41c"; } + +.fa-avianex:before { + content: "\f374"; } + +.fa-aviato:before { + content: "\f421"; } + +.fa-award:before { + content: "\f559"; } + +.fa-aws:before { + content: "\f375"; } + +.fa-baby:before { + content: "\f77c"; } + +.fa-baby-carriage:before { + content: "\f77d"; } + +.fa-backspace:before { + content: "\f55a"; } + +.fa-backward:before { + content: "\f04a"; } + +.fa-bacon:before { + content: "\f7e5"; } + +.fa-balance-scale:before { + content: "\f24e"; } + +.fa-balance-scale-left:before { + content: "\f515"; } + +.fa-balance-scale-right:before { + content: "\f516"; } + +.fa-ban:before { + content: "\f05e"; } + +.fa-band-aid:before { + content: "\f462"; } + +.fa-bandcamp:before { + content: "\f2d5"; } + +.fa-barcode:before { + content: "\f02a"; } + +.fa-bars:before { + content: "\f0c9"; } + +.fa-baseball-ball:before { + content: "\f433"; } + +.fa-basketball-ball:before { + content: "\f434"; } + +.fa-bath:before { + content: "\f2cd"; } + +.fa-battery-empty:before { + content: "\f244"; } + +.fa-battery-full:before { + content: "\f240"; } + +.fa-battery-half:before { + content: "\f242"; } + +.fa-battery-quarter:before { + content: "\f243"; } + +.fa-battery-three-quarters:before { + content: "\f241"; } + +.fa-battle-net:before { + content: "\f835"; } + +.fa-bed:before { + content: "\f236"; } + +.fa-beer:before { + content: "\f0fc"; } + +.fa-behance:before { + content: "\f1b4"; } + +.fa-behance-square:before { + content: "\f1b5"; } + +.fa-bell:before { + content: "\f0f3"; } + +.fa-bell-slash:before { + content: "\f1f6"; } + +.fa-bezier-curve:before { + content: "\f55b"; } + +.fa-bible:before { + content: "\f647"; } + +.fa-bicycle:before { + content: "\f206"; } + +.fa-biking:before { + content: "\f84a"; } + +.fa-bimobject:before { + content: "\f378"; } + +.fa-binoculars:before { + content: "\f1e5"; } + +.fa-biohazard:before { + content: "\f780"; } + +.fa-birthday-cake:before { + content: "\f1fd"; } + +.fa-bitbucket:before { + content: "\f171"; } + +.fa-bitcoin:before { + content: "\f379"; } + +.fa-bity:before { + content: "\f37a"; } + +.fa-black-tie:before { + content: "\f27e"; } + +.fa-blackberry:before { + content: "\f37b"; } + +.fa-blender:before { + content: "\f517"; } + +.fa-blender-phone:before { + content: "\f6b6"; } + +.fa-blind:before { + content: "\f29d"; } + +.fa-blog:before { + content: "\f781"; } + +.fa-blogger:before { + content: "\f37c"; } + +.fa-blogger-b:before { + content: "\f37d"; } + +.fa-bluetooth:before { + content: "\f293"; } + +.fa-bluetooth-b:before { + content: "\f294"; } + +.fa-bold:before { + content: "\f032"; } + +.fa-bolt:before { + content: "\f0e7"; } + +.fa-bomb:before { + content: "\f1e2"; } + +.fa-bone:before { + content: "\f5d7"; } + +.fa-bong:before { + content: "\f55c"; } + +.fa-book:before { + content: "\f02d"; } + +.fa-book-dead:before { + content: "\f6b7"; } + +.fa-book-medical:before { + content: "\f7e6"; } + +.fa-book-open:before { + content: "\f518"; } + +.fa-book-reader:before { + content: "\f5da"; } + +.fa-bookmark:before { + content: "\f02e"; } + +.fa-bootstrap:before { + content: "\f836"; } + +.fa-border-all:before { + content: "\f84c"; } + +.fa-border-none:before { + content: "\f850"; } + +.fa-border-style:before { + content: "\f853"; } + +.fa-bowling-ball:before { + content: "\f436"; } + +.fa-box:before { + content: "\f466"; } + +.fa-box-open:before { + content: "\f49e"; } + +.fa-boxes:before { + content: "\f468"; } + +.fa-braille:before { + content: "\f2a1"; } + +.fa-brain:before { + content: "\f5dc"; } + +.fa-bread-slice:before { + content: "\f7ec"; } + +.fa-briefcase:before { + content: "\f0b1"; } + +.fa-briefcase-medical:before { + content: "\f469"; } + +.fa-broadcast-tower:before { + content: "\f519"; } + +.fa-broom:before { + content: "\f51a"; } + +.fa-brush:before { + content: "\f55d"; } + +.fa-btc:before { + content: "\f15a"; } + +.fa-buffer:before { + content: "\f837"; } + +.fa-bug:before { + content: "\f188"; } + +.fa-building:before { + content: "\f1ad"; } + +.fa-bullhorn:before { + content: "\f0a1"; } + +.fa-bullseye:before { + content: "\f140"; } + +.fa-burn:before { + content: "\f46a"; } + +.fa-buromobelexperte:before { + content: "\f37f"; } + +.fa-bus:before { + content: "\f207"; } + +.fa-bus-alt:before { + content: "\f55e"; } + +.fa-business-time:before { + content: "\f64a"; } + +.fa-buy-n-large:before { + content: "\f8a6"; } + +.fa-buysellads:before { + content: "\f20d"; } + +.fa-calculator:before { + content: "\f1ec"; } + +.fa-calendar:before { + content: "\f133"; } + +.fa-calendar-alt:before { + content: "\f073"; } + +.fa-calendar-check:before { + content: "\f274"; } + +.fa-calendar-day:before { + content: "\f783"; } + +.fa-calendar-minus:before { + content: "\f272"; } + +.fa-calendar-plus:before { + content: "\f271"; } + +.fa-calendar-times:before { + content: "\f273"; } + +.fa-calendar-week:before { + content: "\f784"; } + +.fa-camera:before { + content: "\f030"; } + +.fa-camera-retro:before { + content: "\f083"; } + +.fa-campground:before { + content: "\f6bb"; } + +.fa-canadian-maple-leaf:before { + content: "\f785"; } + +.fa-candy-cane:before { + content: "\f786"; } + +.fa-cannabis:before { + content: "\f55f"; } + +.fa-capsules:before { + content: "\f46b"; } + +.fa-car:before { + content: "\f1b9"; } + +.fa-car-alt:before { + content: "\f5de"; } + +.fa-car-battery:before { + content: "\f5df"; } + +.fa-car-crash:before { + content: "\f5e1"; } + +.fa-car-side:before { + content: "\f5e4"; } + +.fa-caret-down:before { + content: "\f0d7"; } + +.fa-caret-left:before { + content: "\f0d9"; } + +.fa-caret-right:before { + content: "\f0da"; } + +.fa-caret-square-down:before { + content: "\f150"; } + +.fa-caret-square-left:before { + content: "\f191"; } + +.fa-caret-square-right:before { + content: "\f152"; } + +.fa-caret-square-up:before { + content: "\f151"; } + +.fa-caret-up:before { + content: "\f0d8"; } + +.fa-carrot:before { + content: "\f787"; } + +.fa-cart-arrow-down:before { + content: "\f218"; } + +.fa-cart-plus:before { + content: "\f217"; } + +.fa-cash-register:before { + content: "\f788"; } + +.fa-cat:before { + content: "\f6be"; } + +.fa-cc-amazon-pay:before { + content: "\f42d"; } + +.fa-cc-amex:before { + content: "\f1f3"; } + +.fa-cc-apple-pay:before { + content: "\f416"; } + +.fa-cc-diners-club:before { + content: "\f24c"; } + +.fa-cc-discover:before { + content: "\f1f2"; } + +.fa-cc-jcb:before { + content: "\f24b"; } + +.fa-cc-mastercard:before { + content: "\f1f1"; } + +.fa-cc-paypal:before { + content: "\f1f4"; } + +.fa-cc-stripe:before { + content: "\f1f5"; } + +.fa-cc-visa:before { + content: "\f1f0"; } + +.fa-centercode:before { + content: "\f380"; } + +.fa-centos:before { + content: "\f789"; } + +.fa-certificate:before { + content: "\f0a3"; } + +.fa-chair:before { + content: "\f6c0"; } + +.fa-chalkboard:before { + content: "\f51b"; } + +.fa-chalkboard-teacher:before { + content: "\f51c"; } + +.fa-charging-station:before { + content: "\f5e7"; } + +.fa-chart-area:before { + content: "\f1fe"; } + +.fa-chart-bar:before { + content: "\f080"; } + +.fa-chart-line:before { + content: "\f201"; } + +.fa-chart-pie:before { + content: "\f200"; } + +.fa-check:before { + content: "\f00c"; } + +.fa-check-circle:before { + content: "\f058"; } + +.fa-check-double:before { + content: "\f560"; } + +.fa-check-square:before { + content: "\f14a"; } + +.fa-cheese:before { + content: "\f7ef"; } + +.fa-chess:before { + content: "\f439"; } + +.fa-chess-bishop:before { + content: "\f43a"; } + +.fa-chess-board:before { + content: "\f43c"; } + +.fa-chess-king:before { + content: "\f43f"; } + +.fa-chess-knight:before { + content: "\f441"; } + +.fa-chess-pawn:before { + content: "\f443"; } + +.fa-chess-queen:before { + content: "\f445"; } + +.fa-chess-rook:before { + content: "\f447"; } + +.fa-chevron-circle-down:before { + content: "\f13a"; } + +.fa-chevron-circle-left:before { + content: "\f137"; } + +.fa-chevron-circle-right:before { + content: "\f138"; } + +.fa-chevron-circle-up:before { + content: "\f139"; } + +.fa-chevron-down:before { + content: "\f078"; } + +.fa-chevron-left:before { + content: "\f053"; } + +.fa-chevron-right:before { + content: "\f054"; } + +.fa-chevron-up:before { + content: "\f077"; } + +.fa-child:before { + content: "\f1ae"; } + +.fa-chrome:before { + content: "\f268"; } + +.fa-chromecast:before { + content: "\f838"; } + +.fa-church:before { + content: "\f51d"; } + +.fa-circle:before { + content: "\f111"; } + +.fa-circle-notch:before { + content: "\f1ce"; } + +.fa-city:before { + content: "\f64f"; } + +.fa-clinic-medical:before { + content: "\f7f2"; } + +.fa-clipboard:before { + content: "\f328"; } + +.fa-clipboard-check:before { + content: "\f46c"; } + +.fa-clipboard-list:before { + content: "\f46d"; } + +.fa-clock:before { + content: "\f017"; } + +.fa-clone:before { + content: "\f24d"; } + +.fa-closed-captioning:before { + content: "\f20a"; } + +.fa-cloud:before { + content: "\f0c2"; } + +.fa-cloud-download-alt:before { + content: "\f381"; } + +.fa-cloud-meatball:before { + content: "\f73b"; } + +.fa-cloud-moon:before { + content: "\f6c3"; } + +.fa-cloud-moon-rain:before { + content: "\f73c"; } + +.fa-cloud-rain:before { + content: "\f73d"; } + +.fa-cloud-showers-heavy:before { + content: "\f740"; } + +.fa-cloud-sun:before { + content: "\f6c4"; } + +.fa-cloud-sun-rain:before { + content: "\f743"; } + +.fa-cloud-upload-alt:before { + content: "\f382"; } + +.fa-cloudscale:before { + content: "\f383"; } + +.fa-cloudsmith:before { + content: "\f384"; } + +.fa-cloudversify:before { + content: "\f385"; } + +.fa-cocktail:before { + content: "\f561"; } + +.fa-code:before { + content: "\f121"; } + +.fa-code-branch:before { + content: "\f126"; } + +.fa-codepen:before { + content: "\f1cb"; } + +.fa-codiepie:before { + content: "\f284"; } + +.fa-coffee:before { + content: "\f0f4"; } + +.fa-cog:before { + content: "\f013"; } + +.fa-cogs:before { + content: "\f085"; } + +.fa-coins:before { + content: "\f51e"; } + +.fa-columns:before { + content: "\f0db"; } + +.fa-comment:before { + content: "\f075"; } + +.fa-comment-alt:before { + content: "\f27a"; } + +.fa-comment-dollar:before { + content: "\f651"; } + +.fa-comment-dots:before { + content: "\f4ad"; } + +.fa-comment-medical:before { + content: "\f7f5"; } + +.fa-comment-slash:before { + content: "\f4b3"; } + +.fa-comments:before { + content: "\f086"; } + +.fa-comments-dollar:before { + content: "\f653"; } + +.fa-compact-disc:before { + content: "\f51f"; } + +.fa-compass:before { + content: "\f14e"; } + +.fa-compress:before { + content: "\f066"; } + +.fa-compress-arrows-alt:before { + content: "\f78c"; } + +.fa-concierge-bell:before { + content: "\f562"; } + +.fa-confluence:before { + content: "\f78d"; } + +.fa-connectdevelop:before { + content: "\f20e"; } + +.fa-contao:before { + content: "\f26d"; } + +.fa-cookie:before { + content: "\f563"; } + +.fa-cookie-bite:before { + content: "\f564"; } + +.fa-copy:before { + content: "\f0c5"; } + +.fa-copyright:before { + content: "\f1f9"; } + +.fa-cotton-bureau:before { + content: "\f89e"; } + +.fa-couch:before { + content: "\f4b8"; } + +.fa-cpanel:before { + content: "\f388"; } + +.fa-creative-commons:before { + content: "\f25e"; } + +.fa-creative-commons-by:before { + content: "\f4e7"; } + +.fa-creative-commons-nc:before { + content: "\f4e8"; } + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; } + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; } + +.fa-creative-commons-nd:before { + content: "\f4eb"; } + +.fa-creative-commons-pd:before { + content: "\f4ec"; } + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; } + +.fa-creative-commons-remix:before { + content: "\f4ee"; } + +.fa-creative-commons-sa:before { + content: "\f4ef"; } + +.fa-creative-commons-sampling:before { + content: "\f4f0"; } + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; } + +.fa-creative-commons-share:before { + content: "\f4f2"; } + +.fa-creative-commons-zero:before { + content: "\f4f3"; } + +.fa-credit-card:before { + content: "\f09d"; } + +.fa-critical-role:before { + content: "\f6c9"; } + +.fa-crop:before { + content: "\f125"; } + +.fa-crop-alt:before { + content: "\f565"; } + +.fa-cross:before { + content: "\f654"; } + +.fa-crosshairs:before { + content: "\f05b"; } + +.fa-crow:before { + content: "\f520"; } + +.fa-crown:before { + content: "\f521"; } + +.fa-crutch:before { + content: "\f7f7"; } + +.fa-css3:before { + content: "\f13c"; } + +.fa-css3-alt:before { + content: "\f38b"; } + +.fa-cube:before { + content: "\f1b2"; } + +.fa-cubes:before { + content: "\f1b3"; } + +.fa-cut:before { + content: "\f0c4"; } + +.fa-cuttlefish:before { + content: "\f38c"; } + +.fa-d-and-d:before { + content: "\f38d"; } + +.fa-d-and-d-beyond:before { + content: "\f6ca"; } + +.fa-dashcube:before { + content: "\f210"; } + +.fa-database:before { + content: "\f1c0"; } + +.fa-deaf:before { + content: "\f2a4"; } + +.fa-delicious:before { + content: "\f1a5"; } + +.fa-democrat:before { + content: "\f747"; } + +.fa-deploydog:before { + content: "\f38e"; } + +.fa-deskpro:before { + content: "\f38f"; } + +.fa-desktop:before { + content: "\f108"; } + +.fa-dev:before { + content: "\f6cc"; } + +.fa-deviantart:before { + content: "\f1bd"; } + +.fa-dharmachakra:before { + content: "\f655"; } + +.fa-dhl:before { + content: "\f790"; } + +.fa-diagnoses:before { + content: "\f470"; } + +.fa-diaspora:before { + content: "\f791"; } + +.fa-dice:before { + content: "\f522"; } + +.fa-dice-d20:before { + content: "\f6cf"; } + +.fa-dice-d6:before { + content: "\f6d1"; } + +.fa-dice-five:before { + content: "\f523"; } + +.fa-dice-four:before { + content: "\f524"; } + +.fa-dice-one:before { + content: "\f525"; } + +.fa-dice-six:before { + content: "\f526"; } + +.fa-dice-three:before { + content: "\f527"; } + +.fa-dice-two:before { + content: "\f528"; } + +.fa-digg:before { + content: "\f1a6"; } + +.fa-digital-ocean:before { + content: "\f391"; } + +.fa-digital-tachograph:before { + content: "\f566"; } + +.fa-directions:before { + content: "\f5eb"; } + +.fa-discord:before { + content: "\f392"; } + +.fa-discourse:before { + content: "\f393"; } + +.fa-divide:before { + content: "\f529"; } + +.fa-dizzy:before { + content: "\f567"; } + +.fa-dna:before { + content: "\f471"; } + +.fa-dochub:before { + content: "\f394"; } + +.fa-docker:before { + content: "\f395"; } + +.fa-dog:before { + content: "\f6d3"; } + +.fa-dollar-sign:before { + content: "\f155"; } + +.fa-dolly:before { + content: "\f472"; } + +.fa-dolly-flatbed:before { + content: "\f474"; } + +.fa-donate:before { + content: "\f4b9"; } + +.fa-door-closed:before { + content: "\f52a"; } + +.fa-door-open:before { + content: "\f52b"; } + +.fa-dot-circle:before { + content: "\f192"; } + +.fa-dove:before { + content: "\f4ba"; } + +.fa-download:before { + content: "\f019"; } + +.fa-draft2digital:before { + content: "\f396"; } + +.fa-drafting-compass:before { + content: "\f568"; } + +.fa-dragon:before { + content: "\f6d5"; } + +.fa-draw-polygon:before { + content: "\f5ee"; } + +.fa-dribbble:before { + content: "\f17d"; } + +.fa-dribbble-square:before { + content: "\f397"; } + +.fa-dropbox:before { + content: "\f16b"; } + +.fa-drum:before { + content: "\f569"; } + +.fa-drum-steelpan:before { + content: "\f56a"; } + +.fa-drumstick-bite:before { + content: "\f6d7"; } + +.fa-drupal:before { + content: "\f1a9"; } + +.fa-dumbbell:before { + content: "\f44b"; } + +.fa-dumpster:before { + content: "\f793"; } + +.fa-dumpster-fire:before { + content: "\f794"; } + +.fa-dungeon:before { + content: "\f6d9"; } + +.fa-dyalog:before { + content: "\f399"; } + +.fa-earlybirds:before { + content: "\f39a"; } + +.fa-ebay:before { + content: "\f4f4"; } + +.fa-edge:before { + content: "\f282"; } + +.fa-edit:before { + content: "\f044"; } + +.fa-egg:before { + content: "\f7fb"; } + +.fa-eject:before { + content: "\f052"; } + +.fa-elementor:before { + content: "\f430"; } + +.fa-ellipsis-h:before { + content: "\f141"; } + +.fa-ellipsis-v:before { + content: "\f142"; } + +.fa-ello:before { + content: "\f5f1"; } + +.fa-ember:before { + content: "\f423"; } + +.fa-empire:before { + content: "\f1d1"; } + +.fa-envelope:before { + content: "\f0e0"; } + +.fa-envelope-open:before { + content: "\f2b6"; } + +.fa-envelope-open-text:before { + content: "\f658"; } + +.fa-envelope-square:before { + content: "\f199"; } + +.fa-envira:before { + content: "\f299"; } + +.fa-equals:before { + content: "\f52c"; } + +.fa-eraser:before { + content: "\f12d"; } + +.fa-erlang:before { + content: "\f39d"; } + +.fa-ethereum:before { + content: "\f42e"; } + +.fa-ethernet:before { + content: "\f796"; } + +.fa-etsy:before { + content: "\f2d7"; } + +.fa-euro-sign:before { + content: "\f153"; } + +.fa-evernote:before { + content: "\f839"; } + +.fa-exchange-alt:before { + content: "\f362"; } + +.fa-exclamation:before { + content: "\f12a"; } + +.fa-exclamation-circle:before { + content: "\f06a"; } + +.fa-exclamation-triangle:before { + content: "\f071"; } + +.fa-expand:before { + content: "\f065"; } + +.fa-expand-arrows-alt:before { + content: "\f31e"; } + +.fa-expeditedssl:before { + content: "\f23e"; } + +.fa-external-link-alt:before { + content: "\f35d"; } + +.fa-external-link-square-alt:before { + content: "\f360"; } + +.fa-eye:before { + content: "\f06e"; } + +.fa-eye-dropper:before { + content: "\f1fb"; } + +.fa-eye-slash:before { + content: "\f070"; } + +.fa-facebook:before { + content: "\f09a"; } + +.fa-facebook-f:before { + content: "\f39e"; } + +.fa-facebook-messenger:before { + content: "\f39f"; } + +.fa-facebook-square:before { + content: "\f082"; } + +.fa-fan:before { + content: "\f863"; } + +.fa-fantasy-flight-games:before { + content: "\f6dc"; } + +.fa-fast-backward:before { + content: "\f049"; } + +.fa-fast-forward:before { + content: "\f050"; } + +.fa-fax:before { + content: "\f1ac"; } + +.fa-feather:before { + content: "\f52d"; } + +.fa-feather-alt:before { + content: "\f56b"; } + +.fa-fedex:before { + content: "\f797"; } + +.fa-fedora:before { + content: "\f798"; } + +.fa-female:before { + content: "\f182"; } + +.fa-fighter-jet:before { + content: "\f0fb"; } + +.fa-figma:before { + content: "\f799"; } + +.fa-file:before { + content: "\f15b"; } + +.fa-file-alt:before { + content: "\f15c"; } + +.fa-file-archive:before { + content: "\f1c6"; } + +.fa-file-audio:before { + content: "\f1c7"; } + +.fa-file-code:before { + content: "\f1c9"; } + +.fa-file-contract:before { + content: "\f56c"; } + +.fa-file-csv:before { + content: "\f6dd"; } + +.fa-file-download:before { + content: "\f56d"; } + +.fa-file-excel:before { + content: "\f1c3"; } + +.fa-file-export:before { + content: "\f56e"; } + +.fa-file-image:before { + content: "\f1c5"; } + +.fa-file-import:before { + content: "\f56f"; } + +.fa-file-invoice:before { + content: "\f570"; } + +.fa-file-invoice-dollar:before { + content: "\f571"; } + +.fa-file-medical:before { + content: "\f477"; } + +.fa-file-medical-alt:before { + content: "\f478"; } + +.fa-file-pdf:before { + content: "\f1c1"; } + +.fa-file-powerpoint:before { + content: "\f1c4"; } + +.fa-file-prescription:before { + content: "\f572"; } + +.fa-file-signature:before { + content: "\f573"; } + +.fa-file-upload:before { + content: "\f574"; } + +.fa-file-video:before { + content: "\f1c8"; } + +.fa-file-word:before { + content: "\f1c2"; } + +.fa-fill:before { + content: "\f575"; } + +.fa-fill-drip:before { + content: "\f576"; } + +.fa-film:before { + content: "\f008"; } + +.fa-filter:before { + content: "\f0b0"; } + +.fa-fingerprint:before { + content: "\f577"; } + +.fa-fire:before { + content: "\f06d"; } + +.fa-fire-alt:before { + content: "\f7e4"; } + +.fa-fire-extinguisher:before { + content: "\f134"; } + +.fa-firefox:before { + content: "\f269"; } + +.fa-first-aid:before { + content: "\f479"; } + +.fa-first-order:before { + content: "\f2b0"; } + +.fa-first-order-alt:before { + content: "\f50a"; } + +.fa-firstdraft:before { + content: "\f3a1"; } + +.fa-fish:before { + content: "\f578"; } + +.fa-fist-raised:before { + content: "\f6de"; } + +.fa-flag:before { + content: "\f024"; } + +.fa-flag-checkered:before { + content: "\f11e"; } + +.fa-flag-usa:before { + content: "\f74d"; } + +.fa-flask:before { + content: "\f0c3"; } + +.fa-flickr:before { + content: "\f16e"; } + +.fa-flipboard:before { + content: "\f44d"; } + +.fa-flushed:before { + content: "\f579"; } + +.fa-fly:before { + content: "\f417"; } + +.fa-folder:before { + content: "\f07b"; } + +.fa-folder-minus:before { + content: "\f65d"; } + +.fa-folder-open:before { + content: "\f07c"; } + +.fa-folder-plus:before { + content: "\f65e"; } + +.fa-font:before { + content: "\f031"; } + +.fa-font-awesome:before { + content: "\f2b4"; } + +.fa-font-awesome-alt:before { + content: "\f35c"; } + +.fa-font-awesome-flag:before { + content: "\f425"; } + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; } + +.fa-fonticons:before { + content: "\f280"; } + +.fa-fonticons-fi:before { + content: "\f3a2"; } + +.fa-football-ball:before { + content: "\f44e"; } + +.fa-fort-awesome:before { + content: "\f286"; } + +.fa-fort-awesome-alt:before { + content: "\f3a3"; } + +.fa-forumbee:before { + content: "\f211"; } + +.fa-forward:before { + content: "\f04e"; } + +.fa-foursquare:before { + content: "\f180"; } + +.fa-free-code-camp:before { + content: "\f2c5"; } + +.fa-freebsd:before { + content: "\f3a4"; } + +.fa-frog:before { + content: "\f52e"; } + +.fa-frown:before { + content: "\f119"; } + +.fa-frown-open:before { + content: "\f57a"; } + +.fa-fulcrum:before { + content: "\f50b"; } + +.fa-funnel-dollar:before { + content: "\f662"; } + +.fa-futbol:before { + content: "\f1e3"; } + +.fa-galactic-republic:before { + content: "\f50c"; } + +.fa-galactic-senate:before { + content: "\f50d"; } + +.fa-gamepad:before { + content: "\f11b"; } + +.fa-gas-pump:before { + content: "\f52f"; } + +.fa-gavel:before { + content: "\f0e3"; } + +.fa-gem:before { + content: "\f3a5"; } + +.fa-genderless:before { + content: "\f22d"; } + +.fa-get-pocket:before { + content: "\f265"; } + +.fa-gg:before { + content: "\f260"; } + +.fa-gg-circle:before { + content: "\f261"; } + +.fa-ghost:before { + content: "\f6e2"; } + +.fa-gift:before { + content: "\f06b"; } + +.fa-gifts:before { + content: "\f79c"; } + +.fa-git:before { + content: "\f1d3"; } + +.fa-git-alt:before { + content: "\f841"; } + +.fa-git-square:before { + content: "\f1d2"; } + +.fa-github:before { + content: "\f09b"; } + +.fa-github-alt:before { + content: "\f113"; } + +.fa-github-square:before { + content: "\f092"; } + +.fa-gitkraken:before { + content: "\f3a6"; } + +.fa-gitlab:before { + content: "\f296"; } + +.fa-gitter:before { + content: "\f426"; } + +.fa-glass-cheers:before { + content: "\f79f"; } + +.fa-glass-martini:before { + content: "\f000"; } + +.fa-glass-martini-alt:before { + content: "\f57b"; } + +.fa-glass-whiskey:before { + content: "\f7a0"; } + +.fa-glasses:before { + content: "\f530"; } + +.fa-glide:before { + content: "\f2a5"; } + +.fa-glide-g:before { + content: "\f2a6"; } + +.fa-globe:before { + content: "\f0ac"; } + +.fa-globe-africa:before { + content: "\f57c"; } + +.fa-globe-americas:before { + content: "\f57d"; } + +.fa-globe-asia:before { + content: "\f57e"; } + +.fa-globe-europe:before { + content: "\f7a2"; } + +.fa-gofore:before { + content: "\f3a7"; } + +.fa-golf-ball:before { + content: "\f450"; } + +.fa-goodreads:before { + content: "\f3a8"; } + +.fa-goodreads-g:before { + content: "\f3a9"; } + +.fa-google:before { + content: "\f1a0"; } + +.fa-google-drive:before { + content: "\f3aa"; } + +.fa-google-play:before { + content: "\f3ab"; } + +.fa-google-plus:before { + content: "\f2b3"; } + +.fa-google-plus-g:before { + content: "\f0d5"; } + +.fa-google-plus-square:before { + content: "\f0d4"; } + +.fa-google-wallet:before { + content: "\f1ee"; } + +.fa-gopuram:before { + content: "\f664"; } + +.fa-graduation-cap:before { + content: "\f19d"; } + +.fa-gratipay:before { + content: "\f184"; } + +.fa-grav:before { + content: "\f2d6"; } + +.fa-greater-than:before { + content: "\f531"; } + +.fa-greater-than-equal:before { + content: "\f532"; } + +.fa-grimace:before { + content: "\f57f"; } + +.fa-grin:before { + content: "\f580"; } + +.fa-grin-alt:before { + content: "\f581"; } + +.fa-grin-beam:before { + content: "\f582"; } + +.fa-grin-beam-sweat:before { + content: "\f583"; } + +.fa-grin-hearts:before { + content: "\f584"; } + +.fa-grin-squint:before { + content: "\f585"; } + +.fa-grin-squint-tears:before { + content: "\f586"; } + +.fa-grin-stars:before { + content: "\f587"; } + +.fa-grin-tears:before { + content: "\f588"; } + +.fa-grin-tongue:before { + content: "\f589"; } + +.fa-grin-tongue-squint:before { + content: "\f58a"; } + +.fa-grin-tongue-wink:before { + content: "\f58b"; } + +.fa-grin-wink:before { + content: "\f58c"; } + +.fa-grip-horizontal:before { + content: "\f58d"; } + +.fa-grip-lines:before { + content: "\f7a4"; } + +.fa-grip-lines-vertical:before { + content: "\f7a5"; } + +.fa-grip-vertical:before { + content: "\f58e"; } + +.fa-gripfire:before { + content: "\f3ac"; } + +.fa-grunt:before { + content: "\f3ad"; } + +.fa-guitar:before { + content: "\f7a6"; } + +.fa-gulp:before { + content: "\f3ae"; } + +.fa-h-square:before { + content: "\f0fd"; } + +.fa-hacker-news:before { + content: "\f1d4"; } + +.fa-hacker-news-square:before { + content: "\f3af"; } + +.fa-hackerrank:before { + content: "\f5f7"; } + +.fa-hamburger:before { + content: "\f805"; } + +.fa-hammer:before { + content: "\f6e3"; } + +.fa-hamsa:before { + content: "\f665"; } + +.fa-hand-holding:before { + content: "\f4bd"; } + +.fa-hand-holding-heart:before { + content: "\f4be"; } + +.fa-hand-holding-usd:before { + content: "\f4c0"; } + +.fa-hand-lizard:before { + content: "\f258"; } + +.fa-hand-middle-finger:before { + content: "\f806"; } + +.fa-hand-paper:before { + content: "\f256"; } + +.fa-hand-peace:before { + content: "\f25b"; } + +.fa-hand-point-down:before { + content: "\f0a7"; } + +.fa-hand-point-left:before { + content: "\f0a5"; } + +.fa-hand-point-right:before { + content: "\f0a4"; } + +.fa-hand-point-up:before { + content: "\f0a6"; } + +.fa-hand-pointer:before { + content: "\f25a"; } + +.fa-hand-rock:before { + content: "\f255"; } + +.fa-hand-scissors:before { + content: "\f257"; } + +.fa-hand-spock:before { + content: "\f259"; } + +.fa-hands:before { + content: "\f4c2"; } + +.fa-hands-helping:before { + content: "\f4c4"; } + +.fa-handshake:before { + content: "\f2b5"; } + +.fa-hanukiah:before { + content: "\f6e6"; } + +.fa-hard-hat:before { + content: "\f807"; } + +.fa-hashtag:before { + content: "\f292"; } + +.fa-hat-cowboy:before { + content: "\f8c0"; } + +.fa-hat-cowboy-side:before { + content: "\f8c1"; } + +.fa-hat-wizard:before { + content: "\f6e8"; } + +.fa-haykal:before { + content: "\f666"; } + +.fa-hdd:before { + content: "\f0a0"; } + +.fa-heading:before { + content: "\f1dc"; } + +.fa-headphones:before { + content: "\f025"; } + +.fa-headphones-alt:before { + content: "\f58f"; } + +.fa-headset:before { + content: "\f590"; } + +.fa-heart:before { + content: "\f004"; } + +.fa-heart-broken:before { + content: "\f7a9"; } + +.fa-heartbeat:before { + content: "\f21e"; } + +.fa-helicopter:before { + content: "\f533"; } + +.fa-highlighter:before { + content: "\f591"; } + +.fa-hiking:before { + content: "\f6ec"; } + +.fa-hippo:before { + content: "\f6ed"; } + +.fa-hips:before { + content: "\f452"; } + +.fa-hire-a-helper:before { + content: "\f3b0"; } + +.fa-history:before { + content: "\f1da"; } + +.fa-hockey-puck:before { + content: "\f453"; } + +.fa-holly-berry:before { + content: "\f7aa"; } + +.fa-home:before { + content: "\f015"; } + +.fa-hooli:before { + content: "\f427"; } + +.fa-hornbill:before { + content: "\f592"; } + +.fa-horse:before { + content: "\f6f0"; } + +.fa-horse-head:before { + content: "\f7ab"; } + +.fa-hospital:before { + content: "\f0f8"; } + +.fa-hospital-alt:before { + content: "\f47d"; } + +.fa-hospital-symbol:before { + content: "\f47e"; } + +.fa-hot-tub:before { + content: "\f593"; } + +.fa-hotdog:before { + content: "\f80f"; } + +.fa-hotel:before { + content: "\f594"; } + +.fa-hotjar:before { + content: "\f3b1"; } + +.fa-hourglass:before { + content: "\f254"; } + +.fa-hourglass-end:before { + content: "\f253"; } + +.fa-hourglass-half:before { + content: "\f252"; } + +.fa-hourglass-start:before { + content: "\f251"; } + +.fa-house-damage:before { + content: "\f6f1"; } + +.fa-houzz:before { + content: "\f27c"; } + +.fa-hryvnia:before { + content: "\f6f2"; } + +.fa-html5:before { + content: "\f13b"; } + +.fa-hubspot:before { + content: "\f3b2"; } + +.fa-i-cursor:before { + content: "\f246"; } + +.fa-ice-cream:before { + content: "\f810"; } + +.fa-icicles:before { + content: "\f7ad"; } + +.fa-icons:before { + content: "\f86d"; } + +.fa-id-badge:before { + content: "\f2c1"; } + +.fa-id-card:before { + content: "\f2c2"; } + +.fa-id-card-alt:before { + content: "\f47f"; } + +.fa-igloo:before { + content: "\f7ae"; } + +.fa-image:before { + content: "\f03e"; } + +.fa-images:before { + content: "\f302"; } + +.fa-imdb:before { + content: "\f2d8"; } + +.fa-inbox:before { + content: "\f01c"; } + +.fa-indent:before { + content: "\f03c"; } + +.fa-industry:before { + content: "\f275"; } + +.fa-infinity:before { + content: "\f534"; } + +.fa-info:before { + content: "\f129"; } + +.fa-info-circle:before { + content: "\f05a"; } + +.fa-instagram:before { + content: "\f16d"; } + +.fa-intercom:before { + content: "\f7af"; } + +.fa-internet-explorer:before { + content: "\f26b"; } + +.fa-invision:before { + content: "\f7b0"; } + +.fa-ioxhost:before { + content: "\f208"; } + +.fa-italic:before { + content: "\f033"; } + +.fa-itch-io:before { + content: "\f83a"; } + +.fa-itunes:before { + content: "\f3b4"; } + +.fa-itunes-note:before { + content: "\f3b5"; } + +.fa-java:before { + content: "\f4e4"; } + +.fa-jedi:before { + content: "\f669"; } + +.fa-jedi-order:before { + content: "\f50e"; } + +.fa-jenkins:before { + content: "\f3b6"; } + +.fa-jira:before { + content: "\f7b1"; } + +.fa-joget:before { + content: "\f3b7"; } + +.fa-joint:before { + content: "\f595"; } + +.fa-joomla:before { + content: "\f1aa"; } + +.fa-journal-whills:before { + content: "\f66a"; } + +.fa-js:before { + content: "\f3b8"; } + +.fa-js-square:before { + content: "\f3b9"; } + +.fa-jsfiddle:before { + content: "\f1cc"; } + +.fa-kaaba:before { + content: "\f66b"; } + +.fa-kaggle:before { + content: "\f5fa"; } + +.fa-key:before { + content: "\f084"; } + +.fa-keybase:before { + content: "\f4f5"; } + +.fa-keyboard:before { + content: "\f11c"; } + +.fa-keycdn:before { + content: "\f3ba"; } + +.fa-khanda:before { + content: "\f66d"; } + +.fa-kickstarter:before { + content: "\f3bb"; } + +.fa-kickstarter-k:before { + content: "\f3bc"; } + +.fa-kiss:before { + content: "\f596"; } + +.fa-kiss-beam:before { + content: "\f597"; } + +.fa-kiss-wink-heart:before { + content: "\f598"; } + +.fa-kiwi-bird:before { + content: "\f535"; } + +.fa-korvue:before { + content: "\f42f"; } + +.fa-landmark:before { + content: "\f66f"; } + +.fa-language:before { + content: "\f1ab"; } + +.fa-laptop:before { + content: "\f109"; } + +.fa-laptop-code:before { + content: "\f5fc"; } + +.fa-laptop-medical:before { + content: "\f812"; } + +.fa-laravel:before { + content: "\f3bd"; } + +.fa-lastfm:before { + content: "\f202"; } + +.fa-lastfm-square:before { + content: "\f203"; } + +.fa-laugh:before { + content: "\f599"; } + +.fa-laugh-beam:before { + content: "\f59a"; } + +.fa-laugh-squint:before { + content: "\f59b"; } + +.fa-laugh-wink:before { + content: "\f59c"; } + +.fa-layer-group:before { + content: "\f5fd"; } + +.fa-leaf:before { + content: "\f06c"; } + +.fa-leanpub:before { + content: "\f212"; } + +.fa-lemon:before { + content: "\f094"; } + +.fa-less:before { + content: "\f41d"; } + +.fa-less-than:before { + content: "\f536"; } + +.fa-less-than-equal:before { + content: "\f537"; } + +.fa-level-down-alt:before { + content: "\f3be"; } + +.fa-level-up-alt:before { + content: "\f3bf"; } + +.fa-life-ring:before { + content: "\f1cd"; } + +.fa-lightbulb:before { + content: "\f0eb"; } + +.fa-line:before { + content: "\f3c0"; } + +.fa-link:before { + content: "\f0c1"; } + +.fa-linkedin:before { + content: "\f08c"; } + +.fa-linkedin-in:before { + content: "\f0e1"; } + +.fa-linode:before { + content: "\f2b8"; } + +.fa-linux:before { + content: "\f17c"; } + +.fa-lira-sign:before { + content: "\f195"; } + +.fa-list:before { + content: "\f03a"; } + +.fa-list-alt:before { + content: "\f022"; } + +.fa-list-ol:before { + content: "\f0cb"; } + +.fa-list-ul:before { + content: "\f0ca"; } + +.fa-location-arrow:before { + content: "\f124"; } + +.fa-lock:before { + content: "\f023"; } + +.fa-lock-open:before { + content: "\f3c1"; } + +.fa-long-arrow-alt-down:before { + content: "\f309"; } + +.fa-long-arrow-alt-left:before { + content: "\f30a"; } + +.fa-long-arrow-alt-right:before { + content: "\f30b"; } + +.fa-long-arrow-alt-up:before { + content: "\f30c"; } + +.fa-low-vision:before { + content: "\f2a8"; } + +.fa-luggage-cart:before { + content: "\f59d"; } + +.fa-lyft:before { + content: "\f3c3"; } + +.fa-magento:before { + content: "\f3c4"; } + +.fa-magic:before { + content: "\f0d0"; } + +.fa-magnet:before { + content: "\f076"; } + +.fa-mail-bulk:before { + content: "\f674"; } + +.fa-mailchimp:before { + content: "\f59e"; } + +.fa-male:before { + content: "\f183"; } + +.fa-mandalorian:before { + content: "\f50f"; } + +.fa-map:before { + content: "\f279"; } + +.fa-map-marked:before { + content: "\f59f"; } + +.fa-map-marked-alt:before { + content: "\f5a0"; } + +.fa-map-marker:before { + content: "\f041"; } + +.fa-map-marker-alt:before { + content: "\f3c5"; } + +.fa-map-pin:before { + content: "\f276"; } + +.fa-map-signs:before { + content: "\f277"; } + +.fa-markdown:before { + content: "\f60f"; } + +.fa-marker:before { + content: "\f5a1"; } + +.fa-mars:before { + content: "\f222"; } + +.fa-mars-double:before { + content: "\f227"; } + +.fa-mars-stroke:before { + content: "\f229"; } + +.fa-mars-stroke-h:before { + content: "\f22b"; } + +.fa-mars-stroke-v:before { + content: "\f22a"; } + +.fa-mask:before { + content: "\f6fa"; } + +.fa-mastodon:before { + content: "\f4f6"; } + +.fa-maxcdn:before { + content: "\f136"; } + +.fa-mdb:before { + content: "\f8ca"; } + +.fa-medal:before { + content: "\f5a2"; } + +.fa-medapps:before { + content: "\f3c6"; } + +.fa-medium:before { + content: "\f23a"; } + +.fa-medium-m:before { + content: "\f3c7"; } + +.fa-medkit:before { + content: "\f0fa"; } + +.fa-medrt:before { + content: "\f3c8"; } + +.fa-meetup:before { + content: "\f2e0"; } + +.fa-megaport:before { + content: "\f5a3"; } + +.fa-meh:before { + content: "\f11a"; } + +.fa-meh-blank:before { + content: "\f5a4"; } + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; } + +.fa-memory:before { + content: "\f538"; } + +.fa-mendeley:before { + content: "\f7b3"; } + +.fa-menorah:before { + content: "\f676"; } + +.fa-mercury:before { + content: "\f223"; } + +.fa-meteor:before { + content: "\f753"; } + +.fa-microchip:before { + content: "\f2db"; } + +.fa-microphone:before { + content: "\f130"; } + +.fa-microphone-alt:before { + content: "\f3c9"; } + +.fa-microphone-alt-slash:before { + content: "\f539"; } + +.fa-microphone-slash:before { + content: "\f131"; } + +.fa-microscope:before { + content: "\f610"; } + +.fa-microsoft:before { + content: "\f3ca"; } + +.fa-minus:before { + content: "\f068"; } + +.fa-minus-circle:before { + content: "\f056"; } + +.fa-minus-square:before { + content: "\f146"; } + +.fa-mitten:before { + content: "\f7b5"; } + +.fa-mix:before { + content: "\f3cb"; } + +.fa-mixcloud:before { + content: "\f289"; } + +.fa-mizuni:before { + content: "\f3cc"; } + +.fa-mobile:before { + content: "\f10b"; } + +.fa-mobile-alt:before { + content: "\f3cd"; } + +.fa-modx:before { + content: "\f285"; } + +.fa-monero:before { + content: "\f3d0"; } + +.fa-money-bill:before { + content: "\f0d6"; } + +.fa-money-bill-alt:before { + content: "\f3d1"; } + +.fa-money-bill-wave:before { + content: "\f53a"; } + +.fa-money-bill-wave-alt:before { + content: "\f53b"; } + +.fa-money-check:before { + content: "\f53c"; } + +.fa-money-check-alt:before { + content: "\f53d"; } + +.fa-monument:before { + content: "\f5a6"; } + +.fa-moon:before { + content: "\f186"; } + +.fa-mortar-pestle:before { + content: "\f5a7"; } + +.fa-mosque:before { + content: "\f678"; } + +.fa-motorcycle:before { + content: "\f21c"; } + +.fa-mountain:before { + content: "\f6fc"; } + +.fa-mouse:before { + content: "\f8cc"; } + +.fa-mouse-pointer:before { + content: "\f245"; } + +.fa-mug-hot:before { + content: "\f7b6"; } + +.fa-music:before { + content: "\f001"; } + +.fa-napster:before { + content: "\f3d2"; } + +.fa-neos:before { + content: "\f612"; } + +.fa-network-wired:before { + content: "\f6ff"; } + +.fa-neuter:before { + content: "\f22c"; } + +.fa-newspaper:before { + content: "\f1ea"; } + +.fa-nimblr:before { + content: "\f5a8"; } + +.fa-node:before { + content: "\f419"; } + +.fa-node-js:before { + content: "\f3d3"; } + +.fa-not-equal:before { + content: "\f53e"; } + +.fa-notes-medical:before { + content: "\f481"; } + +.fa-npm:before { + content: "\f3d4"; } + +.fa-ns8:before { + content: "\f3d5"; } + +.fa-nutritionix:before { + content: "\f3d6"; } + +.fa-object-group:before { + content: "\f247"; } + +.fa-object-ungroup:before { + content: "\f248"; } + +.fa-odnoklassniki:before { + content: "\f263"; } + +.fa-odnoklassniki-square:before { + content: "\f264"; } + +.fa-oil-can:before { + content: "\f613"; } + +.fa-old-republic:before { + content: "\f510"; } + +.fa-om:before { + content: "\f679"; } + +.fa-opencart:before { + content: "\f23d"; } + +.fa-openid:before { + content: "\f19b"; } + +.fa-opera:before { + content: "\f26a"; } + +.fa-optin-monster:before { + content: "\f23c"; } + +.fa-orcid:before { + content: "\f8d2"; } + +.fa-osi:before { + content: "\f41a"; } + +.fa-otter:before { + content: "\f700"; } + +.fa-outdent:before { + content: "\f03b"; } + +.fa-page4:before { + content: "\f3d7"; } + +.fa-pagelines:before { + content: "\f18c"; } + +.fa-pager:before { + content: "\f815"; } + +.fa-paint-brush:before { + content: "\f1fc"; } + +.fa-paint-roller:before { + content: "\f5aa"; } + +.fa-palette:before { + content: "\f53f"; } + +.fa-palfed:before { + content: "\f3d8"; } + +.fa-pallet:before { + content: "\f482"; } + +.fa-paper-plane:before { + content: "\f1d8"; } + +.fa-paperclip:before { + content: "\f0c6"; } + +.fa-parachute-box:before { + content: "\f4cd"; } + +.fa-paragraph:before { + content: "\f1dd"; } + +.fa-parking:before { + content: "\f540"; } + +.fa-passport:before { + content: "\f5ab"; } + +.fa-pastafarianism:before { + content: "\f67b"; } + +.fa-paste:before { + content: "\f0ea"; } + +.fa-patreon:before { + content: "\f3d9"; } + +.fa-pause:before { + content: "\f04c"; } + +.fa-pause-circle:before { + content: "\f28b"; } + +.fa-paw:before { + content: "\f1b0"; } + +.fa-paypal:before { + content: "\f1ed"; } + +.fa-peace:before { + content: "\f67c"; } + +.fa-pen:before { + content: "\f304"; } + +.fa-pen-alt:before { + content: "\f305"; } + +.fa-pen-fancy:before { + content: "\f5ac"; } + +.fa-pen-nib:before { + content: "\f5ad"; } + +.fa-pen-square:before { + content: "\f14b"; } + +.fa-pencil-alt:before { + content: "\f303"; } + +.fa-pencil-ruler:before { + content: "\f5ae"; } + +.fa-penny-arcade:before { + content: "\f704"; } + +.fa-people-carry:before { + content: "\f4ce"; } + +.fa-pepper-hot:before { + content: "\f816"; } + +.fa-percent:before { + content: "\f295"; } + +.fa-percentage:before { + content: "\f541"; } + +.fa-periscope:before { + content: "\f3da"; } + +.fa-person-booth:before { + content: "\f756"; } + +.fa-phabricator:before { + content: "\f3db"; } + +.fa-phoenix-framework:before { + content: "\f3dc"; } + +.fa-phoenix-squadron:before { + content: "\f511"; } + +.fa-phone:before { + content: "\f095"; } + +.fa-phone-alt:before { + content: "\f879"; } + +.fa-phone-slash:before { + content: "\f3dd"; } + +.fa-phone-square:before { + content: "\f098"; } + +.fa-phone-square-alt:before { + content: "\f87b"; } + +.fa-phone-volume:before { + content: "\f2a0"; } + +.fa-photo-video:before { + content: "\f87c"; } + +.fa-php:before { + content: "\f457"; } + +.fa-pied-piper:before { + content: "\f2ae"; } + +.fa-pied-piper-alt:before { + content: "\f1a8"; } + +.fa-pied-piper-hat:before { + content: "\f4e5"; } + +.fa-pied-piper-pp:before { + content: "\f1a7"; } + +.fa-piggy-bank:before { + content: "\f4d3"; } + +.fa-pills:before { + content: "\f484"; } + +.fa-pinterest:before { + content: "\f0d2"; } + +.fa-pinterest-p:before { + content: "\f231"; } + +.fa-pinterest-square:before { + content: "\f0d3"; } + +.fa-pizza-slice:before { + content: "\f818"; } + +.fa-place-of-worship:before { + content: "\f67f"; } + +.fa-plane:before { + content: "\f072"; } + +.fa-plane-arrival:before { + content: "\f5af"; } + +.fa-plane-departure:before { + content: "\f5b0"; } + +.fa-play:before { + content: "\f04b"; } + +.fa-play-circle:before { + content: "\f144"; } + +.fa-playstation:before { + content: "\f3df"; } + +.fa-plug:before { + content: "\f1e6"; } + +.fa-plus:before { + content: "\f067"; } + +.fa-plus-circle:before { + content: "\f055"; } + +.fa-plus-square:before { + content: "\f0fe"; } + +.fa-podcast:before { + content: "\f2ce"; } + +.fa-poll:before { + content: "\f681"; } + +.fa-poll-h:before { + content: "\f682"; } + +.fa-poo:before { + content: "\f2fe"; } + +.fa-poo-storm:before { + content: "\f75a"; } + +.fa-poop:before { + content: "\f619"; } + +.fa-portrait:before { + content: "\f3e0"; } + +.fa-pound-sign:before { + content: "\f154"; } + +.fa-power-off:before { + content: "\f011"; } + +.fa-pray:before { + content: "\f683"; } + +.fa-praying-hands:before { + content: "\f684"; } + +.fa-prescription:before { + content: "\f5b1"; } + +.fa-prescription-bottle:before { + content: "\f485"; } + +.fa-prescription-bottle-alt:before { + content: "\f486"; } + +.fa-print:before { + content: "\f02f"; } + +.fa-procedures:before { + content: "\f487"; } + +.fa-product-hunt:before { + content: "\f288"; } + +.fa-project-diagram:before { + content: "\f542"; } + +.fa-pushed:before { + content: "\f3e1"; } + +.fa-puzzle-piece:before { + content: "\f12e"; } + +.fa-python:before { + content: "\f3e2"; } + +.fa-qq:before { + content: "\f1d6"; } + +.fa-qrcode:before { + content: "\f029"; } + +.fa-question:before { + content: "\f128"; } + +.fa-question-circle:before { + content: "\f059"; } + +.fa-quidditch:before { + content: "\f458"; } + +.fa-quinscape:before { + content: "\f459"; } + +.fa-quora:before { + content: "\f2c4"; } + +.fa-quote-left:before { + content: "\f10d"; } + +.fa-quote-right:before { + content: "\f10e"; } + +.fa-quran:before { + content: "\f687"; } + +.fa-r-project:before { + content: "\f4f7"; } + +.fa-radiation:before { + content: "\f7b9"; } + +.fa-radiation-alt:before { + content: "\f7ba"; } + +.fa-rainbow:before { + content: "\f75b"; } + +.fa-random:before { + content: "\f074"; } + +.fa-raspberry-pi:before { + content: "\f7bb"; } + +.fa-ravelry:before { + content: "\f2d9"; } + +.fa-react:before { + content: "\f41b"; } + +.fa-reacteurope:before { + content: "\f75d"; } + +.fa-readme:before { + content: "\f4d5"; } + +.fa-rebel:before { + content: "\f1d0"; } + +.fa-receipt:before { + content: "\f543"; } + +.fa-record-vinyl:before { + content: "\f8d9"; } + +.fa-recycle:before { + content: "\f1b8"; } + +.fa-red-river:before { + content: "\f3e3"; } + +.fa-reddit:before { + content: "\f1a1"; } + +.fa-reddit-alien:before { + content: "\f281"; } + +.fa-reddit-square:before { + content: "\f1a2"; } + +.fa-redhat:before { + content: "\f7bc"; } + +.fa-redo:before { + content: "\f01e"; } + +.fa-redo-alt:before { + content: "\f2f9"; } + +.fa-registered:before { + content: "\f25d"; } + +.fa-remove-format:before { + content: "\f87d"; } + +.fa-renren:before { + content: "\f18b"; } + +.fa-reply:before { + content: "\f3e5"; } + +.fa-reply-all:before { + content: "\f122"; } + +.fa-replyd:before { + content: "\f3e6"; } + +.fa-republican:before { + content: "\f75e"; } + +.fa-researchgate:before { + content: "\f4f8"; } + +.fa-resolving:before { + content: "\f3e7"; } + +.fa-restroom:before { + content: "\f7bd"; } + +.fa-retweet:before { + content: "\f079"; } + +.fa-rev:before { + content: "\f5b2"; } + +.fa-ribbon:before { + content: "\f4d6"; } + +.fa-ring:before { + content: "\f70b"; } + +.fa-road:before { + content: "\f018"; } + +.fa-robot:before { + content: "\f544"; } + +.fa-rocket:before { + content: "\f135"; } + +.fa-rocketchat:before { + content: "\f3e8"; } + +.fa-rockrms:before { + content: "\f3e9"; } + +.fa-route:before { + content: "\f4d7"; } + +.fa-rss:before { + content: "\f09e"; } + +.fa-rss-square:before { + content: "\f143"; } + +.fa-ruble-sign:before { + content: "\f158"; } + +.fa-ruler:before { + content: "\f545"; } + +.fa-ruler-combined:before { + content: "\f546"; } + +.fa-ruler-horizontal:before { + content: "\f547"; } + +.fa-ruler-vertical:before { + content: "\f548"; } + +.fa-running:before { + content: "\f70c"; } + +.fa-rupee-sign:before { + content: "\f156"; } + +.fa-sad-cry:before { + content: "\f5b3"; } + +.fa-sad-tear:before { + content: "\f5b4"; } + +.fa-safari:before { + content: "\f267"; } + +.fa-salesforce:before { + content: "\f83b"; } + +.fa-sass:before { + content: "\f41e"; } + +.fa-satellite:before { + content: "\f7bf"; } + +.fa-satellite-dish:before { + content: "\f7c0"; } + +.fa-save:before { + content: "\f0c7"; } + +.fa-schlix:before { + content: "\f3ea"; } + +.fa-school:before { + content: "\f549"; } + +.fa-screwdriver:before { + content: "\f54a"; } + +.fa-scribd:before { + content: "\f28a"; } + +.fa-scroll:before { + content: "\f70e"; } + +.fa-sd-card:before { + content: "\f7c2"; } + +.fa-search:before { + content: "\f002"; } + +.fa-search-dollar:before { + content: "\f688"; } + +.fa-search-location:before { + content: "\f689"; } + +.fa-search-minus:before { + content: "\f010"; } + +.fa-search-plus:before { + content: "\f00e"; } + +.fa-searchengin:before { + content: "\f3eb"; } + +.fa-seedling:before { + content: "\f4d8"; } + +.fa-sellcast:before { + content: "\f2da"; } + +.fa-sellsy:before { + content: "\f213"; } + +.fa-server:before { + content: "\f233"; } + +.fa-servicestack:before { + content: "\f3ec"; } + +.fa-shapes:before { + content: "\f61f"; } + +.fa-share:before { + content: "\f064"; } + +.fa-share-alt:before { + content: "\f1e0"; } + +.fa-share-alt-square:before { + content: "\f1e1"; } + +.fa-share-square:before { + content: "\f14d"; } + +.fa-shekel-sign:before { + content: "\f20b"; } + +.fa-shield-alt:before { + content: "\f3ed"; } + +.fa-ship:before { + content: "\f21a"; } + +.fa-shipping-fast:before { + content: "\f48b"; } + +.fa-shirtsinbulk:before { + content: "\f214"; } + +.fa-shoe-prints:before { + content: "\f54b"; } + +.fa-shopping-bag:before { + content: "\f290"; } + +.fa-shopping-basket:before { + content: "\f291"; } + +.fa-shopping-cart:before { + content: "\f07a"; } + +.fa-shopware:before { + content: "\f5b5"; } + +.fa-shower:before { + content: "\f2cc"; } + +.fa-shuttle-van:before { + content: "\f5b6"; } + +.fa-sign:before { + content: "\f4d9"; } + +.fa-sign-in-alt:before { + content: "\f2f6"; } + +.fa-sign-language:before { + content: "\f2a7"; } + +.fa-sign-out-alt:before { + content: "\f2f5"; } + +.fa-signal:before { + content: "\f012"; } + +.fa-signature:before { + content: "\f5b7"; } + +.fa-sim-card:before { + content: "\f7c4"; } + +.fa-simplybuilt:before { + content: "\f215"; } + +.fa-sistrix:before { + content: "\f3ee"; } + +.fa-sitemap:before { + content: "\f0e8"; } + +.fa-sith:before { + content: "\f512"; } + +.fa-skating:before { + content: "\f7c5"; } + +.fa-sketch:before { + content: "\f7c6"; } + +.fa-skiing:before { + content: "\f7c9"; } + +.fa-skiing-nordic:before { + content: "\f7ca"; } + +.fa-skull:before { + content: "\f54c"; } + +.fa-skull-crossbones:before { + content: "\f714"; } + +.fa-skyatlas:before { + content: "\f216"; } + +.fa-skype:before { + content: "\f17e"; } + +.fa-slack:before { + content: "\f198"; } + +.fa-slack-hash:before { + content: "\f3ef"; } + +.fa-slash:before { + content: "\f715"; } + +.fa-sleigh:before { + content: "\f7cc"; } + +.fa-sliders-h:before { + content: "\f1de"; } + +.fa-slideshare:before { + content: "\f1e7"; } + +.fa-smile:before { + content: "\f118"; } + +.fa-smile-beam:before { + content: "\f5b8"; } + +.fa-smile-wink:before { + content: "\f4da"; } + +.fa-smog:before { + content: "\f75f"; } + +.fa-smoking:before { + content: "\f48d"; } + +.fa-smoking-ban:before { + content: "\f54d"; } + +.fa-sms:before { + content: "\f7cd"; } + +.fa-snapchat:before { + content: "\f2ab"; } + +.fa-snapchat-ghost:before { + content: "\f2ac"; } + +.fa-snapchat-square:before { + content: "\f2ad"; } + +.fa-snowboarding:before { + content: "\f7ce"; } + +.fa-snowflake:before { + content: "\f2dc"; } + +.fa-snowman:before { + content: "\f7d0"; } + +.fa-snowplow:before { + content: "\f7d2"; } + +.fa-socks:before { + content: "\f696"; } + +.fa-solar-panel:before { + content: "\f5ba"; } + +.fa-sort:before { + content: "\f0dc"; } + +.fa-sort-alpha-down:before { + content: "\f15d"; } + +.fa-sort-alpha-down-alt:before { + content: "\f881"; } + +.fa-sort-alpha-up:before { + content: "\f15e"; } + +.fa-sort-alpha-up-alt:before { + content: "\f882"; } + +.fa-sort-amount-down:before { + content: "\f160"; } + +.fa-sort-amount-down-alt:before { + content: "\f884"; } + +.fa-sort-amount-up:before { + content: "\f161"; } + +.fa-sort-amount-up-alt:before { + content: "\f885"; } + +.fa-sort-down:before { + content: "\f0dd"; } + +.fa-sort-numeric-down:before { + content: "\f162"; } + +.fa-sort-numeric-down-alt:before { + content: "\f886"; } + +.fa-sort-numeric-up:before { + content: "\f163"; } + +.fa-sort-numeric-up-alt:before { + content: "\f887"; } + +.fa-sort-up:before { + content: "\f0de"; } + +.fa-soundcloud:before { + content: "\f1be"; } + +.fa-sourcetree:before { + content: "\f7d3"; } + +.fa-spa:before { + content: "\f5bb"; } + +.fa-space-shuttle:before { + content: "\f197"; } + +.fa-speakap:before { + content: "\f3f3"; } + +.fa-speaker-deck:before { + content: "\f83c"; } + +.fa-spell-check:before { + content: "\f891"; } + +.fa-spider:before { + content: "\f717"; } + +.fa-spinner:before { + content: "\f110"; } + +.fa-splotch:before { + content: "\f5bc"; } + +.fa-spotify:before { + content: "\f1bc"; } + +.fa-spray-can:before { + content: "\f5bd"; } + +.fa-square:before { + content: "\f0c8"; } + +.fa-square-full:before { + content: "\f45c"; } + +.fa-square-root-alt:before { + content: "\f698"; } + +.fa-squarespace:before { + content: "\f5be"; } + +.fa-stack-exchange:before { + content: "\f18d"; } + +.fa-stack-overflow:before { + content: "\f16c"; } + +.fa-stackpath:before { + content: "\f842"; } + +.fa-stamp:before { + content: "\f5bf"; } + +.fa-star:before { + content: "\f005"; } + +.fa-star-and-crescent:before { + content: "\f699"; } + +.fa-star-half:before { + content: "\f089"; } + +.fa-star-half-alt:before { + content: "\f5c0"; } + +.fa-star-of-david:before { + content: "\f69a"; } + +.fa-star-of-life:before { + content: "\f621"; } + +.fa-staylinked:before { + content: "\f3f5"; } + +.fa-steam:before { + content: "\f1b6"; } + +.fa-steam-square:before { + content: "\f1b7"; } + +.fa-steam-symbol:before { + content: "\f3f6"; } + +.fa-step-backward:before { + content: "\f048"; } + +.fa-step-forward:before { + content: "\f051"; } + +.fa-stethoscope:before { + content: "\f0f1"; } + +.fa-sticker-mule:before { + content: "\f3f7"; } + +.fa-sticky-note:before { + content: "\f249"; } + +.fa-stop:before { + content: "\f04d"; } + +.fa-stop-circle:before { + content: "\f28d"; } + +.fa-stopwatch:before { + content: "\f2f2"; } + +.fa-store:before { + content: "\f54e"; } + +.fa-store-alt:before { + content: "\f54f"; } + +.fa-strava:before { + content: "\f428"; } + +.fa-stream:before { + content: "\f550"; } + +.fa-street-view:before { + content: "\f21d"; } + +.fa-strikethrough:before { + content: "\f0cc"; } + +.fa-stripe:before { + content: "\f429"; } + +.fa-stripe-s:before { + content: "\f42a"; } + +.fa-stroopwafel:before { + content: "\f551"; } + +.fa-studiovinari:before { + content: "\f3f8"; } + +.fa-stumbleupon:before { + content: "\f1a4"; } + +.fa-stumbleupon-circle:before { + content: "\f1a3"; } + +.fa-subscript:before { + content: "\f12c"; } + +.fa-subway:before { + content: "\f239"; } + +.fa-suitcase:before { + content: "\f0f2"; } + +.fa-suitcase-rolling:before { + content: "\f5c1"; } + +.fa-sun:before { + content: "\f185"; } + +.fa-superpowers:before { + content: "\f2dd"; } + +.fa-superscript:before { + content: "\f12b"; } + +.fa-supple:before { + content: "\f3f9"; } + +.fa-surprise:before { + content: "\f5c2"; } + +.fa-suse:before { + content: "\f7d6"; } + +.fa-swatchbook:before { + content: "\f5c3"; } + +.fa-swift:before { + content: "\f8e1"; } + +.fa-swimmer:before { + content: "\f5c4"; } + +.fa-swimming-pool:before { + content: "\f5c5"; } + +.fa-symfony:before { + content: "\f83d"; } + +.fa-synagogue:before { + content: "\f69b"; } + +.fa-sync:before { + content: "\f021"; } + +.fa-sync-alt:before { + content: "\f2f1"; } + +.fa-syringe:before { + content: "\f48e"; } + +.fa-table:before { + content: "\f0ce"; } + +.fa-table-tennis:before { + content: "\f45d"; } + +.fa-tablet:before { + content: "\f10a"; } + +.fa-tablet-alt:before { + content: "\f3fa"; } + +.fa-tablets:before { + content: "\f490"; } + +.fa-tachometer-alt:before { + content: "\f3fd"; } + +.fa-tag:before { + content: "\f02b"; } + +.fa-tags:before { + content: "\f02c"; } + +.fa-tape:before { + content: "\f4db"; } + +.fa-tasks:before { + content: "\f0ae"; } + +.fa-taxi:before { + content: "\f1ba"; } + +.fa-teamspeak:before { + content: "\f4f9"; } + +.fa-teeth:before { + content: "\f62e"; } + +.fa-teeth-open:before { + content: "\f62f"; } + +.fa-telegram:before { + content: "\f2c6"; } + +.fa-telegram-plane:before { + content: "\f3fe"; } + +.fa-temperature-high:before { + content: "\f769"; } + +.fa-temperature-low:before { + content: "\f76b"; } + +.fa-tencent-weibo:before { + content: "\f1d5"; } + +.fa-tenge:before { + content: "\f7d7"; } + +.fa-terminal:before { + content: "\f120"; } + +.fa-text-height:before { + content: "\f034"; } + +.fa-text-width:before { + content: "\f035"; } + +.fa-th:before { + content: "\f00a"; } + +.fa-th-large:before { + content: "\f009"; } + +.fa-th-list:before { + content: "\f00b"; } + +.fa-the-red-yeti:before { + content: "\f69d"; } + +.fa-theater-masks:before { + content: "\f630"; } + +.fa-themeco:before { + content: "\f5c6"; } + +.fa-themeisle:before { + content: "\f2b2"; } + +.fa-thermometer:before { + content: "\f491"; } + +.fa-thermometer-empty:before { + content: "\f2cb"; } + +.fa-thermometer-full:before { + content: "\f2c7"; } + +.fa-thermometer-half:before { + content: "\f2c9"; } + +.fa-thermometer-quarter:before { + content: "\f2ca"; } + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; } + +.fa-think-peaks:before { + content: "\f731"; } + +.fa-thumbs-down:before { + content: "\f165"; } + +.fa-thumbs-up:before { + content: "\f164"; } + +.fa-thumbtack:before { + content: "\f08d"; } + +.fa-ticket-alt:before { + content: "\f3ff"; } + +.fa-times:before { + content: "\f00d"; } + +.fa-times-circle:before { + content: "\f057"; } + +.fa-tint:before { + content: "\f043"; } + +.fa-tint-slash:before { + content: "\f5c7"; } + +.fa-tired:before { + content: "\f5c8"; } + +.fa-toggle-off:before { + content: "\f204"; } + +.fa-toggle-on:before { + content: "\f205"; } + +.fa-toilet:before { + content: "\f7d8"; } + +.fa-toilet-paper:before { + content: "\f71e"; } + +.fa-toolbox:before { + content: "\f552"; } + +.fa-tools:before { + content: "\f7d9"; } + +.fa-tooth:before { + content: "\f5c9"; } + +.fa-torah:before { + content: "\f6a0"; } + +.fa-torii-gate:before { + content: "\f6a1"; } + +.fa-tractor:before { + content: "\f722"; } + +.fa-trade-federation:before { + content: "\f513"; } + +.fa-trademark:before { + content: "\f25c"; } + +.fa-traffic-light:before { + content: "\f637"; } + +.fa-train:before { + content: "\f238"; } + +.fa-tram:before { + content: "\f7da"; } + +.fa-transgender:before { + content: "\f224"; } + +.fa-transgender-alt:before { + content: "\f225"; } + +.fa-trash:before { + content: "\f1f8"; } + +.fa-trash-alt:before { + content: "\f2ed"; } + +.fa-trash-restore:before { + content: "\f829"; } + +.fa-trash-restore-alt:before { + content: "\f82a"; } + +.fa-tree:before { + content: "\f1bb"; } + +.fa-trello:before { + content: "\f181"; } + +.fa-tripadvisor:before { + content: "\f262"; } + +.fa-trophy:before { + content: "\f091"; } + +.fa-truck:before { + content: "\f0d1"; } + +.fa-truck-loading:before { + content: "\f4de"; } + +.fa-truck-monster:before { + content: "\f63b"; } + +.fa-truck-moving:before { + content: "\f4df"; } + +.fa-truck-pickup:before { + content: "\f63c"; } + +.fa-tshirt:before { + content: "\f553"; } + +.fa-tty:before { + content: "\f1e4"; } + +.fa-tumblr:before { + content: "\f173"; } + +.fa-tumblr-square:before { + content: "\f174"; } + +.fa-tv:before { + content: "\f26c"; } + +.fa-twitch:before { + content: "\f1e8"; } + +.fa-twitter:before { + content: "\f099"; } + +.fa-twitter-square:before { + content: "\f081"; } + +.fa-typo3:before { + content: "\f42b"; } + +.fa-uber:before { + content: "\f402"; } + +.fa-ubuntu:before { + content: "\f7df"; } + +.fa-uikit:before { + content: "\f403"; } + +.fa-umbraco:before { + content: "\f8e8"; } + +.fa-umbrella:before { + content: "\f0e9"; } + +.fa-umbrella-beach:before { + content: "\f5ca"; } + +.fa-underline:before { + content: "\f0cd"; } + +.fa-undo:before { + content: "\f0e2"; } + +.fa-undo-alt:before { + content: "\f2ea"; } + +.fa-uniregistry:before { + content: "\f404"; } + +.fa-universal-access:before { + content: "\f29a"; } + +.fa-university:before { + content: "\f19c"; } + +.fa-unlink:before { + content: "\f127"; } + +.fa-unlock:before { + content: "\f09c"; } + +.fa-unlock-alt:before { + content: "\f13e"; } + +.fa-untappd:before { + content: "\f405"; } + +.fa-upload:before { + content: "\f093"; } + +.fa-ups:before { + content: "\f7e0"; } + +.fa-usb:before { + content: "\f287"; } + +.fa-user:before { + content: "\f007"; } + +.fa-user-alt:before { + content: "\f406"; } + +.fa-user-alt-slash:before { + content: "\f4fa"; } + +.fa-user-astronaut:before { + content: "\f4fb"; } + +.fa-user-check:before { + content: "\f4fc"; } + +.fa-user-circle:before { + content: "\f2bd"; } + +.fa-user-clock:before { + content: "\f4fd"; } + +.fa-user-cog:before { + content: "\f4fe"; } + +.fa-user-edit:before { + content: "\f4ff"; } + +.fa-user-friends:before { + content: "\f500"; } + +.fa-user-graduate:before { + content: "\f501"; } + +.fa-user-injured:before { + content: "\f728"; } + +.fa-user-lock:before { + content: "\f502"; } + +.fa-user-md:before { + content: "\f0f0"; } + +.fa-user-minus:before { + content: "\f503"; } + +.fa-user-ninja:before { + content: "\f504"; } + +.fa-user-nurse:before { + content: "\f82f"; } + +.fa-user-plus:before { + content: "\f234"; } + +.fa-user-secret:before { + content: "\f21b"; } + +.fa-user-shield:before { + content: "\f505"; } + +.fa-user-slash:before { + content: "\f506"; } + +.fa-user-tag:before { + content: "\f507"; } + +.fa-user-tie:before { + content: "\f508"; } + +.fa-user-times:before { + content: "\f235"; } + +.fa-users:before { + content: "\f0c0"; } + +.fa-users-cog:before { + content: "\f509"; } + +.fa-usps:before { + content: "\f7e1"; } + +.fa-ussunnah:before { + content: "\f407"; } + +.fa-utensil-spoon:before { + content: "\f2e5"; } + +.fa-utensils:before { + content: "\f2e7"; } + +.fa-vaadin:before { + content: "\f408"; } + +.fa-vector-square:before { + content: "\f5cb"; } + +.fa-venus:before { + content: "\f221"; } + +.fa-venus-double:before { + content: "\f226"; } + +.fa-venus-mars:before { + content: "\f228"; } + +.fa-viacoin:before { + content: "\f237"; } + +.fa-viadeo:before { + content: "\f2a9"; } + +.fa-viadeo-square:before { + content: "\f2aa"; } + +.fa-vial:before { + content: "\f492"; } + +.fa-vials:before { + content: "\f493"; } + +.fa-viber:before { + content: "\f409"; } + +.fa-video:before { + content: "\f03d"; } + +.fa-video-slash:before { + content: "\f4e2"; } + +.fa-vihara:before { + content: "\f6a7"; } + +.fa-vimeo:before { + content: "\f40a"; } + +.fa-vimeo-square:before { + content: "\f194"; } + +.fa-vimeo-v:before { + content: "\f27d"; } + +.fa-vine:before { + content: "\f1ca"; } + +.fa-vk:before { + content: "\f189"; } + +.fa-vnv:before { + content: "\f40b"; } + +.fa-voicemail:before { + content: "\f897"; } + +.fa-volleyball-ball:before { + content: "\f45f"; } + +.fa-volume-down:before { + content: "\f027"; } + +.fa-volume-mute:before { + content: "\f6a9"; } + +.fa-volume-off:before { + content: "\f026"; } + +.fa-volume-up:before { + content: "\f028"; } + +.fa-vote-yea:before { + content: "\f772"; } + +.fa-vr-cardboard:before { + content: "\f729"; } + +.fa-vuejs:before { + content: "\f41f"; } + +.fa-walking:before { + content: "\f554"; } + +.fa-wallet:before { + content: "\f555"; } + +.fa-warehouse:before { + content: "\f494"; } + +.fa-water:before { + content: "\f773"; } + +.fa-wave-square:before { + content: "\f83e"; } + +.fa-waze:before { + content: "\f83f"; } + +.fa-weebly:before { + content: "\f5cc"; } + +.fa-weibo:before { + content: "\f18a"; } + +.fa-weight:before { + content: "\f496"; } + +.fa-weight-hanging:before { + content: "\f5cd"; } + +.fa-weixin:before { + content: "\f1d7"; } + +.fa-whatsapp:before { + content: "\f232"; } + +.fa-whatsapp-square:before { + content: "\f40c"; } + +.fa-wheelchair:before { + content: "\f193"; } + +.fa-whmcs:before { + content: "\f40d"; } + +.fa-wifi:before { + content: "\f1eb"; } + +.fa-wikipedia-w:before { + content: "\f266"; } + +.fa-wind:before { + content: "\f72e"; } + +.fa-window-close:before { + content: "\f410"; } + +.fa-window-maximize:before { + content: "\f2d0"; } + +.fa-window-minimize:before { + content: "\f2d1"; } + +.fa-window-restore:before { + content: "\f2d2"; } + +.fa-windows:before { + content: "\f17a"; } + +.fa-wine-bottle:before { + content: "\f72f"; } + +.fa-wine-glass:before { + content: "\f4e3"; } + +.fa-wine-glass-alt:before { + content: "\f5ce"; } + +.fa-wix:before { + content: "\f5cf"; } + +.fa-wizards-of-the-coast:before { + content: "\f730"; } + +.fa-wolf-pack-battalion:before { + content: "\f514"; } + +.fa-won-sign:before { + content: "\f159"; } + +.fa-wordpress:before { + content: "\f19a"; } + +.fa-wordpress-simple:before { + content: "\f411"; } + +.fa-wpbeginner:before { + content: "\f297"; } + +.fa-wpexplorer:before { + content: "\f2de"; } + +.fa-wpforms:before { + content: "\f298"; } + +.fa-wpressr:before { + content: "\f3e4"; } + +.fa-wrench:before { + content: "\f0ad"; } + +.fa-x-ray:before { + content: "\f497"; } + +.fa-xbox:before { + content: "\f412"; } + +.fa-xing:before { + content: "\f168"; } + +.fa-xing-square:before { + content: "\f169"; } + +.fa-y-combinator:before { + content: "\f23b"; } + +.fa-yahoo:before { + content: "\f19e"; } + +.fa-yammer:before { + content: "\f840"; } + +.fa-yandex:before { + content: "\f413"; } + +.fa-yandex-international:before { + content: "\f414"; } + +.fa-yarn:before { + content: "\f7e3"; } + +.fa-yelp:before { + content: "\f1e9"; } + +.fa-yen-sign:before { + content: "\f157"; } + +.fa-yin-yang:before { + content: "\f6ad"; } + +.fa-yoast:before { + content: "\f2b1"; } + +.fa-youtube:before { + content: "\f167"; } + +.fa-youtube-square:before { + content: "\f431"; } + +.fa-zhihu:before { + content: "\f63f"; } + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; } +@font-face { + font-family: 'Font Awesome 5 Brands'; + font-style: normal; + font-weight: normal; + font-display: auto; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } + +.fab { + font-family: 'Font Awesome 5 Brands'; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 400; + font-display: auto; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } + +.far { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } +@font-face { + font-family: 'Font Awesome 5 Free'; + font-style: normal; + font-weight: 900; + font-display: auto; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } + +.fa, +.fas { + font-family: 'Font Awesome 5 Free'; + font-weight: 900; } diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css new file mode 100644 index 000000000..03973a9e3 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css @@ -0,0 +1,2166 @@ +/*! + * Font Awesome Free 5.11.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before { + content: "\f000"; } + +.fa.fa-meetup { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-star-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-o:before { + content: "\f005"; } + +.fa.fa-remove:before { + content: "\f00d"; } + +.fa.fa-close:before { + content: "\f00d"; } + +.fa.fa-gear:before { + content: "\f013"; } + +.fa.fa-trash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-trash-o:before { + content: "\f2ed"; } + +.fa.fa-file-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-o:before { + content: "\f15b"; } + +.fa.fa-clock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-clock-o:before { + content: "\f017"; } + +.fa.fa-arrow-circle-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-down:before { + content: "\f358"; } + +.fa.fa-arrow-circle-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-up:before { + content: "\f35b"; } + +.fa.fa-play-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-play-circle-o:before { + content: "\f144"; } + +.fa.fa-repeat:before { + content: "\f01e"; } + +.fa.fa-rotate-right:before { + content: "\f01e"; } + +.fa.fa-refresh:before { + content: "\f021"; } + +.fa.fa-list-alt { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dedent:before { + content: "\f03b"; } + +.fa.fa-video-camera:before { + content: "\f03d"; } + +.fa.fa-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-picture-o:before { + content: "\f03e"; } + +.fa.fa-photo { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-photo:before { + content: "\f03e"; } + +.fa.fa-image { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-image:before { + content: "\f03e"; } + +.fa.fa-pencil:before { + content: "\f303"; } + +.fa.fa-map-marker:before { + content: "\f3c5"; } + +.fa.fa-pencil-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pencil-square-o:before { + content: "\f044"; } + +.fa.fa-share-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-share-square-o:before { + content: "\f14d"; } + +.fa.fa-check-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-square-o:before { + content: "\f14a"; } + +.fa.fa-arrows:before { + content: "\f0b2"; } + +.fa.fa-times-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-circle-o:before { + content: "\f057"; } + +.fa.fa-check-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-check-circle-o:before { + content: "\f058"; } + +.fa.fa-mail-forward:before { + content: "\f064"; } + +.fa.fa-eye { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eye-slash { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-warning:before { + content: "\f071"; } + +.fa.fa-calendar:before { + content: "\f073"; } + +.fa.fa-arrows-v:before { + content: "\f338"; } + +.fa.fa-arrows-h:before { + content: "\f337"; } + +.fa.fa-bar-chart { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart:before { + content: "\f080"; } + +.fa.fa-bar-chart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bar-chart-o:before { + content: "\f080"; } + +.fa.fa-twitter-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gears:before { + content: "\f085"; } + +.fa.fa-thumbs-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-up:before { + content: "\f164"; } + +.fa.fa-thumbs-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-thumbs-o-down:before { + content: "\f165"; } + +.fa.fa-heart-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-heart-o:before { + content: "\f004"; } + +.fa.fa-sign-out:before { + content: "\f2f5"; } + +.fa.fa-linkedin-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin-square:before { + content: "\f08c"; } + +.fa.fa-thumb-tack:before { + content: "\f08d"; } + +.fa.fa-external-link:before { + content: "\f35d"; } + +.fa.fa-sign-in:before { + content: "\f2f6"; } + +.fa.fa-github-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lemon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lemon-o:before { + content: "\f094"; } + +.fa.fa-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-square-o:before { + content: "\f0c8"; } + +.fa.fa-bookmark-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bookmark-o:before { + content: "\f02e"; } + +.fa.fa-twitter { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook:before { + content: "\f39e"; } + +.fa.fa-facebook-f { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-f:before { + content: "\f39e"; } + +.fa.fa-github { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-feed:before { + content: "\f09e"; } + +.fa.fa-hdd-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hdd-o:before { + content: "\f0a0"; } + +.fa.fa-hand-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-right:before { + content: "\f0a4"; } + +.fa.fa-hand-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-left:before { + content: "\f0a5"; } + +.fa.fa-hand-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-up:before { + content: "\f0a6"; } + +.fa.fa-hand-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-o-down:before { + content: "\f0a7"; } + +.fa.fa-arrows-alt:before { + content: "\f31e"; } + +.fa.fa-group:before { + content: "\f0c0"; } + +.fa.fa-chain:before { + content: "\f0c1"; } + +.fa.fa-scissors:before { + content: "\f0c4"; } + +.fa.fa-files-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-files-o:before { + content: "\f0c5"; } + +.fa.fa-floppy-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-floppy-o:before { + content: "\f0c7"; } + +.fa.fa-navicon:before { + content: "\f0c9"; } + +.fa.fa-reorder:before { + content: "\f0c9"; } + +.fa.fa-pinterest { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pinterest-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus:before { + content: "\f0d5"; } + +.fa.fa-money { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-money:before { + content: "\f3d1"; } + +.fa.fa-unsorted:before { + content: "\f0dc"; } + +.fa.fa-sort-desc:before { + content: "\f0dd"; } + +.fa.fa-sort-asc:before { + content: "\f0de"; } + +.fa.fa-linkedin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linkedin:before { + content: "\f0e1"; } + +.fa.fa-rotate-left:before { + content: "\f0e2"; } + +.fa.fa-legal:before { + content: "\f0e3"; } + +.fa.fa-tachometer:before { + content: "\f3fd"; } + +.fa.fa-dashboard:before { + content: "\f3fd"; } + +.fa.fa-comment-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comment-o:before { + content: "\f075"; } + +.fa.fa-comments-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-comments-o:before { + content: "\f086"; } + +.fa.fa-flash:before { + content: "\f0e7"; } + +.fa.fa-clipboard { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paste:before { + content: "\f328"; } + +.fa.fa-lightbulb-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-lightbulb-o:before { + content: "\f0eb"; } + +.fa.fa-exchange:before { + content: "\f362"; } + +.fa.fa-cloud-download:before { + content: "\f381"; } + +.fa.fa-cloud-upload:before { + content: "\f382"; } + +.fa.fa-bell-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-o:before { + content: "\f0f3"; } + +.fa.fa-cutlery:before { + content: "\f2e7"; } + +.fa.fa-file-text-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-text-o:before { + content: "\f15c"; } + +.fa.fa-building-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-building-o:before { + content: "\f1ad"; } + +.fa.fa-hospital-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hospital-o:before { + content: "\f0f8"; } + +.fa.fa-tablet:before { + content: "\f3fa"; } + +.fa.fa-mobile:before { + content: "\f3cd"; } + +.fa.fa-mobile-phone:before { + content: "\f3cd"; } + +.fa.fa-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-o:before { + content: "\f111"; } + +.fa.fa-mail-reply:before { + content: "\f3e5"; } + +.fa.fa-github-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-folder-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-o:before { + content: "\f07b"; } + +.fa.fa-folder-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-folder-open-o:before { + content: "\f07c"; } + +.fa.fa-smile-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-smile-o:before { + content: "\f118"; } + +.fa.fa-frown-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-frown-o:before { + content: "\f119"; } + +.fa.fa-meh-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-meh-o:before { + content: "\f11a"; } + +.fa.fa-keyboard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-keyboard-o:before { + content: "\f11c"; } + +.fa.fa-flag-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-flag-o:before { + content: "\f024"; } + +.fa.fa-mail-reply-all:before { + content: "\f122"; } + +.fa.fa-star-half-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-o:before { + content: "\f089"; } + +.fa.fa-star-half-empty { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-empty:before { + content: "\f089"; } + +.fa.fa-star-half-full { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-star-half-full:before { + content: "\f089"; } + +.fa.fa-code-fork:before { + content: "\f126"; } + +.fa.fa-chain-broken:before { + content: "\f127"; } + +.fa.fa-shield:before { + content: "\f3ed"; } + +.fa.fa-calendar-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-o:before { + content: "\f133"; } + +.fa.fa-maxcdn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-html5 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-css3 { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ticket:before { + content: "\f3ff"; } + +.fa.fa-minus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-minus-square-o:before { + content: "\f146"; } + +.fa.fa-level-up:before { + content: "\f3bf"; } + +.fa.fa-level-down:before { + content: "\f3be"; } + +.fa.fa-pencil-square:before { + content: "\f14b"; } + +.fa.fa-external-link-square:before { + content: "\f360"; } + +.fa.fa-compass { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-down:before { + content: "\f150"; } + +.fa.fa-toggle-down { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-down:before { + content: "\f150"; } + +.fa.fa-caret-square-o-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-up:before { + content: "\f151"; } + +.fa.fa-toggle-up { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-up:before { + content: "\f151"; } + +.fa.fa-caret-square-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-right:before { + content: "\f152"; } + +.fa.fa-toggle-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-right:before { + content: "\f152"; } + +.fa.fa-eur:before { + content: "\f153"; } + +.fa.fa-euro:before { + content: "\f153"; } + +.fa.fa-gbp:before { + content: "\f154"; } + +.fa.fa-usd:before { + content: "\f155"; } + +.fa.fa-dollar:before { + content: "\f155"; } + +.fa.fa-inr:before { + content: "\f156"; } + +.fa.fa-rupee:before { + content: "\f156"; } + +.fa.fa-jpy:before { + content: "\f157"; } + +.fa.fa-cny:before { + content: "\f157"; } + +.fa.fa-rmb:before { + content: "\f157"; } + +.fa.fa-yen:before { + content: "\f157"; } + +.fa.fa-rub:before { + content: "\f158"; } + +.fa.fa-ruble:before { + content: "\f158"; } + +.fa.fa-rouble:before { + content: "\f158"; } + +.fa.fa-krw:before { + content: "\f159"; } + +.fa.fa-won:before { + content: "\f159"; } + +.fa.fa-btc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitcoin:before { + content: "\f15a"; } + +.fa.fa-file-text:before { + content: "\f15c"; } + +.fa.fa-sort-alpha-asc:before { + content: "\f15d"; } + +.fa.fa-sort-alpha-desc:before { + content: "\f881"; } + +.fa.fa-sort-amount-asc:before { + content: "\f160"; } + +.fa.fa-sort-amount-desc:before { + content: "\f884"; } + +.fa.fa-sort-numeric-asc:before { + content: "\f162"; } + +.fa.fa-sort-numeric-desc:before { + content: "\f886"; } + +.fa.fa-youtube-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-xing-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-youtube-play:before { + content: "\f167"; } + +.fa.fa-dropbox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-overflow { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-instagram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-flickr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-adn { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bitbucket-square:before { + content: "\f171"; } + +.fa.fa-tumblr { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tumblr-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-long-arrow-down:before { + content: "\f309"; } + +.fa.fa-long-arrow-up:before { + content: "\f30c"; } + +.fa.fa-long-arrow-left:before { + content: "\f30a"; } + +.fa.fa-long-arrow-right:before { + content: "\f30b"; } + +.fa.fa-apple { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-windows { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-android { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-linux { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dribbble { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skype { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-foursquare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-trello { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gratipay { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gittip:before { + content: "\f184"; } + +.fa.fa-sun-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sun-o:before { + content: "\f185"; } + +.fa.fa-moon-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-moon-o:before { + content: "\f186"; } + +.fa.fa-vk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-renren { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pagelines { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stack-exchange { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-right:before { + content: "\f35a"; } + +.fa.fa-arrow-circle-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-arrow-circle-o-left:before { + content: "\f359"; } + +.fa.fa-caret-square-o-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-caret-square-o-left:before { + content: "\f191"; } + +.fa.fa-toggle-left { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-toggle-left:before { + content: "\f191"; } + +.fa.fa-dot-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-dot-circle-o:before { + content: "\f192"; } + +.fa.fa-vimeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-try:before { + content: "\f195"; } + +.fa.fa-turkish-lira:before { + content: "\f195"; } + +.fa.fa-plus-square-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-plus-square-o:before { + content: "\f0fe"; } + +.fa.fa-slack { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wordpress { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-openid { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-institution:before { + content: "\f19c"; } + +.fa.fa-bank:before { + content: "\f19c"; } + +.fa.fa-mortar-board:before { + content: "\f19d"; } + +.fa.fa-yahoo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-stumbleupon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-delicious { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-digg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-pp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-drupal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-joomla { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spoon:before { + content: "\f2e5"; } + +.fa.fa-behance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-behance-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-steam-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-automobile:before { + content: "\f1b9"; } + +.fa.fa-cab:before { + content: "\f1ba"; } + +.fa.fa-envelope-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-o:before { + content: "\f0e0"; } + +.fa.fa-deviantart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-soundcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-file-pdf-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-pdf-o:before { + content: "\f1c1"; } + +.fa.fa-file-word-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-word-o:before { + content: "\f1c2"; } + +.fa.fa-file-excel-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-excel-o:before { + content: "\f1c3"; } + +.fa.fa-file-powerpoint-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-powerpoint-o:before { + content: "\f1c4"; } + +.fa.fa-file-image-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-image-o:before { + content: "\f1c5"; } + +.fa.fa-file-photo-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-photo-o:before { + content: "\f1c5"; } + +.fa.fa-file-picture-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-picture-o:before { + content: "\f1c5"; } + +.fa.fa-file-archive-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-archive-o:before { + content: "\f1c6"; } + +.fa.fa-file-zip-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-zip-o:before { + content: "\f1c6"; } + +.fa.fa-file-audio-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-audio-o:before { + content: "\f1c7"; } + +.fa.fa-file-sound-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-sound-o:before { + content: "\f1c7"; } + +.fa.fa-file-video-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-video-o:before { + content: "\f1c8"; } + +.fa.fa-file-movie-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-movie-o:before { + content: "\f1c8"; } + +.fa.fa-file-code-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-file-code-o:before { + content: "\f1c9"; } + +.fa.fa-vine { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-codepen { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-jsfiddle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-life-ring { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-bouy:before { + content: "\f1cd"; } + +.fa.fa-life-buoy { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-buoy:before { + content: "\f1cd"; } + +.fa.fa-life-saver { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-life-saver:before { + content: "\f1cd"; } + +.fa.fa-support { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-support:before { + content: "\f1cd"; } + +.fa.fa-circle-o-notch:before { + content: "\f1ce"; } + +.fa.fa-rebel { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ra:before { + content: "\f1d0"; } + +.fa.fa-resistance { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-resistance:before { + content: "\f1d0"; } + +.fa.fa-empire { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ge:before { + content: "\f1d1"; } + +.fa.fa-git-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-git { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hacker-news { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator-square:before { + content: "\f1d4"; } + +.fa.fa-yc-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc-square:before { + content: "\f1d4"; } + +.fa.fa-tencent-weibo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-qq { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-weixin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wechat:before { + content: "\f1d7"; } + +.fa.fa-send:before { + content: "\f1d8"; } + +.fa.fa-paper-plane-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-paper-plane-o:before { + content: "\f1d8"; } + +.fa.fa-send-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-send-o:before { + content: "\f1d8"; } + +.fa.fa-circle-thin { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-circle-thin:before { + content: "\f111"; } + +.fa.fa-header:before { + content: "\f1dc"; } + +.fa.fa-sliders:before { + content: "\f1de"; } + +.fa.fa-futbol-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-futbol-o:before { + content: "\f1e3"; } + +.fa.fa-soccer-ball-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-soccer-ball-o:before { + content: "\f1e3"; } + +.fa.fa-slideshare { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-twitch { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yelp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-newspaper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-newspaper-o:before { + content: "\f1ea"; } + +.fa.fa-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-wallet { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-visa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-mastercard { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-discover { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-amex { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-paypal { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-stripe { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bell-slash-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-bell-slash-o:before { + content: "\f1f6"; } + +.fa.fa-trash:before { + content: "\f2ed"; } + +.fa.fa-copyright { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-eyedropper:before { + content: "\f1fb"; } + +.fa.fa-area-chart:before { + content: "\f1fe"; } + +.fa.fa-pie-chart:before { + content: "\f200"; } + +.fa.fa-line-chart:before { + content: "\f201"; } + +.fa.fa-lastfm { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-lastfm-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ioxhost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-angellist { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-cc:before { + content: "\f20a"; } + +.fa.fa-ils:before { + content: "\f20b"; } + +.fa.fa-shekel:before { + content: "\f20b"; } + +.fa.fa-sheqel:before { + content: "\f20b"; } + +.fa.fa-meanpath { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-meanpath:before { + content: "\f2b4"; } + +.fa.fa-buysellads { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-connectdevelop { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-dashcube { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-forumbee { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-leanpub { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-sellsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-shirtsinbulk { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-simplybuilt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-skyatlas { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-diamond { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-diamond:before { + content: "\f3a5"; } + +.fa.fa-intersex:before { + content: "\f224"; } + +.fa.fa-facebook-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-facebook-official:before { + content: "\f09a"; } + +.fa.fa-pinterest-p { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-whatsapp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-hotel:before { + content: "\f236"; } + +.fa.fa-viacoin { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-medium { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-y-combinator { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yc:before { + content: "\f23b"; } + +.fa.fa-optin-monster { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opencart { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-expeditedssl { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-battery-4:before { + content: "\f240"; } + +.fa.fa-battery:before { + content: "\f240"; } + +.fa.fa-battery-3:before { + content: "\f241"; } + +.fa.fa-battery-2:before { + content: "\f242"; } + +.fa.fa-battery-1:before { + content: "\f243"; } + +.fa.fa-battery-0:before { + content: "\f244"; } + +.fa.fa-object-group { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-object-ungroup { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-sticky-note-o:before { + content: "\f249"; } + +.fa.fa-cc-jcb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-cc-diners-club { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-clone { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hourglass-o:before { + content: "\f254"; } + +.fa.fa-hourglass-1:before { + content: "\f251"; } + +.fa.fa-hourglass-2:before { + content: "\f252"; } + +.fa.fa-hourglass-3:before { + content: "\f253"; } + +.fa.fa-hand-rock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-rock-o:before { + content: "\f255"; } + +.fa.fa-hand-grab-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-grab-o:before { + content: "\f255"; } + +.fa.fa-hand-paper-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-paper-o:before { + content: "\f256"; } + +.fa.fa-hand-stop-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-stop-o:before { + content: "\f256"; } + +.fa.fa-hand-scissors-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-scissors-o:before { + content: "\f257"; } + +.fa.fa-hand-lizard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-lizard-o:before { + content: "\f258"; } + +.fa.fa-hand-spock-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-spock-o:before { + content: "\f259"; } + +.fa.fa-hand-pointer-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-pointer-o:before { + content: "\f25a"; } + +.fa.fa-hand-peace-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-hand-peace-o:before { + content: "\f25b"; } + +.fa.fa-registered { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-creative-commons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gg-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-tripadvisor { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-odnoklassniki-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-get-pocket { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wikipedia-w { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-safari { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-chrome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-firefox { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-opera { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-internet-explorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-television:before { + content: "\f26c"; } + +.fa.fa-contao { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-500px { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-amazon { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-calendar-plus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-plus-o:before { + content: "\f271"; } + +.fa.fa-calendar-minus-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-minus-o:before { + content: "\f272"; } + +.fa.fa-calendar-times-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-times-o:before { + content: "\f273"; } + +.fa.fa-calendar-check-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-calendar-check-o:before { + content: "\f274"; } + +.fa.fa-map-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-map-o:before { + content: "\f279"; } + +.fa.fa-commenting:before { + content: "\f4ad"; } + +.fa.fa-commenting-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-commenting-o:before { + content: "\f4ad"; } + +.fa.fa-houzz { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-vimeo:before { + content: "\f27d"; } + +.fa.fa-black-tie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fonticons { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-reddit-alien { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-edge { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-credit-card-alt:before { + content: "\f09d"; } + +.fa.fa-codiepie { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-modx { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fort-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-usb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-product-hunt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-mixcloud { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-scribd { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pause-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-pause-circle-o:before { + content: "\f28b"; } + +.fa.fa-stop-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-stop-circle-o:before { + content: "\f28d"; } + +.fa.fa-bluetooth { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-bluetooth-b { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-gitlab { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpbeginner { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpforms { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-envira { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wheelchair-alt:before { + content: "\f368"; } + +.fa.fa-question-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-question-circle-o:before { + content: "\f059"; } + +.fa.fa-volume-control-phone:before { + content: "\f2a0"; } + +.fa.fa-asl-interpreting:before { + content: "\f2a3"; } + +.fa.fa-deafness:before { + content: "\f2a4"; } + +.fa.fa-hard-of-hearing:before { + content: "\f2a4"; } + +.fa.fa-glide { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-glide-g { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-signing:before { + content: "\f2a7"; } + +.fa.fa-viadeo { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-viadeo-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-ghost { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-snapchat-square { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-pied-piper { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-first-order { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-yoast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-themeisle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-official:before { + content: "\f2b3"; } + +.fa.fa-google-plus-circle { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-google-plus-circle:before { + content: "\f2b3"; } + +.fa.fa-font-awesome { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-fa:before { + content: "\f2b4"; } + +.fa.fa-handshake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-handshake-o:before { + content: "\f2b5"; } + +.fa.fa-envelope-open-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-envelope-open-o:before { + content: "\f2b6"; } + +.fa.fa-linode { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-address-book-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-book-o:before { + content: "\f2b9"; } + +.fa.fa-vcard:before { + content: "\f2bb"; } + +.fa.fa-address-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-address-card-o:before { + content: "\f2bb"; } + +.fa.fa-vcard-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-vcard-o:before { + content: "\f2bb"; } + +.fa.fa-user-circle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-circle-o:before { + content: "\f2bd"; } + +.fa.fa-user-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-user-o:before { + content: "\f007"; } + +.fa.fa-id-badge { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license:before { + content: "\f2c2"; } + +.fa.fa-id-card-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-id-card-o:before { + content: "\f2c2"; } + +.fa.fa-drivers-license-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-drivers-license-o:before { + content: "\f2c2"; } + +.fa.fa-quora { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-free-code-camp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-telegram { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-thermometer-4:before { + content: "\f2c7"; } + +.fa.fa-thermometer:before { + content: "\f2c7"; } + +.fa.fa-thermometer-3:before { + content: "\f2c8"; } + +.fa.fa-thermometer-2:before { + content: "\f2c9"; } + +.fa.fa-thermometer-1:before { + content: "\f2ca"; } + +.fa.fa-thermometer-0:before { + content: "\f2cb"; } + +.fa.fa-bathtub:before { + content: "\f2cd"; } + +.fa.fa-s15:before { + content: "\f2cd"; } + +.fa.fa-window-maximize { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-restore { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle:before { + content: "\f410"; } + +.fa.fa-window-close-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-window-close-o:before { + content: "\f410"; } + +.fa.fa-times-rectangle-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-times-rectangle-o:before { + content: "\f410"; } + +.fa.fa-bandcamp { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-grav { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-etsy { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-imdb { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-ravelry { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-eercast:before { + content: "\f2da"; } + +.fa.fa-snowflake-o { + font-family: 'Font Awesome 5 Free'; + font-weight: 400; } + +.fa.fa-snowflake-o:before { + content: "\f2dc"; } + +.fa.fa-superpowers { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-wpexplorer { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } + +.fa.fa-spotify { + font-family: 'Font Awesome 5 Brands'; + font-weight: 400; } diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot new file mode 100644 index 000000000..f6b7c7dc1 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg new file mode 100644 index 000000000..cf4d7ceb1 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg @@ -0,0 +1,3496 @@ + + + + + +Created by FontForge 20190801 at Mon Sep 23 12:53:49 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf new file mode 100644 index 000000000..82e255ac5 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff new file mode 100644 index 000000000..b0021db2e Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 new file mode 100644 index 000000000..b53cbbf56 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot new file mode 100644 index 000000000..e1bcc447d Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg new file mode 100644 index 000000000..f32e41e30 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg @@ -0,0 +1,803 @@ + + + + + +Created by FontForge 20190801 at Mon Sep 23 12:53:49 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf new file mode 100644 index 000000000..5267d851b Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff new file mode 100644 index 000000000..f513c1c3c Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 new file mode 100644 index 000000000..2e72e872c Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot new file mode 100644 index 000000000..c867e7ebb Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg new file mode 100644 index 000000000..401b7f7b3 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg @@ -0,0 +1,4667 @@ + + + + + +Created by FontForge 20190801 at Mon Sep 23 12:53:50 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf new file mode 100644 index 000000000..16d4469b0 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff new file mode 100644 index 000000000..608f9e1b0 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 new file mode 100644 index 000000000..5a60d47c1 Binary files /dev/null and b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 differ diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.css b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.css new file mode 100644 index 000000000..ddf9cae5b --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.css @@ -0,0 +1,56 @@ +@keyframes spin { + 0% { + transform: translateZ(0) rotate(0deg); + } + + 100% { + transform: translateZ(0) rotate(360deg); + } +} + +.abp-block-area { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 102; + background-color: #fff; + opacity: .8; + transition: opacity .25s; +} + + .abp-block-area.abp-block-area-disappearing { + opacity: 0; + } + + .abp-block-area.abp-block-area-busy:after { + content: attr(data-text); + display: block; + max-width: 125px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 20px; + font-family: sans-serif; + color: #343a40; + text-align: center; + text-transform: uppercase; + } + + .abp-block-area.abp-block-area-busy:before { + content: ""; + display: block; + width: 150px; + height: 150px; + border-radius: 50%; + border-width: 2px; + border-style: solid; + border-color: transparent #228ae6 #228ae6 #228ae6; + position: absolute; + top: calc(50% - 75px); + left: calc(50% - 75px); + will-change: transform; + animation: spin .75s infinite ease-in-out; + } diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.js new file mode 100644 index 000000000..730db8bc9 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/core/abp.js @@ -0,0 +1,636 @@ +var abp = abp || {}; +(function () { + + /* Application paths *****************************************/ + + //Current application root path (including virtual directory if exists). + abp.appPath = abp.appPath || '/'; + + abp.pageLoadTime = new Date(); + + //Converts given path to absolute path using abp.appPath variable. + abp.toAbsAppPath = function (path) { + if (path.indexOf('/') == 0) { + path = path.substring(1); + } + + return abp.appPath + path; + }; + + /* LOGGING ***************************************************/ + //Implements Logging API that provides secure & controlled usage of console.log + + abp.log = abp.log || {}; + + abp.log.levels = { + DEBUG: 1, + INFO: 2, + WARN: 3, + ERROR: 4, + FATAL: 5 + }; + + abp.log.level = abp.log.levels.DEBUG; + + abp.log.log = function (logObject, logLevel) { + if (!window.console || !window.console.log) { + return; + } + + if (logLevel != undefined && logLevel < abp.log.level) { + return; + } + + console.log(logObject); + }; + + abp.log.debug = function (logObject) { + abp.log.log("DEBUG: ", abp.log.levels.DEBUG); + abp.log.log(logObject, abp.log.levels.DEBUG); + }; + + abp.log.info = function (logObject) { + abp.log.log("INFO: ", abp.log.levels.INFO); + abp.log.log(logObject, abp.log.levels.INFO); + }; + + abp.log.warn = function (logObject) { + abp.log.log("WARN: ", abp.log.levels.WARN); + abp.log.log(logObject, abp.log.levels.WARN); + }; + + abp.log.error = function (logObject) { + abp.log.log("ERROR: ", abp.log.levels.ERROR); + abp.log.log(logObject, abp.log.levels.ERROR); + }; + + abp.log.fatal = function (logObject) { + abp.log.log("FATAL: ", abp.log.levels.FATAL); + abp.log.log(logObject, abp.log.levels.FATAL); + }; + + /* LOCALIZATION ***********************************************/ + + abp.localization = abp.localization || {}; + + abp.localization.values = {}; + + abp.localization.localize = function (key, sourceName) { + sourceName = sourceName || abp.localization.defaultResourceName; + + var source = abp.localization.values[sourceName]; + + if (!source) { + abp.log.warn('Could not find localization source: ' + sourceName); + return key; + } + + var value = source[key]; + if (value == undefined) { + return key; + } + + var copiedArguments = Array.prototype.slice.call(arguments, 0); + copiedArguments.splice(1, 1); + copiedArguments[0] = value; + + return abp.utils.formatString.apply(this, copiedArguments); + }; + + abp.localization.getResource = function (name) { + return function () { + var copiedArguments = Array.prototype.slice.call(arguments, 0); + copiedArguments.splice(1, 0, name); + return abp.localization.localize.apply(this, copiedArguments); + }; + }; + + abp.localization.defaultResourceName = undefined; + + /* AUTHORIZATION **********************************************/ + + abp.auth = abp.auth || {}; + + abp.auth.policies = abp.auth.policies || {}; + + abp.auth.grantedPolicies = abp.auth.grantedPolicies || {}; + + abp.auth.isGranted = function (policyName) { + return abp.auth.policies[policyName] != undefined && abp.auth.grantedPolicies[policyName] != undefined; + }; + + abp.auth.isAnyGranted = function () { + if (!arguments || arguments.length <= 0) { + return true; + } + + for (var i = 0; i < arguments.length; i++) { + if (abp.auth.isGranted(arguments[i])) { + return true; + } + } + + return false; + }; + + abp.auth.areAllGranted = function () { + if (!arguments || arguments.length <= 0) { + return true; + } + + for (var i = 0; i < arguments.length; i++) { + if (!abp.auth.isGranted(arguments[i])) { + return false; + } + } + + return true; + }; + + abp.auth.tokenCookieName = 'Abp.AuthToken'; + + abp.auth.setToken = function (authToken, expireDate) { + abp.utils.setCookieValue(abp.auth.tokenCookieName, authToken, expireDate, abp.appPath, abp.domain); + }; + + abp.auth.getToken = function () { + return abp.utils.getCookieValue(abp.auth.tokenCookieName); + } + + abp.auth.clearToken = function () { + abp.auth.setToken(); + } + + /* SETTINGS *************************************************/ + + abp.setting = abp.setting || {}; + + abp.setting.values = abp.setting.values || {}; + + abp.setting.get = function (name) { + return abp.setting.values[name]; + }; + + abp.setting.getBoolean = function (name) { + var value = abp.setting.get(name); + return value == 'true' || value == 'True'; + }; + + abp.setting.getInt = function (name) { + return parseInt(abp.setting.values[name]); + }; + + /* NOTIFICATION *********************************************/ + //Defines Notification API, not implements it + + abp.notify = abp.notify || {}; + + abp.notify.success = function (message, title, options) { + abp.log.warn('abp.notify.success is not implemented!'); + }; + + abp.notify.info = function (message, title, options) { + abp.log.warn('abp.notify.info is not implemented!'); + }; + + abp.notify.warn = function (message, title, options) { + abp.log.warn('abp.notify.warn is not implemented!'); + }; + + abp.notify.error = function (message, title, options) { + abp.log.warn('abp.notify.error is not implemented!'); + }; + + /* MESSAGE **************************************************/ + //Defines Message API, not implements it + + abp.message = abp.message || {}; + + abp.message._showMessage = function (message, title) { + alert((title || '') + ' ' + message); + }; + + abp.message.info = function (message, title) { + abp.log.warn('abp.message.info is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.success = function (message, title) { + abp.log.warn('abp.message.success is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.warn = function (message, title) { + abp.log.warn('abp.message.warn is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.error = function (message, title) { + abp.log.warn('abp.message.error is not implemented!'); + return abp.message._showMessage(message, title); + }; + + abp.message.confirm = function (message, titleOrCallback, callback) { + abp.log.warn('abp.message.confirm is not properly implemented!'); + + if (titleOrCallback && !(typeof titleOrCallback == 'string')) { + callback = titleOrCallback; + } + + var result = confirm(message); + callback && callback(result); + }; + + /* UI *******************************************************/ + + abp.ui = abp.ui || {}; + + /* UI BLOCK */ + //Defines UI Block API and implements basically + + var $abpBlockArea = document.createElement('div'); + $abpBlockArea.classList.add('abp-block-area'); + + /* opts: { //Can be an object with options or a string for query a selector + * elm: a query selector (optional - default: document.body) + * busy: boolean (optional - default: false) + * promise: A promise with always or finally handler (optional - auto unblocks the ui if provided) + * } + */ + abp.ui.block = function (opts) { + if (!opts) { + opts = {}; + } else if (typeof opts == 'string') { + opts = { + elm: opts + }; + } + + var $elm = document.querySelector(opts.elm) || document.body; + + if (opts.busy) { + $abpBlockArea.classList.add('abp-block-area-busy'); + } else { + $abpBlockArea.classList.remove('abp-block-area-busy'); + } + + if (document.querySelector(opts.elm)) { + $abpBlockArea.style.position = 'absolute'; + } else { + $abpBlockArea.style.position = 'fixed'; + } + + $elm.appendChild($abpBlockArea); + + if (opts.promise) { + if (opts.promise.always) { //jQuery.Deferred style + opts.promise.always(function () { + abp.ui.unblock({ + $elm: opts.elm + }); + }); + } else if (opts.promise['finally']) { //Q style + opts.promise['finally'](function () { + abp.ui.unblock({ + $elm: opts.elm + }); + }); + } + } + }; + + /* opts: { + * + * } + */ + abp.ui.unblock = function (opts) { + var element = document.querySelector('.abp-block-area'); + if (element) { + element.classList.add('abp-block-area-disappearing'); + setTimeout(function () { + if (element) { + element.classList.remove('abp-block-area-disappearing'); + element.parentElement.removeChild(element); + } + }, 250); + } + }; + + /* UI BUSY */ + //Defines UI Busy API, not implements it + + abp.ui.setBusy = function (opts) { + if (!opts) { + opts = { + busy: true + }; + } else if (typeof opts == 'string') { + opts = { + elm: opts, + busy: true + }; + } + + abp.ui.block(opts); + }; + + abp.ui.clearBusy = function (opts) { + abp.ui.unblock(opts); + }; + + /* SIMPLE EVENT BUS *****************************************/ + + abp.event = (function () { + + var _callbacks = {}; + + var on = function (eventName, callback) { + if (!_callbacks[eventName]) { + _callbacks[eventName] = []; + } + + _callbacks[eventName].push(callback); + }; + + var off = function (eventName, callback) { + var callbacks = _callbacks[eventName]; + if (!callbacks) { + return; + } + + var index = -1; + for (var i = 0; i < callbacks.length; i++) { + if (callbacks[i] === callback) { + index = i; + break; + } + } + + if (index < 0) { + return; + } + + _callbacks[eventName].splice(index, 1); + }; + + var trigger = function (eventName) { + var callbacks = _callbacks[eventName]; + if (!callbacks || !callbacks.length) { + return; + } + + var args = Array.prototype.slice.call(arguments, 1); + for (var i = 0; i < callbacks.length; i++) { + callbacks[i].apply(this, args); + } + }; + + // Public interface /////////////////////////////////////////////////// + + return { + on: on, + off: off, + trigger: trigger + }; + })(); + + + /* UTILS ***************************************************/ + + abp.utils = abp.utils || {}; + + /* Creates a name namespace. + * Example: + * var taskService = abp.utils.createNamespace(abp, 'services.task'); + * taskService will be equal to abp.services.task + * first argument (root) must be defined first + ************************************************************/ + abp.utils.createNamespace = function (root, ns) { + var parts = ns.split('.'); + for (var i = 0; i < parts.length; i++) { + if (typeof root[parts[i]] == 'undefined') { + root[parts[i]] = {}; + } + + root = root[parts[i]]; + } + + return root; + }; + + /* Find and replaces a string (search) to another string (replacement) in + * given string (str). + * Example: + * abp.utils.replaceAll('This is a test string', 'is', 'X') = 'ThX X a test string' + ************************************************************/ + abp.utils.replaceAll = function (str, search, replacement) { + var fix = search.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); + return str.replace(new RegExp(fix, 'g'), replacement); + }; + + /* Formats a string just like string.format in C#. + * Example: + * abp.utils.formatString('Hello {0}','Tuana') = 'Hello Tuana' + ************************************************************/ + abp.utils.formatString = function () { + if (arguments.length < 1) { + return null; + } + + var str = arguments[0]; + + for (var i = 1; i < arguments.length; i++) { + var placeHolder = '{' + (i - 1) + '}'; + str = abp.utils.replaceAll(str, placeHolder, arguments[i]); + } + + return str; + }; + + abp.utils.toPascalCase = function (str) { + if (!str || !str.length) { + return str; + } + + if (str.length === 1) { + return str.charAt(0).toUpperCase(); + } + + return str.charAt(0).toUpperCase() + str.substr(1); + } + + abp.utils.toCamelCase = function (str) { + if (!str || !str.length) { + return str; + } + + if (str.length === 1) { + return str.charAt(0).toLowerCase(); + } + + return str.charAt(0).toLowerCase() + str.substr(1); + } + + abp.utils.truncateString = function (str, maxLength) { + if (!str || !str.length || str.length <= maxLength) { + return str; + } + + return str.substr(0, maxLength); + }; + + abp.utils.truncateStringWithPostfix = function (str, maxLength, postfix) { + postfix = postfix || '...'; + + if (!str || !str.length || str.length <= maxLength) { + return str; + } + + if (maxLength <= postfix.length) { + return postfix.substr(0, maxLength); + } + + return str.substr(0, maxLength - postfix.length) + postfix; + }; + + abp.utils.isFunction = function (obj) { + return !!(obj && obj.constructor && obj.call && obj.apply); + }; + + /** + * parameterInfos should be an array of { name, value } objects + * where name is query string parameter name and value is it's value. + * includeQuestionMark is true by default. + */ + abp.utils.buildQueryString = function (parameterInfos, includeQuestionMark) { + if (includeQuestionMark === undefined) { + includeQuestionMark = true; + } + + var qs = ''; + + function addSeperator() { + if (!qs.length) { + if (includeQuestionMark) { + qs = qs + '?'; + } + } else { + qs = qs + '&'; + } + } + + for (var i = 0; i < parameterInfos.length; ++i) { + var parameterInfo = parameterInfos[i]; + if (parameterInfo.value === undefined) { + continue; + } + + if (parameterInfo.value === null) { + parameterInfo.value = ''; + } + + addSeperator(); + + if (parameterInfo.value.toJSON && typeof parameterInfo.value.toJSON === "function") { + qs = qs + parameterInfo.name + '=' + encodeURIComponent(parameterInfo.value.toJSON()); + } else if (Array.isArray(parameterInfo.value) && parameterInfo.value.length) { + for (var j = 0; j < parameterInfo.value.length; j++) { + if (j > 0) { + addSeperator(); + } + + qs = qs + parameterInfo.name + '[' + j + ']=' + encodeURIComponent(parameterInfo.value[j]); + } + } else { + qs = qs + parameterInfo.name + '=' + encodeURIComponent(parameterInfo.value); + } + } + + return qs; + } + + /** + * Sets a cookie value for given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @param {string} value + * @param {Date} expireDate (optional). If not specified the cookie will expire at the end of session. + * @param {string} path (optional) + */ + abp.utils.setCookieValue = function (key, value, expireDate, path) { + var cookieValue = encodeURIComponent(key) + '='; + + if (value) { + cookieValue = cookieValue + encodeURIComponent(value); + } + + if (expireDate) { + cookieValue = cookieValue + "; expires=" + expireDate.toUTCString(); + } + + if (path) { + cookieValue = cookieValue + "; path=" + path; + } + + document.cookie = cookieValue; + }; + + /** + * Gets a cookie with given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @returns {string} Cookie value or null + */ + abp.utils.getCookieValue = function (key) { + var equalities = document.cookie.split('; '); + for (var i = 0; i < equalities.length; i++) { + if (!equalities[i]) { + continue; + } + + var splitted = equalities[i].split('='); + if (splitted.length != 2) { + continue; + } + + if (decodeURIComponent(splitted[0]) === key) { + return decodeURIComponent(splitted[1] || ''); + } + } + + return null; + }; + + /** + * Deletes cookie for given key. + * This is a simple implementation created to be used by ABP. + * Please use a complete cookie library if you need. + * @param {string} key + * @param {string} path (optional) + */ + abp.utils.deleteCookie = function (key, path) { + var cookieValue = encodeURIComponent(key) + '='; + + cookieValue = cookieValue + "; expires=" + (new Date(new Date().getTime() - 86400000)).toUTCString(); + + if (path) { + cookieValue = cookieValue + "; path=" + path; + } + + document.cookie = cookieValue; + } + + /* SECURITY ***************************************/ + abp.security = abp.security || {}; + abp.security.antiForgery = abp.security.antiForgery || {}; + + abp.security.antiForgery.tokenCookieName = 'XSRF-TOKEN'; + abp.security.antiForgery.tokenHeaderName = 'X-XSRF-TOKEN'; + + abp.security.antiForgery.getToken = function () { + return abp.utils.getCookieValue(abp.security.antiForgery.tokenCookieName); + }; + +})(); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/jquery/abp.jquery.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/jquery/abp.jquery.js new file mode 100644 index 000000000..e6aff047f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/jquery/abp.jquery.js @@ -0,0 +1,393 @@ +var abp = abp || {}; +(function($) { + + if (!$) { + throw "abp/jquery library requires the jquery library included to the page!"; + } + + // ABP CORE OVERRIDES ///////////////////////////////////////////////////// + + abp.message._showMessage = function (message, title) { + alert((title || '') + ' ' + message); + + return $.Deferred(function ($dfd) { + $dfd.resolve(); + }); + }; + + abp.message.confirm = function (message, titleOrCallback, callback) { + if (titleOrCallback && !(typeof titleOrCallback == 'string')) { + callback = titleOrCallback; + } + + var result = confirm(message); + callback && callback(result); + + return $.Deferred(function ($dfd) { + $dfd.resolve(result); + }); + }; + + abp.utils.isFunction = function (obj) { + return $.isFunction(obj); + }; + + // JQUERY EXTENSIONS ////////////////////////////////////////////////////// + + $.fn.findWithSelf = function (selector) { + return this.filter(selector).add(this.find(selector)); + }; + + // DOM //////////////////////////////////////////////////////////////////// + + abp.dom = abp.dom || {}; + + abp.dom.onNodeAdded = function (callback) { + abp.event.on('abp.dom.nodeAdded', callback); + }; + + abp.dom.onNodeRemoved = function (callback) { + abp.event.on('abp.dom.nodeRemoved', callback); + }; + + var mutationObserverCallback = function (mutationsList) { + for (var i = 0; i < mutationsList.length; i++) { + var mutation = mutationsList[i]; + if (mutation.type === 'childList') { + if (mutation.addedNodes && mutation.removedNodes.length) { + for (var k = 0; k < mutation.removedNodes.length; k++) { + abp.event.trigger( + 'abp.dom.nodeRemoved', + { + $el: $(mutation.removedNodes[k]) + } + ); + } + } + + if (mutation.addedNodes && mutation.addedNodes.length) { + for (var j = 0; j < mutation.addedNodes.length; j++) { + abp.event.trigger( + 'abp.dom.nodeAdded', + { + $el: $(mutation.addedNodes[j]) + } + ); + } + } + } + } + }; + + new MutationObserver(mutationObserverCallback).observe( + $('body')[0], + { + subtree: true, + childList: true + } + ); + + // AJAX /////////////////////////////////////////////////////////////////// + + abp.ajax = function (userOptions) { + userOptions = userOptions || {}; + + var options = $.extend(true, {}, abp.ajax.defaultOpts, userOptions); + + options.success = undefined; + options.error = undefined; + + return $.Deferred(function ($dfd) { + $.ajax(options) + .done(function (data, textStatus, jqXHR) { + $dfd.resolve(data); + userOptions.success && userOptions.success(data); + }).fail(function (jqXHR) { + if (jqXHR.getResponseHeader('_AbpErrorFormat') === 'true') { + abp.ajax.handleAbpErrorResponse(jqXHR, userOptions, $dfd); + } else { + abp.ajax.handleNonAbpErrorResponse(jqXHR, userOptions, $dfd); + } + }); + }); + }; + + $.extend(abp.ajax, { + defaultOpts: { + dataType: 'json', + type: 'POST', + contentType: 'application/json', + headers: { + 'X-Requested-With': 'XMLHttpRequest' + } + }, + + defaultError: { + message: 'An error has occurred!', + details: 'Error detail not sent by server.' + }, + + defaultError401: { + message: 'You are not authenticated!', + details: 'You should be authenticated (sign in) in order to perform this operation.' + }, + + defaultError403: { + message: 'You are not authorized!', + details: 'You are not allowed to perform this operation.' + }, + + defaultError404: { + message: 'Resource not found!', + details: 'The resource requested could not found on the server.' + }, + + logError: function (error) { + abp.log.error(error); + }, + + showError: function (error) { + if (error.details) { + return abp.message.error(error.details, error.message); + } else { + return abp.message.error(error.message || abp.ajax.defaultError.message); + } + }, + + handleTargetUrl: function (targetUrl) { + if (!targetUrl) { + location.href = abp.appPath; + } else { + location.href = targetUrl; + } + }, + + handleErrorStatusCode: function (status) { + switch (status) { + case 401: + abp.ajax.handleUnAuthorizedRequest( + abp.ajax.showError(abp.ajax.defaultError401), + abp.appPath + ); + break; + case 403: + abp.ajax.showError(abp.ajax.defaultError403); + break; + case 404: + abp.ajax.showError(abp.ajax.defaultError404); + break; + default: + abp.ajax.showError(abp.ajax.defaultError); + break; + } + }, + + handleNonAbpErrorResponse: function (jqXHR, userOptions, $dfd) { + if (userOptions.abpHandleError !== false) { + abp.ajax.handleErrorStatusCode(jqXHR.status); + } + + $dfd.reject.apply(this, arguments); + userOptions.error && userOptions.error.apply(this, arguments); + }, + + handleAbpErrorResponse: function (jqXHR, userOptions, $dfd) { + var messagePromise = null; + + if (userOptions.abpHandleError !== false) { + messagePromise = abp.ajax.showError(jqXHR.responseJSON.error); + } + + abp.ajax.logError(jqXHR.responseJSON.error); + + $dfd && $dfd.reject(jqXHR.responseJSON.error, jqXHR); + userOptions.error && userOptions.error(jqXHR.responseJSON.error, jqXHR); + + if (jqXHR.status === 401 && userOptions.abpHandleError !== false) { + abp.ajax.handleUnAuthorizedRequest(messagePromise); + } + }, + + handleUnAuthorizedRequest: function (messagePromise, targetUrl) { + if (messagePromise) { + messagePromise.done(function () { + abp.ajax.handleTargetUrl(targetUrl); + }); + } else { + abp.ajax.handleTargetUrl(targetUrl); + } + }, + + blockUI: function (options) { + if (options.blockUI) { + if (options.blockUI === true) { //block whole page + abp.ui.setBusy(); + } else { //block an element + abp.ui.setBusy(options.blockUI); + } + } + }, + + unblockUI: function (options) { + if (options.blockUI) { + if (options.blockUI === true) { //unblock whole page + abp.ui.clearBusy(); + } else { //unblock an element + abp.ui.clearBusy(options.blockUI); + } + } + }, + + ajaxSendHandler: function (event, request, settings) { + var token = abp.security.antiForgery.getToken(); + if (!token) { + return; + } + + if (!settings.headers || settings.headers[abp.security.antiForgery.tokenHeaderName] === undefined) { + request.setRequestHeader(abp.security.antiForgery.tokenHeaderName, token); + } + } + }); + + $(document).ajaxSend(function (event, request, settings) { + return abp.ajax.ajaxSendHandler(event, request, settings); + }); + + abp.event.on('abp.configurationInitialized', function () { + var l = abp.localization.getResource('AbpUi'); + + abp.ajax.defaultError.message = l('DefaultErrorMessage'); + abp.ajax.defaultError.details = l('DefaultErrorMessageDetail'); + abp.ajax.defaultError401.message = l('DefaultErrorMessage401'); + abp.ajax.defaultError401.details = l('DefaultErrorMessage401Detail'); + abp.ajax.defaultError403.message = l('DefaultErrorMessage403'); + abp.ajax.defaultError403.details = l('DefaultErrorMessage403Detail'); + abp.ajax.defaultError404.message = l('DefaultErrorMessage404'); + abp.ajax.defaultError404.details = l('DefaultErrorMessage404Detail'); + }); + + // RESOURCE LOADER //////////////////////////////////////////////////////// + + /* UrlStates enum */ + var UrlStates = { + LOADING: 'LOADING', + LOADED: 'LOADED', + FAILED: 'FAILED' + }; + + /* UrlInfo class */ + function UrlInfo(url) { + this.url = url; + this.state = UrlStates.LOADING; + this.loadCallbacks = []; + this.failCallbacks = []; + } + + UrlInfo.prototype.succeed = function () { + this.state = UrlStates.LOADED; + for (var i = 0; i < this.loadCallbacks.length; i++) { + this.loadCallbacks[i](); + } + }; + + UrlInfo.prototype.failed = function () { + this.state = UrlStates.FAILED; + for (var i = 0; i < this.failCallbacks.length; i++) { + this.failCallbacks[i](); + } + }; + + UrlInfo.prototype.handleCallbacks = function (loadCallback, failCallback) { + switch (this.state) { + case UrlStates.LOADED: + loadCallback && loadCallback(); + break; + case UrlStates.FAILED: + failCallback && failCallback(); + break; + case UrlStates.LOADING: + this.addCallbacks(loadCallback, failCallback); + break; + } + }; + + UrlInfo.prototype.addCallbacks = function (loadCallback, failCallback) { + loadCallback && this.loadCallbacks.push(loadCallback); + failCallback && this.failCallbacks.push(failCallback); + }; + + /* ResourceLoader API */ + + abp.ResourceLoader = (function () { + + var _urlInfos = {}; + + function getCacheKey(url) { + return url; + } + + function appendTimeToUrl(url) { + + if (url.indexOf('?') < 0) { + url += '?'; + } else { + url += '&'; + } + + url += '_=' + new Date().getTime(); + + return url; + } + + var _loadFromUrl = function (url, loadCallback, failCallback, serverLoader) { + + var cacheKey = getCacheKey(url); + + var urlInfo = _urlInfos[cacheKey]; + + if (urlInfo) { + urlInfo.handleCallbacks(loadCallback, failCallback); + return; + } + + _urlInfos[cacheKey] = urlInfo = new UrlInfo(url); + urlInfo.addCallbacks(loadCallback, failCallback); + + serverLoader(urlInfo); + }; + + var _loadScript = function (url, loadCallback, failCallback) { + _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { + $.get({ + url: url, + dataType: 'text' + }) + .done(function (script) { + $.globalEval(script); + urlInfo.succeed(); + }) + .fail(function () { + urlInfo.failed(); + }); + }); + }; + + var _loadStyle = function (url) { + _loadFromUrl(url, undefined, undefined, function (urlInfo) { + + $('', { + rel: 'stylesheet', + type: 'text/css', + href: appendTimeToUrl(url) + }).appendTo('head'); + }); + }; + + return { + loadScript: _loadScript, + loadStyle: _loadStyle + } + })(); + +})(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js new file mode 100644 index 000000000..dbf03b6f1 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js @@ -0,0 +1,600 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('just-compare')) : + typeof define === 'function' && define.amd ? define('@abp/utils', ['exports', 'just-compare'], factory) : + (global = global || self, factory((global.abp = global.abp || {}, global.abp.utils = global.abp.utils || {}, global.abp.utils.common = {}), global.compare)); +}(this, (function (exports, compare) { 'use strict'; + + compare = compare && Object.prototype.hasOwnProperty.call(compare, 'default') ? compare['default'] : compare; + + /*! ***************************************************************************** + Copyright (c) Microsoft Corporation. All rights reserved. + Licensed under the Apache License, Version 2.0 (the "License"); you may not use + this file except in compliance with the License. You may obtain a copy of the + License at http://www.apache.org/licenses/LICENSE-2.0 + + THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED + WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, + MERCHANTABLITY OR NON-INFRINGEMENT. + + See the Apache Version 2.0 License for specific language governing permissions + and limitations under the License. + ***************************************************************************** */ + /* global Reflect, Promise */ + + var extendStatics = function(d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + + function __extends(d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + } + + var __assign = function() { + __assign = Object.assign || function __assign(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; + + function __rest(s, e) { + var t = {}; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) + t[p] = s[p]; + if (s != null && typeof Object.getOwnPropertySymbols === "function") + for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { + if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) + t[p[i]] = s[p[i]]; + } + return t; + } + + function __decorate(decorators, target, key, desc) { + var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; + if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); + else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; + return c > 3 && r && Object.defineProperty(target, key, r), r; + } + + function __param(paramIndex, decorator) { + return function (target, key) { decorator(target, key, paramIndex); } + } + + function __metadata(metadataKey, metadataValue) { + if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); + } + + function __awaiter(thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); + } + + function __generator(thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } + } + + function __exportStar(m, exports) { + for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; + } + + function __values(o) { + var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; + if (m) return m.call(o); + if (o && typeof o.length === "number") return { + next: function () { + if (o && i >= o.length) o = void 0; + return { value: o && o[i++], done: !o }; + } + }; + throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + } + + function __read(o, n) { + var m = typeof Symbol === "function" && o[Symbol.iterator]; + if (!m) return o; + var i = m.call(o), r, ar = [], e; + try { + while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); + } + catch (error) { e = { error: error }; } + finally { + try { + if (r && !r.done && (m = i["return"])) m.call(i); + } + finally { if (e) throw e.error; } + } + return ar; + } + + function __spread() { + for (var ar = [], i = 0; i < arguments.length; i++) + ar = ar.concat(__read(arguments[i])); + return ar; + } + + function __spreadArrays() { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; + }; + + function __await(v) { + return this instanceof __await ? (this.v = v, this) : new __await(v); + } + + function __asyncGenerator(thisArg, _arguments, generator) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var g = generator.apply(thisArg, _arguments || []), i, q = []; + return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; + function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } + function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } + function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } + function fulfill(value) { resume("next", value); } + function reject(value) { resume("throw", value); } + function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } + } + + function __asyncDelegator(o) { + var i, p; + return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; + function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } + } + + function __asyncValues(o) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var m = o[Symbol.asyncIterator], i; + return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); + function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } + function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } + } + + function __makeTemplateObject(cooked, raw) { + if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } + return cooked; + }; + + function __importStar(mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result.default = mod; + return result; + } + + function __importDefault(mod) { + return (mod && mod.__esModule) ? mod : { default: mod }; + } + + function __classPrivateFieldGet(receiver, privateMap) { + if (!privateMap.has(receiver)) { + throw new TypeError("attempted to get private field on non-instance"); + } + return privateMap.get(receiver); + } + + function __classPrivateFieldSet(receiver, privateMap, value) { + if (!privateMap.has(receiver)) { + throw new TypeError("attempted to set private field on non-instance"); + } + privateMap.set(receiver, value); + return value; + } + + /* tslint:disable:no-non-null-assertion */ + var ListNode = /** @class */ (function () { + function ListNode(value) { + this.value = value; + } + return ListNode; + }()); + var LinkedList = /** @class */ (function () { + function LinkedList() { + this.size = 0; + } + Object.defineProperty(LinkedList.prototype, "head", { + get: function () { + return this.first; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(LinkedList.prototype, "tail", { + get: function () { + return this.last; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(LinkedList.prototype, "length", { + get: function () { + return this.size; + }, + enumerable: true, + configurable: true + }); + LinkedList.prototype.attach = function (value, previousNode, nextNode) { + if (!previousNode) + return this.addHead(value); + if (!nextNode) + return this.addTail(value); + var node = new ListNode(value); + node.previous = previousNode; + previousNode.next = node; + node.next = nextNode; + nextNode.previous = node; + this.size++; + return node; + }; + LinkedList.prototype.attachMany = function (values, previousNode, nextNode) { + if (!values.length) + return []; + if (!previousNode) + return this.addManyHead(values); + if (!nextNode) + return this.addManyTail(values); + var list = new LinkedList(); + list.addManyTail(values); + list.first.previous = previousNode; + previousNode.next = list.first; + list.last.next = nextNode; + nextNode.previous = list.last; + this.size += values.length; + return list.toNodeArray(); + }; + LinkedList.prototype.detach = function (node) { + if (!node.previous) + return this.dropHead(); + if (!node.next) + return this.dropTail(); + node.previous.next = node.next; + node.next.previous = node.previous; + this.size--; + return node; + }; + LinkedList.prototype.add = function (value) { + var _this = this; + return { + after: function () { + var _a; + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return (_a = _this.addAfter).call.apply(_a, __spread([_this, value], params)); + }, + before: function () { + var _a; + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return (_a = _this.addBefore).call.apply(_a, __spread([_this, value], params)); + }, + byIndex: function (position) { return _this.addByIndex(value, position); }, + head: function () { return _this.addHead(value); }, + tail: function () { return _this.addTail(value); }, + }; + }; + LinkedList.prototype.addMany = function (values) { + var _this = this; + return { + after: function () { + var _a; + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return (_a = _this.addManyAfter).call.apply(_a, __spread([_this, values], params)); + }, + before: function () { + var _a; + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return (_a = _this.addManyBefore).call.apply(_a, __spread([_this, values], params)); + }, + byIndex: function (position) { return _this.addManyByIndex(values, position); }, + head: function () { return _this.addManyHead(values); }, + tail: function () { return _this.addManyTail(values); }, + }; + }; + LinkedList.prototype.addAfter = function (value, previousValue, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var previous = this.find(function (node) { return compareFn(node.value, previousValue); }); + return previous ? this.attach(value, previous, previous.next) : this.addTail(value); + }; + LinkedList.prototype.addBefore = function (value, nextValue, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var next = this.find(function (node) { return compareFn(node.value, nextValue); }); + return next ? this.attach(value, next.previous, next) : this.addHead(value); + }; + LinkedList.prototype.addByIndex = function (value, position) { + if (position < 0) + position += this.size; + else if (position >= this.size) + return this.addTail(value); + if (position <= 0) + return this.addHead(value); + var next = this.get(position); + return this.attach(value, next.previous, next); + }; + LinkedList.prototype.addHead = function (value) { + var node = new ListNode(value); + node.next = this.first; + if (this.first) + this.first.previous = node; + else + this.last = node; + this.first = node; + this.size++; + return node; + }; + LinkedList.prototype.addTail = function (value) { + var node = new ListNode(value); + if (this.first) { + node.previous = this.last; + this.last.next = node; + this.last = node; + } + else { + this.first = node; + this.last = node; + } + this.size++; + return node; + }; + LinkedList.prototype.addManyAfter = function (values, previousValue, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var previous = this.find(function (node) { return compareFn(node.value, previousValue); }); + return previous ? this.attachMany(values, previous, previous.next) : this.addManyTail(values); + }; + LinkedList.prototype.addManyBefore = function (values, nextValue, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var next = this.find(function (node) { return compareFn(node.value, nextValue); }); + return next ? this.attachMany(values, next.previous, next) : this.addManyHead(values); + }; + LinkedList.prototype.addManyByIndex = function (values, position) { + if (position < 0) + position += this.size; + if (position <= 0) + return this.addManyHead(values); + if (position >= this.size) + return this.addManyTail(values); + var next = this.get(position); + return this.attachMany(values, next.previous, next); + }; + LinkedList.prototype.addManyHead = function (values) { + var _this = this; + return values.reduceRight(function (nodes, value) { + nodes.unshift(_this.addHead(value)); + return nodes; + }, []); + }; + LinkedList.prototype.addManyTail = function (values) { + var _this = this; + return values.map(function (value) { return _this.addTail(value); }); + }; + LinkedList.prototype.drop = function () { + var _this = this; + return { + byIndex: function (position) { return _this.dropByIndex(position); }, + byValue: function () { + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return _this.dropByValue.apply(_this, params); + }, + byValueAll: function () { + var params = []; + for (var _i = 0; _i < arguments.length; _i++) { + params[_i] = arguments[_i]; + } + return _this.dropByValueAll.apply(_this, params); + }, + head: function () { return _this.dropHead(); }, + tail: function () { return _this.dropTail(); }, + }; + }; + LinkedList.prototype.dropMany = function (count) { + var _this = this; + return { + byIndex: function (position) { return _this.dropManyByIndex(count, position); }, + head: function () { return _this.dropManyHead(count); }, + tail: function () { return _this.dropManyTail(count); }, + }; + }; + LinkedList.prototype.dropByIndex = function (position) { + if (position < 0) + position += this.size; + var current = this.get(position); + return current ? this.detach(current) : undefined; + }; + LinkedList.prototype.dropByValue = function (value, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var position = this.findIndex(function (node) { return compareFn(node.value, value); }); + return position < 0 ? undefined : this.dropByIndex(position); + }; + LinkedList.prototype.dropByValueAll = function (value, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + var dropped = []; + for (var current = this.first, position = 0; current; position++, current = current.next) { + if (compareFn(current.value, value)) { + dropped.push(this.dropByIndex(position - dropped.length)); + } + } + return dropped; + }; + LinkedList.prototype.dropHead = function () { + var head = this.first; + if (head) { + this.first = head.next; + if (this.first) + this.first.previous = undefined; + else + this.last = undefined; + this.size--; + return head; + } + return undefined; + }; + LinkedList.prototype.dropTail = function () { + var tail = this.last; + if (tail) { + this.last = tail.previous; + if (this.last) + this.last.next = undefined; + else + this.first = undefined; + this.size--; + return tail; + } + return undefined; + }; + LinkedList.prototype.dropManyByIndex = function (count, position) { + if (count <= 0) + return []; + if (position < 0) + position = Math.max(position + this.size, 0); + else if (position >= this.size) + return []; + count = Math.min(count, this.size - position); + var dropped = []; + while (count--) { + var current = this.get(position); + dropped.push(this.detach(current)); + } + return dropped; + }; + LinkedList.prototype.dropManyHead = function (count) { + if (count <= 0) + return []; + count = Math.min(count, this.size); + var dropped = []; + while (count--) + dropped.unshift(this.dropHead()); + return dropped; + }; + LinkedList.prototype.dropManyTail = function (count) { + if (count <= 0) + return []; + count = Math.min(count, this.size); + var dropped = []; + while (count--) + dropped.push(this.dropTail()); + return dropped; + }; + LinkedList.prototype.find = function (predicate) { + for (var current = this.first, position = 0; current; position++, current = current.next) { + if (predicate(current, position, this)) + return current; + } + return undefined; + }; + LinkedList.prototype.findIndex = function (predicate) { + for (var current = this.first, position = 0; current; position++, current = current.next) { + if (predicate(current, position, this)) + return position; + } + return -1; + }; + LinkedList.prototype.forEach = function (iteratorFn) { + for (var node = this.first, position = 0; node; position++, node = node.next) { + iteratorFn(node, position, this); + } + }; + LinkedList.prototype.get = function (position) { + return this.find(function (_, index) { return position === index; }); + }; + LinkedList.prototype.indexOf = function (value, compareFn) { + if (compareFn === void 0) { compareFn = compare; } + return this.findIndex(function (node) { return compareFn(node.value, value); }); + }; + LinkedList.prototype.toArray = function () { + var array = new Array(this.size); + this.forEach(function (node, index) { return (array[index] = node.value); }); + return array; + }; + LinkedList.prototype.toNodeArray = function () { + var array = new Array(this.size); + this.forEach(function (node, index) { return (array[index] = node); }); + return array; + }; + LinkedList.prototype.toString = function (mapperFn) { + if (mapperFn === void 0) { mapperFn = JSON.stringify; } + return this.toArray() + .map(function (value) { return mapperFn(value); }) + .join(' <-> '); + }; + // Cannot use Generator type because of ng-packagr + LinkedList.prototype[Symbol.iterator] = function () { + var node, position; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: + node = this.first, position = 0; + _a.label = 1; + case 1: + if (!node) return [3 /*break*/, 4]; + return [4 /*yield*/, node.value]; + case 2: + _a.sent(); + _a.label = 3; + case 3: + position++, node = node.next; + return [3 /*break*/, 1]; + case 4: return [2 /*return*/]; + } + }); + }; + return LinkedList; + }()); + + exports.LinkedList = LinkedList; + exports.ListNode = ListNode; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); +//# sourceMappingURL=abp-utils.umd.js.map diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map new file mode 100644 index 000000000..2657d8c1c --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"abp-utils.umd.js","sources":["../../node_modules/tslib/tslib.es6.js","ng://@abp/utils/lib/linked-list.ts"],"sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/* tslint:disable:no-non-null-assertion */\r\n\r\nimport compare from 'just-compare';\r\n\r\nexport class ListNode {\r\n next: ListNode | undefined;\r\n previous: ListNode | undefined;\r\n constructor(public readonly value: T) {}\r\n}\r\n\r\nexport class LinkedList {\r\n private first: ListNode | undefined;\r\n private last: ListNode | undefined;\r\n private size = 0;\r\n\r\n get head(): ListNode | undefined {\r\n return this.first;\r\n }\r\n get tail(): ListNode | undefined {\r\n return this.last;\r\n }\r\n get length(): number {\r\n return this.size;\r\n }\r\n\r\n private attach(\r\n value: T,\r\n previousNode: ListNode | undefined,\r\n nextNode: ListNode | undefined,\r\n ): ListNode {\r\n if (!previousNode) return this.addHead(value);\r\n\r\n if (!nextNode) return this.addTail(value);\r\n\r\n const node = new ListNode(value);\r\n node.previous = previousNode;\r\n previousNode.next = node;\r\n node.next = nextNode;\r\n nextNode.previous = node;\r\n\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n private attachMany(\r\n values: T[],\r\n previousNode: ListNode | undefined,\r\n nextNode: ListNode | undefined,\r\n ): ListNode[] {\r\n if (!values.length) return [];\r\n\r\n if (!previousNode) return this.addManyHead(values);\r\n\r\n if (!nextNode) return this.addManyTail(values);\r\n\r\n const list = new LinkedList();\r\n list.addManyTail(values);\r\n list.first!.previous = previousNode;\r\n previousNode.next = list.first;\r\n list.last!.next = nextNode;\r\n nextNode.previous = list.last;\r\n\r\n this.size += values.length;\r\n\r\n return list.toNodeArray();\r\n }\r\n\r\n private detach(node: ListNode) {\r\n if (!node.previous) return this.dropHead();\r\n\r\n if (!node.next) return this.dropTail();\r\n\r\n node.previous.next = node.next;\r\n node.next.previous = node.previous;\r\n\r\n this.size--;\r\n\r\n return node;\r\n }\r\n\r\n add(value: T) {\r\n return {\r\n after: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addAfter.call(this, value, ...params),\r\n before: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addBefore.call(this, value, ...params),\r\n byIndex: (position: number) => this.addByIndex(value, position),\r\n head: () => this.addHead(value),\r\n tail: () => this.addTail(value),\r\n };\r\n }\r\n\r\n addMany(values: T[]) {\r\n return {\r\n after: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addManyAfter.call(this, values, ...params),\r\n before: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addManyBefore.call(this, values, ...params),\r\n byIndex: (position: number) => this.addManyByIndex(values, position),\r\n head: () => this.addManyHead(values),\r\n tail: () => this.addManyTail(values),\r\n };\r\n }\r\n\r\n addAfter(value: T, nextValue: T): ListNode;\r\n addAfter(value: T, previousValue: any, compareFn: ListComparisonFn): ListNode;\r\n addAfter(value: T, previousValue: any, compareFn: ListComparisonFn = compare): ListNode {\r\n const previous = this.find(node => compareFn(node.value, previousValue));\r\n\r\n return previous ? this.attach(value, previous, previous.next) : this.addTail(value);\r\n }\r\n\r\n addBefore(value: T, nextValue: T): ListNode;\r\n addBefore(value: T, nextValue: any, compareFn: ListComparisonFn): ListNode;\r\n addBefore(value: T, nextValue: any, compareFn: ListComparisonFn = compare): ListNode {\r\n const next = this.find(node => compareFn(node.value, nextValue));\r\n\r\n return next ? this.attach(value, next.previous, next) : this.addHead(value);\r\n }\r\n\r\n addByIndex(value: T, position: number): ListNode {\r\n if (position < 0) position += this.size;\r\n else if (position >= this.size) return this.addTail(value);\r\n\r\n if (position <= 0) return this.addHead(value);\r\n\r\n const next = this.get(position)!;\r\n\r\n return this.attach(value, next.previous, next);\r\n }\r\n\r\n addHead(value: T): ListNode {\r\n const node = new ListNode(value);\r\n\r\n node.next = this.first;\r\n\r\n if (this.first) this.first.previous = node;\r\n else this.last = node;\r\n\r\n this.first = node;\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n addTail(value: T): ListNode {\r\n const node = new ListNode(value);\r\n\r\n if (this.first) {\r\n node.previous = this.last;\r\n this.last!.next = node;\r\n this.last = node;\r\n } else {\r\n this.first = node;\r\n this.last = node;\r\n }\r\n\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n addManyAfter(values: T[], previousValue: T): ListNode[];\r\n addManyAfter(values: T[], previousValue: any, compareFn: ListComparisonFn): ListNode[];\r\n addManyAfter(\r\n values: T[],\r\n previousValue: any,\r\n compareFn: ListComparisonFn = compare,\r\n ): ListNode[] {\r\n const previous = this.find(node => compareFn(node.value, previousValue));\r\n\r\n return previous ? this.attachMany(values, previous, previous.next) : this.addManyTail(values);\r\n }\r\n\r\n addManyBefore(values: T[], previousValue: T): ListNode[];\r\n addManyBefore(values: T[], nextValue: any, compareFn: ListComparisonFn): ListNode[];\r\n addManyBefore(\r\n values: T[],\r\n nextValue: any,\r\n compareFn: ListComparisonFn = compare,\r\n ): ListNode[] {\r\n const next = this.find(node => compareFn(node.value, nextValue));\r\n\r\n return next ? this.attachMany(values, next.previous, next) : this.addManyHead(values);\r\n }\r\n\r\n addManyByIndex(values: T[], position: number): ListNode[] {\r\n if (position < 0) position += this.size;\r\n\r\n if (position <= 0) return this.addManyHead(values);\r\n\r\n if (position >= this.size) return this.addManyTail(values);\r\n\r\n const next = this.get(position)!;\r\n\r\n return this.attachMany(values, next.previous, next);\r\n }\r\n\r\n addManyHead(values: T[]): ListNode[] {\r\n return values.reduceRight[]>((nodes, value) => {\r\n nodes.unshift(this.addHead(value));\r\n return nodes;\r\n }, []);\r\n }\r\n\r\n addManyTail(values: T[]): ListNode[] {\r\n return values.map(value => this.addTail(value));\r\n }\r\n\r\n drop() {\r\n return {\r\n byIndex: (position: number) => this.dropByIndex(position),\r\n byValue: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.dropByValue.apply(this, params),\r\n byValueAll: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.dropByValueAll.apply(this, params),\r\n head: () => this.dropHead(),\r\n tail: () => this.dropTail(),\r\n };\r\n }\r\n\r\n dropMany(count: number) {\r\n return {\r\n byIndex: (position: number) => this.dropManyByIndex(count, position),\r\n head: () => this.dropManyHead(count),\r\n tail: () => this.dropManyTail(count),\r\n };\r\n }\r\n\r\n dropByIndex(position: number): ListNode | undefined {\r\n if (position < 0) position += this.size;\r\n\r\n const current = this.get(position);\r\n\r\n return current ? this.detach(current) : undefined;\r\n }\r\n\r\n dropByValue(value: T): ListNode | undefined;\r\n dropByValue(value: any, compareFn: ListComparisonFn): ListNode | undefined;\r\n dropByValue(value: any, compareFn: ListComparisonFn = compare): ListNode | undefined {\r\n const position = this.findIndex(node => compareFn(node.value, value));\r\n\r\n return position < 0 ? undefined : this.dropByIndex(position);\r\n }\r\n\r\n dropByValueAll(value: T): ListNode[];\r\n dropByValueAll(value: any, compareFn: ListComparisonFn): ListNode[];\r\n dropByValueAll(value: any, compareFn: ListComparisonFn = compare): ListNode[] {\r\n const dropped: ListNode[] = [];\r\n\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (compareFn(current.value, value)) {\r\n dropped.push(this.dropByIndex(position - dropped.length)!);\r\n }\r\n }\r\n\r\n return dropped;\r\n }\r\n\r\n dropHead(): ListNode | undefined {\r\n const head = this.first;\r\n\r\n if (head) {\r\n this.first = head.next;\r\n\r\n if (this.first) this.first.previous = undefined;\r\n else this.last = undefined;\r\n\r\n this.size--;\r\n\r\n return head;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n dropTail(): ListNode | undefined {\r\n const tail = this.last;\r\n\r\n if (tail) {\r\n this.last = tail.previous;\r\n\r\n if (this.last) this.last.next = undefined;\r\n else this.first = undefined;\r\n\r\n this.size--;\r\n\r\n return tail;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n dropManyByIndex(count: number, position: number): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n if (position < 0) position = Math.max(position + this.size, 0);\r\n else if (position >= this.size) return [];\r\n\r\n count = Math.min(count, this.size - position);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) {\r\n const current = this.get(position);\r\n dropped.push(this.detach(current!)!);\r\n }\r\n\r\n return dropped;\r\n }\r\n\r\n dropManyHead(count: Exclude): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n count = Math.min(count, this.size);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) dropped.unshift(this.dropHead()!);\r\n\r\n return dropped;\r\n }\r\n\r\n dropManyTail(count: Exclude): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n count = Math.min(count, this.size);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) dropped.push(this.dropTail()!);\r\n\r\n return dropped;\r\n }\r\n\r\n find(predicate: ListIteratorFn): ListNode | undefined {\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (predicate(current, position, this)) return current;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n findIndex(predicate: ListIteratorFn): number {\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (predicate(current, position, this)) return position;\r\n }\r\n\r\n return -1;\r\n }\r\n\r\n forEach(iteratorFn: ListIteratorFn) {\r\n for (let node = this.first, position = 0; node; position++, node = node.next) {\r\n iteratorFn(node, position, this);\r\n }\r\n }\r\n\r\n get(position: number): ListNode | undefined {\r\n return this.find((_, index) => position === index);\r\n }\r\n\r\n indexOf(value: T): number;\r\n indexOf(value: any, compareFn: ListComparisonFn): number;\r\n indexOf(value: any, compareFn: ListComparisonFn = compare): number {\r\n return this.findIndex(node => compareFn(node.value, value));\r\n }\r\n\r\n toArray(): T[] {\r\n const array = new Array(this.size);\r\n\r\n this.forEach((node, index) => (array[index!] = node.value));\r\n\r\n return array;\r\n }\r\n\r\n toNodeArray(): ListNode[] {\r\n const array = new Array(this.size);\r\n\r\n this.forEach((node, index) => (array[index!] = node));\r\n\r\n return array;\r\n }\r\n\r\n toString(mapperFn: ListMapperFn = JSON.stringify): string {\r\n return this.toArray()\r\n .map(value => mapperFn(value))\r\n .join(' <-> ');\r\n }\r\n\r\n // Cannot use Generator type because of ng-packagr\r\n *[Symbol.iterator](): any {\r\n for (let node = this.first, position = 0; node; position++, node = node.next) {\r\n yield node.value;\r\n }\r\n }\r\n}\r\n\r\nexport type ListMapperFn = (value: T) => any;\r\n\r\nexport type ListComparisonFn = (value1: T, value2: any) => boolean;\r\n\r\nexport type ListIteratorFn = (\r\n node: ListNode,\r\n index?: number,\r\n list?: LinkedList,\r\n) => R;\r\n"],"names":[],"mappings":";;;;;;;;IAAA;IACA;IACA;IACA;IACA;AACA;IACA;IACA;IACA;IACA;AACA;IACA;IACA;IACA;IACA;AACA;IACA,IAAI,aAAa,GAAG,SAAS,CAAC,EAAE,CAAC,EAAE;IACnC,IAAI,aAAa,GAAG,MAAM,CAAC,cAAc;IACzC,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,CAAC;IACpF,QAAQ,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IACnF,IAAI,OAAO,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/B,CAAC,CAAC;AACF;IACO,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE;IAChC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACxB,IAAI,SAAS,EAAE,GAAG,EAAE,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,EAAE;IAC3C,IAAI,CAAC,CAAC,SAAS,GAAG,CAAC,KAAK,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;IACzF,CAAC;AACD;IACO,IAAI,QAAQ,GAAG,WAAW;IACjC,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,IAAI,SAAS,QAAQ,CAAC,CAAC,EAAE;IACrD,QAAQ,KAAK,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;IAC7D,YAAY,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;IAC7B,YAAY,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACzF,SAAS;IACT,QAAQ,OAAO,CAAC,CAAC;IACjB,MAAK;IACL,IAAI,OAAO,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC3C,EAAC;AACD;IACO,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC;IACf,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC;IACvF,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,OAAO,MAAM,CAAC,qBAAqB,KAAK,UAAU;IACvE,QAAQ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,qBAAqB,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IAChF,YAAY,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,SAAS,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1F,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAClC,SAAS;IACT,IAAI,OAAO,CAAC,CAAC;IACb,CAAC;AACD;IACO,SAAS,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE;IAC1D,IAAI,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IACjI,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACnI,SAAS,KAAK,IAAI,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;IACtJ,IAAI,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAClE,CAAC;AACD;IACO,SAAS,OAAO,CAAC,UAAU,EAAE,SAAS,EAAE;IAC/C,IAAI,OAAO,UAAU,MAAM,EAAE,GAAG,EAAE,EAAE,SAAS,CAAC,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,EAAE;IACzE,CAAC;AACD;IACO,SAAS,UAAU,CAAC,WAAW,EAAE,aAAa,EAAE;IACvD,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,OAAO,OAAO,CAAC,QAAQ,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;IACnI,CAAC;AACD;IACO,SAAS,SAAS,CAAC,OAAO,EAAE,UAAU,EAAE,CAAC,EAAE,SAAS,EAAE;IAC7D,IAAI,SAAS,KAAK,CAAC,KAAK,EAAE,EAAE,OAAO,KAAK,YAAY,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,CAAC,UAAU,OAAO,EAAE,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;IAChH,IAAI,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,EAAE,UAAU,OAAO,EAAE,MAAM,EAAE;IAC/D,QAAQ,SAAS,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;IACnG,QAAQ,SAAS,QAAQ,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;IACtG,QAAQ,SAAS,IAAI,CAAC,MAAM,EAAE,EAAE,MAAM,CAAC,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,EAAE;IACtH,QAAQ,IAAI,CAAC,CAAC,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IAC9E,KAAK,CAAC,CAAC;IACP,CAAC;AACD;IACO,SAAS,WAAW,CAAC,OAAO,EAAE,IAAI,EAAE;IAC3C,IAAI,IAAI,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IACrH,IAAI,OAAO,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,OAAO,MAAM,KAAK,UAAU,KAAK,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,WAAW,EAAE,OAAO,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IAC7J,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,OAAO,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE;IACtE,IAAI,SAAS,IAAI,CAAC,EAAE,EAAE;IACtB,QAAQ,IAAI,CAAC,EAAE,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAC;IACtE,QAAQ,OAAO,CAAC,EAAE,IAAI;IACtB,YAAY,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IACzK,YAAY,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC;IACpD,YAAY,QAAQ,EAAE,CAAC,CAAC,CAAC;IACzB,gBAAgB,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM;IAC9C,gBAAgB,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;IACxE,gBAAgB,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;IACjE,gBAAgB,KAAK,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,SAAS;IACjE,gBAAgB;IAChB,oBAAoB,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,EAAE;IAChI,oBAAoB,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE;IAC1G,oBAAoB,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACzF,oBAAoB,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE;IACvF,oBAAoB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;IAC1C,oBAAoB,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,SAAS;IAC3C,aAAa;IACb,YAAY,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;IACvC,SAAS,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;IAClE,QAAQ,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACzF,KAAK;IACL,CAAC;AACD;IACO,SAAS,YAAY,CAAC,CAAC,EAAE,OAAO,EAAE;IACzC,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACvE,CAAC;AACD;IACO,SAAS,QAAQ,CAAC,CAAC,EAAE;IAC5B,IAAI,IAAI,CAAC,GAAG,OAAO,MAAM,KAAK,UAAU,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAClF,IAAI,IAAI,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC5B,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,MAAM,KAAK,QAAQ,EAAE,OAAO;IAClD,QAAQ,IAAI,EAAE,YAAY;IAC1B,YAAY,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC;IAC/C,YAAY,OAAO,EAAE,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;IACpD,SAAS;IACT,KAAK,CAAC;IACN,IAAI,MAAM,IAAI,SAAS,CAAC,CAAC,GAAG,yBAAyB,GAAG,iCAAiC,CAAC,CAAC;IAC3F,CAAC;AACD;IACO,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,IAAI,CAAC,GAAG,OAAO,MAAM,KAAK,UAAU,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC/D,IAAI,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IACrB,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACrC,IAAI,IAAI;IACR,QAAQ,OAAO,CAAC,CAAC,KAAK,KAAK,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;IACnF,KAAK;IACL,IAAI,OAAO,KAAK,EAAE,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,EAAE;IAC3C,YAAY;IACZ,QAAQ,IAAI;IACZ,YAAY,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC7D,SAAS;IACT,gBAAgB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,CAAC,KAAK,CAAC,EAAE;IACzC,KAAK;IACL,IAAI,OAAO,EAAE,CAAC;IACd,CAAC;AACD;IACO,SAAS,QAAQ,GAAG;IAC3B,IAAI,KAAK,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;IACtD,QAAQ,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7C,IAAI,OAAO,EAAE,CAAC;IACd,CAAC;AACD;IACO,SAAS,cAAc,GAAG;IACjC,IAAI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IACxF,IAAI,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IACpD,QAAQ,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE;IACzE,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACxB,IAAI,OAAO,CAAC,CAAC;IACb,CAAC,CAAC;AACF;IACO,SAAS,OAAO,CAAC,CAAC,EAAE;IAC3B,IAAI,OAAO,IAAI,YAAY,OAAO,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,IAAI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;IACzE,CAAC;AACD;IACO,SAAS,gBAAgB,CAAC,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE;IACjE,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;IAC3F,IAAI,IAAI,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IAClE,IAAI,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IAC1H,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE;IAC9I,IAAI,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;IACtF,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,YAAY,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;IAC5H,IAAI,SAAS,OAAO,CAAC,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,EAAE;IACtD,IAAI,SAAS,MAAM,CAAC,KAAK,EAAE,EAAE,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,EAAE;IACtD,IAAI,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;IACtF,CAAC;AACD;IACO,SAAS,gBAAgB,CAAC,CAAC,EAAE;IACpC,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC;IACb,IAAI,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IAChJ,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,QAAQ,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE;IACnJ,CAAC;AACD;IACO,SAAS,aAAa,CAAC,CAAC,EAAE;IACjC,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;IAC3F,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;IACvC,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,OAAO,QAAQ,KAAK,UAAU,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;IACrN,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE;IACpK,IAAI,SAAS,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE;IAChI,CAAC;AACD;IACO,SAAS,oBAAoB,CAAC,MAAM,EAAE,GAAG,EAAE;IAClD,IAAI,IAAI,MAAM,CAAC,cAAc,EAAE,EAAE,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,EAAE;IACnH,IAAI,OAAO,MAAM,CAAC;IAClB,CAAC,CAAC;AACF;IACO,SAAS,YAAY,CAAC,GAAG,EAAE;IAClC,IAAI,IAAI,GAAG,IAAI,GAAG,CAAC,UAAU,EAAE,OAAO,GAAG,CAAC;IAC1C,IAAI,IAAI,MAAM,GAAG,EAAE,CAAC;IACpB,IAAI,IAAI,GAAG,IAAI,IAAI,EAAE,KAAK,IAAI,CAAC,IAAI,GAAG,EAAE,IAAI,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;IACnG,IAAI,MAAM,CAAC,OAAO,GAAG,GAAG,CAAC;IACzB,IAAI,OAAO,MAAM,CAAC;IAClB,CAAC;AACD;IACO,SAAS,eAAe,CAAC,GAAG,EAAE;IACrC,IAAI,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,UAAU,IAAI,GAAG,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC;IAC5D,CAAC;AACD;IACO,SAAS,sBAAsB,CAAC,QAAQ,EAAE,UAAU,EAAE;IAC7D,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;IACnC,QAAQ,MAAM,IAAI,SAAS,CAAC,gDAAgD,CAAC,CAAC;IAC9E,KAAK;IACL,IAAI,OAAO,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACpC,CAAC;AACD;IACO,SAAS,sBAAsB,CAAC,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE;IACpE,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;IACnC,QAAQ,MAAM,IAAI,SAAS,CAAC,gDAAgD,CAAC,CAAC;IAC9E,KAAK;IACL,IAAI,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;IACpC,IAAI,OAAO,KAAK,CAAC;IACjB;;ICpNA;;QAOE,kBAA4B,KAAQ;YAAR,UAAK,GAAL,KAAK,CAAG;SAAI;QAC1C,eAAC;IAAD,CAAC,IAAA;;QAED;YAGU,SAAI,GAAG,CAAC,CAAC;SA+XlB;QA7XC,sBAAI,4BAAI;iBAAR;gBACE,OAAO,IAAI,CAAC,KAAK,CAAC;aACnB;;;WAAA;QACD,sBAAI,4BAAI;iBAAR;gBACE,OAAO,IAAI,CAAC,IAAI,CAAC;aAClB;;;WAAA;QACD,sBAAI,8BAAM;iBAAV;gBACE,OAAO,IAAI,CAAC,IAAI,CAAC;aAClB;;;WAAA;QAEO,2BAAM,GAAd,UACE,KAAQ,EACR,YAAqC,EACrC,QAAiC;YAEjC,IAAI,CAAC,YAAY;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAE9C,IAAI,CAAC,QAAQ;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAE1C,IAAM,IAAI,GAAG,IAAI,QAAQ,CAAC,KAAK,CAAC,CAAC;YACjC,IAAI,CAAC,QAAQ,GAAG,YAAY,CAAC;YAC7B,YAAY,CAAC,IAAI,GAAG,IAAI,CAAC;YACzB,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC;YACrB,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;YAEzB,IAAI,CAAC,IAAI,EAAE,CAAC;YAEZ,OAAO,IAAI,CAAC;SACb;QAEO,+BAAU,GAAlB,UACE,MAAW,EACX,YAAqC,EACrC,QAAiC;YAEjC,IAAI,CAAC,MAAM,CAAC,MAAM;gBAAE,OAAO,EAAE,CAAC;YAE9B,IAAI,CAAC,YAAY;gBAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;YAEnD,IAAI,CAAC,QAAQ;gBAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;YAE/C,IAAM,IAAI,GAAG,IAAI,UAAU,EAAK,CAAC;YACjC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;YACzB,IAAI,CAAC,KAAM,CAAC,QAAQ,GAAG,YAAY,CAAC;YACpC,YAAY,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;YAC/B,IAAI,CAAC,IAAK,CAAC,IAAI,GAAG,QAAQ,CAAC;YAC3B,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;YAE9B,IAAI,CAAC,IAAI,IAAI,MAAM,CAAC,MAAM,CAAC;YAE3B,OAAO,IAAI,CAAC,WAAW,EAAE,CAAC;SAC3B;QAEO,2BAAM,GAAd,UAAe,IAAiB;YAC9B,IAAI,CAAC,IAAI,CAAC,QAAQ;gBAAE,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;YAE3C,IAAI,CAAC,IAAI,CAAC,IAAI;gBAAE,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;YAEvC,IAAI,CAAC,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;YAC/B,IAAI,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;YAEnC,IAAI,CAAC,IAAI,EAAE,CAAC;YAEZ,OAAO,IAAI,CAAC;SACb;QAED,wBAAG,GAAH,UAAI,KAAQ;YAAZ,iBAUC;YATC,OAAO;gBACL,KAAK,EAAE;;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBACjD,OAAA,CAAA,KAAA,KAAI,CAAC,QAAQ,EAAC,IAAI,qBAAC,KAAI,EAAE,KAAK,GAAK,MAAM;iBAAC;gBAC5C,MAAM,EAAE;;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBAClD,OAAA,CAAA,KAAA,KAAI,CAAC,SAAS,EAAC,IAAI,qBAAC,KAAI,EAAE,KAAK,GAAK,MAAM;iBAAC;gBAC7C,OAAO,EAAE,UAAC,QAAgB,IAAK,OAAA,KAAI,CAAC,UAAU,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAA;gBAC/D,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAA;gBAC/B,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAA;aAChC,CAAC;SACH;QAED,4BAAO,GAAP,UAAQ,MAAW;YAAnB,iBAUC;YATC,OAAO;gBACL,KAAK,EAAE;;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBACjD,OAAA,CAAA,KAAA,KAAI,CAAC,YAAY,EAAC,IAAI,qBAAC,KAAI,EAAE,MAAM,GAAK,MAAM;iBAAC;gBACjD,MAAM,EAAE;;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBAClD,OAAA,CAAA,KAAA,KAAI,CAAC,aAAa,EAAC,IAAI,qBAAC,KAAI,EAAE,MAAM,GAAK,MAAM;iBAAC;gBAClD,OAAO,EAAE,UAAC,QAAgB,IAAK,OAAA,KAAI,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,GAAA;gBACpE,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,WAAW,CAAC,MAAM,CAAC,GAAA;gBACpC,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,WAAW,CAAC,MAAM,CAAC,GAAA;aACrC,CAAC;SACH;QAID,6BAAQ,GAAR,UAAS,KAAQ,EAAE,aAAkB,EAAE,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAC7E,IAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,aAAa,CAAC,GAAA,CAAC,CAAC;YAEzE,OAAO,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;SACrF;QAID,8BAAS,GAAT,UAAU,KAAQ,EAAE,SAAc,EAAE,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAC1E,IAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,GAAA,CAAC,CAAC;YAEjE,OAAO,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;SAC7E;QAED,+BAAU,GAAV,UAAW,KAAQ,EAAE,QAAgB;YACnC,IAAI,QAAQ,GAAG,CAAC;gBAAE,QAAQ,IAAI,IAAI,CAAC,IAAI,CAAC;iBACnC,IAAI,QAAQ,IAAI,IAAI,CAAC,IAAI;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAE3D,IAAI,QAAQ,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAE9C,IAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAE,CAAC;YAEjC,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SAChD;QAED,4BAAO,GAAP,UAAQ,KAAQ;YACd,IAAM,IAAI,GAAG,IAAI,QAAQ,CAAC,KAAK,CAAC,CAAC;YAEjC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;YAEvB,IAAI,IAAI,CAAC,KAAK;gBAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;;gBACtC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;YAEtB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;YAClB,IAAI,CAAC,IAAI,EAAE,CAAC;YAEZ,OAAO,IAAI,CAAC;SACb;QAED,4BAAO,GAAP,UAAQ,KAAQ;YACd,IAAM,IAAI,GAAG,IAAI,QAAQ,CAAC,KAAK,CAAC,CAAC;YAEjC,IAAI,IAAI,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC;gBAC1B,IAAI,CAAC,IAAK,CAAC,IAAI,GAAG,IAAI,CAAC;gBACvB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;aAClB;iBAAM;gBACL,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;gBAClB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;aAClB;YAED,IAAI,CAAC,IAAI,EAAE,CAAC;YAEZ,OAAO,IAAI,CAAC;SACb;QAID,iCAAY,GAAZ,UACE,MAAW,EACX,aAAkB,EAClB,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAExC,IAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,aAAa,CAAC,GAAA,CAAC,CAAC;YAEzE,OAAO,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;SAC/F;QAID,kCAAa,GAAb,UACE,MAAW,EACX,SAAc,EACd,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAExC,IAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,CAAC,GAAA,CAAC,CAAC;YAEjE,OAAO,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;SACvF;QAED,mCAAc,GAAd,UAAe,MAAW,EAAE,QAAgB;YAC1C,IAAI,QAAQ,GAAG,CAAC;gBAAE,QAAQ,IAAI,IAAI,CAAC,IAAI,CAAC;YAExC,IAAI,QAAQ,IAAI,CAAC;gBAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;YAEnD,IAAI,QAAQ,IAAI,IAAI,CAAC,IAAI;gBAAE,OAAO,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;YAE3D,IAAM,IAAI,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAE,CAAC;YAEjC,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;SACrD;QAED,gCAAW,GAAX,UAAY,MAAW;YAAvB,iBAKC;YAJC,OAAO,MAAM,CAAC,WAAW,CAAgB,UAAC,KAAK,EAAE,KAAK;gBACpD,KAAK,CAAC,OAAO,CAAC,KAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;gBACnC,OAAO,KAAK,CAAC;aACd,EAAE,EAAE,CAAC,CAAC;SACR;QAED,gCAAW,GAAX,UAAY,MAAW;YAAvB,iBAEC;YADC,OAAO,MAAM,CAAC,GAAG,CAAC,UAAA,KAAK,IAAI,OAAA,KAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAAA,CAAC,CAAC;SACjD;QAED,yBAAI,GAAJ;YAAA,iBAUC;YATC,OAAO;gBACL,OAAO,EAAE,UAAC,QAAgB,IAAK,OAAA,KAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAA;gBACzD,OAAO,EAAE;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBACnD,OAAA,KAAI,CAAC,WAAW,CAAC,KAAK,CAAC,KAAI,EAAE,MAAM,CAAC;iBAAA;gBACtC,UAAU,EAAE;oBAAC,gBAA2C;yBAA3C,UAA2C,EAA3C,qBAA2C,EAA3C,IAA2C;wBAA3C,2BAA2C;;oBACtD,OAAA,KAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAI,EAAE,MAAM,CAAC;iBAAA;gBACzC,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,QAAQ,EAAE,GAAA;gBAC3B,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,QAAQ,EAAE,GAAA;aAC5B,CAAC;SACH;QAED,6BAAQ,GAAR,UAAS,KAAa;YAAtB,iBAMC;YALC,OAAO;gBACL,OAAO,EAAE,UAAC,QAAgB,IAAK,OAAA,KAAI,CAAC,eAAe,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAA;gBACpE,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,GAAA;gBACpC,IAAI,EAAE,cAAM,OAAA,KAAI,CAAC,YAAY,CAAC,KAAK,CAAC,GAAA;aACrC,CAAC;SACH;QAED,gCAAW,GAAX,UAAY,QAAgB;YAC1B,IAAI,QAAQ,GAAG,CAAC;gBAAE,QAAQ,IAAI,IAAI,CAAC,IAAI,CAAC;YAExC,IAAM,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;YAEnC,OAAO,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC;SACnD;QAID,gCAAW,GAAX,UAAY,KAAU,EAAE,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAC9D,IAAM,QAAQ,GAAG,IAAI,CAAC,SAAS,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,GAAA,CAAC,CAAC;YAEtE,OAAO,QAAQ,GAAG,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;SAC9D;QAID,mCAAc,GAAd,UAAe,KAAU,EAAE,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YACjE,IAAM,OAAO,GAAkB,EAAE,CAAC;YAElC,KAAK,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,EAAE;gBACxF,IAAI,SAAS,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,EAAE;oBACnC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,GAAG,OAAO,CAAC,MAAM,CAAE,CAAC,CAAC;iBAC5D;aACF;YAED,OAAO,OAAO,CAAC;SAChB;QAED,6BAAQ,GAAR;YACE,IAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;YAExB,IAAI,IAAI,EAAE;gBACR,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC;gBAEvB,IAAI,IAAI,CAAC,KAAK;oBAAE,IAAI,CAAC,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;;oBAC3C,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC;gBAE3B,IAAI,CAAC,IAAI,EAAE,CAAC;gBAEZ,OAAO,IAAI,CAAC;aACb;YAED,OAAO,SAAS,CAAC;SAClB;QAED,6BAAQ,GAAR;YACE,IAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;YAEvB,IAAI,IAAI,EAAE;gBACR,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC;gBAE1B,IAAI,IAAI,CAAC,IAAI;oBAAE,IAAI,CAAC,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC;;oBACrC,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;gBAE5B,IAAI,CAAC,IAAI,EAAE,CAAC;gBAEZ,OAAO,IAAI,CAAC;aACb;YAED,OAAO,SAAS,CAAC;SAClB;QAED,oCAAe,GAAf,UAAgB,KAAa,EAAE,QAAgB;YAC7C,IAAI,KAAK,IAAI,CAAC;gBAAE,OAAO,EAAE,CAAC;YAE1B,IAAI,QAAQ,GAAG,CAAC;gBAAE,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;iBAC1D,IAAI,QAAQ,IAAI,IAAI,CAAC,IAAI;gBAAE,OAAO,EAAE,CAAC;YAE1C,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,CAAC;YAE9C,IAAM,OAAO,GAAkB,EAAE,CAAC;YAElC,OAAO,KAAK,EAAE,EAAE;gBACd,IAAM,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;gBACnC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,OAAQ,CAAE,CAAC,CAAC;aACtC;YAED,OAAO,OAAO,CAAC;SAChB;QAED,iCAAY,GAAZ,UAAa,KAAyB;YACpC,IAAI,KAAK,IAAI,CAAC;gBAAE,OAAO,EAAE,CAAC;YAE1B,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;YAEnC,IAAM,OAAO,GAAkB,EAAE,CAAC;YAElC,OAAO,KAAK,EAAE;gBAAE,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAG,CAAC,CAAC;YAElD,OAAO,OAAO,CAAC;SAChB;QAED,iCAAY,GAAZ,UAAa,KAAyB;YACpC,IAAI,KAAK,IAAI,CAAC;gBAAE,OAAO,EAAE,CAAC;YAE1B,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;YAEnC,IAAM,OAAO,GAAkB,EAAE,CAAC;YAElC,OAAO,KAAK,EAAE;gBAAE,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAG,CAAC,CAAC;YAE/C,OAAO,OAAO,CAAC;SAChB;QAED,yBAAI,GAAJ,UAAK,SAA4B;YAC/B,KAAK,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,EAAE;gBACxF,IAAI,SAAS,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC;oBAAE,OAAO,OAAO,CAAC;aACxD;YAED,OAAO,SAAS,CAAC;SAClB;QAED,8BAAS,GAAT,UAAU,SAA4B;YACpC,KAAK,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,EAAE;gBACxF,IAAI,SAAS,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,CAAC;oBAAE,OAAO,QAAQ,CAAC;aACzD;YAED,OAAO,CAAC,CAAC,CAAC;SACX;QAED,4BAAO,GAAP,UAAqB,UAAgC;YACnD,KAAK,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,IAAI,EAAE;gBAC5E,UAAU,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;aAClC;SACF;QAED,wBAAG,GAAH,UAAI,QAAgB;YAClB,OAAO,IAAI,CAAC,IAAI,CAAC,UAAC,CAAC,EAAE,KAAK,IAAK,OAAA,QAAQ,KAAK,KAAK,GAAA,CAAC,CAAC;SACpD;QAID,4BAAO,GAAP,UAAQ,KAAU,EAAE,SAAwC;YAAxC,0BAAA,EAAA,mBAAwC;YAC1D,OAAO,IAAI,CAAC,SAAS,CAAC,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC,GAAA,CAAC,CAAC;SAC7D;QAED,4BAAO,GAAP;YACE,IAAM,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAEnC,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,EAAE,KAAK,IAAK,QAAC,KAAK,CAAC,KAAM,CAAC,GAAG,IAAI,CAAC,KAAK,IAAC,CAAC,CAAC;YAE5D,OAAO,KAAK,CAAC;SACd;QAED,gCAAW,GAAX;YACE,IAAM,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAEnC,IAAI,CAAC,OAAO,CAAC,UAAC,IAAI,EAAE,KAAK,IAAK,QAAC,KAAK,CAAC,KAAM,CAAC,GAAG,IAAI,IAAC,CAAC,CAAC;YAEtD,OAAO,KAAK,CAAC;SACd;QAED,6BAAQ,GAAR,UAAS,QAA0C;YAA1C,yBAAA,EAAA,WAA4B,IAAI,CAAC,SAAS;YACjD,OAAO,IAAI,CAAC,OAAO,EAAE;iBAClB,GAAG,CAAC,UAAA,KAAK,IAAI,OAAA,QAAQ,CAAC,KAAK,CAAC,GAAA,CAAC;iBAC7B,IAAI,CAAC,OAAO,CAAC,CAAC;SAClB;;QAGA,qBAAC,MAAM,CAAC,QAAQ,CAAC,GAAlB;;;;;wBACW,IAAI,GAAG,IAAI,CAAC,KAAK,EAAE,QAAQ,GAAG,CAAC;;;6BAAE,IAAI;wBAC5C,qBAAM,IAAI,CAAC,KAAK,EAAA;;wBAAhB,SAAgB,CAAC;;;wBAD6B,QAAQ,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,IAAI,CAAA;;;;;SAG7E;QACH,iBAAC;IAAD,CAAC;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js new file mode 100644 index 000000000..b65fa8f40 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js @@ -0,0 +1,2 @@ +!function(t,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports,require("just-compare")):"function"==typeof define&&define.amd?define("@abp/utils",["exports","just-compare"],r):r(((t=t||self).abp=t.abp||{},t.abp.utils=t.abp.utils||{},t.abp.utils.common={}),t.compare)}(this,(function(t,r){"use strict";r=r&&Object.prototype.hasOwnProperty.call(r,"default")?r.default:r;function e(t,r){var e,n,i,o,a={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function u(o){return function(u){return function(o){if(e)throw new TypeError("Generator is already executing.");for(;a;)try{if(e=1,n&&(i=2&o[0]?n.return:o[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,o[1])).done)return i;switch(n=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return a.label++,{value:o[1],done:!1};case 5:a.label++,n=o[1],o=[0];continue;case 7:o=a.ops.pop(),a.trys.pop();continue;default:if(!(i=a.trys,(i=i.length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){a=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]0)&&!(n=o.next()).done;)a.push(n.value)}catch(t){i={error:t}}finally{try{n&&!n.done&&(e=o.return)&&e.call(o)}finally{if(i)throw i.error}}return a}function i(){for(var t=[],r=0;r=this.size)return this.addTail(t);if(r<=0)return this.addHead(t);var e=this.get(r);return this.attach(t,e.previous,e)},t.prototype.addHead=function(t){var r=new o(t);return r.next=this.first,this.first?this.first.previous=r:this.last=r,this.first=r,this.size++,r},t.prototype.addTail=function(t){var r=new o(t);return this.first?(r.previous=this.last,this.last.next=r,this.last=r):(this.first=r,this.last=r),this.size++,r},t.prototype.addManyAfter=function(t,e,n){void 0===n&&(n=r);var i=this.find((function(t){return n(t.value,e)}));return i?this.attachMany(t,i,i.next):this.addManyTail(t)},t.prototype.addManyBefore=function(t,e,n){void 0===n&&(n=r);var i=this.find((function(t){return n(t.value,e)}));return i?this.attachMany(t,i.previous,i):this.addManyHead(t)},t.prototype.addManyByIndex=function(t,r){if(r<0&&(r+=this.size),r<=0)return this.addManyHead(t);if(r>=this.size)return this.addManyTail(t);var e=this.get(r);return this.attachMany(t,e.previous,e)},t.prototype.addManyHead=function(t){var r=this;return t.reduceRight((function(t,e){return t.unshift(r.addHead(e)),t}),[])},t.prototype.addManyTail=function(t){var r=this;return t.map((function(t){return r.addTail(t)}))},t.prototype.drop=function(){var t=this;return{byIndex:function(r){return t.dropByIndex(r)},byValue:function(){for(var r=[],e=0;e=this.size)return[];t=Math.min(t,this.size-r);for(var e=[];t--;){var n=this.get(r);e.push(this.detach(n))}return e},t.prototype.dropManyHead=function(t){if(t<=0)return[];t=Math.min(t,this.size);for(var r=[];t--;)r.unshift(this.dropHead());return r},t.prototype.dropManyTail=function(t){if(t<=0)return[];t=Math.min(t,this.size);for(var r=[];t--;)r.push(this.dropTail());return r},t.prototype.find=function(t){for(var r=this.first,e=0;r;e++,r=r.next)if(t(r,e,this))return r},t.prototype.findIndex=function(t){for(var r=this.first,e=0;r;e++,r=r.next)if(t(r,e,this))return e;return-1},t.prototype.forEach=function(t){for(var r=this.first,e=0;r;e++,r=r.next)t(r,e,this)},t.prototype.get=function(t){return this.find((function(r,e){return t===e}))},t.prototype.indexOf=function(t,e){return void 0===e&&(e=r),this.findIndex((function(r){return e(r.value,t)}))},t.prototype.toArray=function(){var t=new Array(this.size);return this.forEach((function(r,e){return t[e]=r.value})),t},t.prototype.toNodeArray=function(){var t=new Array(this.size);return this.forEach((function(r,e){return t[e]=r})),t},t.prototype.toString=function(t){return void 0===t&&(t=JSON.stringify),this.toArray().map((function(r){return t(r)})).join(" <-> ")},t.prototype[Symbol.iterator]=function(){var t;return e(this,(function(r){switch(r.label){case 0:t=this.first,0,r.label=1;case 1:return t?[4,t.value]:[3,4];case 2:r.sent(),r.label=3;case 3:return t=t.next,[3,1];case 4:return[2]}}))},t}();t.LinkedList=a,t.ListNode=o,Object.defineProperty(t,"__esModule",{value:!0})})); +//# sourceMappingURL=abp-utils.umd.min.js.map \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map new file mode 100644 index 000000000..8148611e0 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../node_modules/tslib/tslib.es6.js","ng://@abp/utils/lib/linked-list.ts"],"names":["__generator","thisArg","body","f","y","t","g","_","label","sent","trys","ops","next","verb","throw","return","Symbol","iterator","this","n","v","op","TypeError","call","done","value","pop","length","push","e","step","__read","o","m","r","i","ar","error","__spread","arguments","concat","LinkedList","size","Object","defineProperty","prototype","first","last","attach","previousNode","nextNode","addHead","addTail","node","ListNode","previous","attachMany","values","addManyHead","addManyTail","list","toNodeArray","detach","dropTail","dropHead","add","_this","after","params","_i","_a","addAfter","apply","before","addBefore","byIndex","position","addByIndex","head","tail","addMany","addManyAfter","addManyBefore","addManyByIndex","previousValue","compareFn","compare","find","nextValue","get","reduceRight","nodes","unshift","map","drop","dropByIndex","byValue","dropByValue","byValueAll","dropByValueAll","dropMany","count","dropManyByIndex","dropManyHead","dropManyTail","current","undefined","findIndex","dropped","Math","max","min","predicate","forEach","iteratorFn","index","indexOf","toArray","array","Array","toString","mapperFn","JSON","stringify","join"],"mappings":"+XA6EO,SAASA,EAAYC,EAASC,GACjC,IAAsGC,EAAGC,EAAGC,EAAGC,EAA3GC,EAAI,CAAEC,MAAO,EAAGC,KAAM,WAAa,GAAW,EAAPJ,EAAE,GAAQ,MAAMA,EAAE,GAAI,OAAOA,EAAE,IAAOK,KAAM,GAAIC,IAAK,IAChG,OAAOL,EAAI,CAAEM,KAAMC,EAAK,GAAIC,MAASD,EAAK,GAAIE,OAAUF,EAAK,IAAwB,mBAAXG,SAA0BV,EAAEU,OAAOC,UAAY,WAAa,OAAOC,OAAUZ,EACvJ,SAASO,EAAKM,GAAK,OAAO,SAAUC,GAAK,OACzC,SAAcC,GACV,GAAIlB,EAAG,MAAM,IAAImB,UAAU,mCAC3B,KAAOf,GAAG,IACN,GAAIJ,EAAI,EAAGC,IAAMC,EAAY,EAARgB,EAAG,GAASjB,EAAU,OAAIiB,EAAG,GAAKjB,EAAS,SAAOC,EAAID,EAAU,SAAMC,EAAEkB,KAAKnB,GAAI,GAAKA,EAAEQ,SAAWP,EAAIA,EAAEkB,KAAKnB,EAAGiB,EAAG,KAAKG,KAAM,OAAOnB,EAE3J,OADID,EAAI,EAAGC,IAAGgB,EAAK,CAAS,EAARA,EAAG,GAAQhB,EAAEoB,QACzBJ,EAAG,IACP,KAAK,EAAG,KAAK,EAAGhB,EAAIgB,EAAI,MACxB,KAAK,EAAc,OAAXd,EAAEC,QAAgB,CAAEiB,MAAOJ,EAAG,GAAIG,MAAM,GAChD,KAAK,EAAGjB,EAAEC,QAASJ,EAAIiB,EAAG,GAAIA,EAAK,CAAC,GAAI,SACxC,KAAK,EAAGA,EAAKd,EAAEI,IAAIe,MAAOnB,EAAEG,KAAKgB,MAAO,SACxC,QACI,KAAMrB,EAAIE,EAAEG,MAAML,EAAIA,EAAEsB,OAAS,GAAKtB,EAAEA,EAAEsB,OAAS,KAAkB,IAAVN,EAAG,IAAsB,IAAVA,EAAG,IAAW,CAAEd,EAAI,EAAG,SACjG,GAAc,IAAVc,EAAG,MAAchB,GAAMgB,EAAG,GAAKhB,EAAE,IAAMgB,EAAG,GAAKhB,EAAE,IAAM,CAAEE,EAAEC,MAAQa,EAAG,GAAI,MAC9E,GAAc,IAAVA,EAAG,IAAYd,EAAEC,MAAQH,EAAE,GAAI,CAAEE,EAAEC,MAAQH,EAAE,GAAIA,EAAIgB,EAAI,MAC7D,GAAIhB,GAAKE,EAAEC,MAAQH,EAAE,GAAI,CAAEE,EAAEC,MAAQH,EAAE,GAAIE,EAAEI,IAAIiB,KAAKP,GAAK,MACvDhB,EAAE,IAAIE,EAAEI,IAAIe,MAChBnB,EAAEG,KAAKgB,MAAO,SAEtBL,EAAKnB,EAAKqB,KAAKtB,EAASM,GAC1B,MAAOsB,GAAKR,EAAK,CAAC,EAAGQ,GAAIzB,EAAI,EAAI,QAAWD,EAAIE,EAAI,EACtD,GAAY,EAARgB,EAAG,GAAQ,MAAMA,EAAG,GAAI,MAAO,CAAEI,MAAOJ,EAAG,GAAKA,EAAG,QAAK,EAAQG,MAAM,GArB9BM,CAAK,CAACX,EAAGC,MAyCtD,SAASW,EAAOC,EAAGb,GACtB,IAAIc,EAAsB,mBAAXjB,QAAyBgB,EAAEhB,OAAOC,UACjD,IAAKgB,EAAG,OAAOD,EACf,IAAmBE,EAAYL,EAA3BM,EAAIF,EAAEV,KAAKS,GAAOI,EAAK,GAC3B,IACI,WAAc,IAANjB,GAAgBA,KAAM,MAAQe,EAAIC,EAAEvB,QAAQY,MAAMY,EAAGR,KAAKM,EAAET,OAExE,MAAOY,GAASR,EAAI,CAAEQ,MAAOA,GACjC,QACQ,IACQH,IAAMA,EAAEV,OAASS,EAAIE,EAAU,SAAIF,EAAEV,KAAKY,GAE1D,QAAkB,GAAIN,EAAG,MAAMA,EAAEQ,OAE7B,OAAOD,EAGJ,SAASE,IACZ,IAAK,IAAIF,EAAK,GAAID,EAAI,EAAGA,EAAII,UAAUZ,OAAQQ,IAC3CC,EAAKA,EAAGI,OAAOT,EAAOQ,UAAUJ,KACpC,OAAOC,QCtIT,SAA4BX,GAAAP,KAAAO,MAAAA,gBAG9B,SAAAgB,IAGUvB,KAAAwB,KAAO,EA+XjB,OA7XEC,OAAAC,eAAIH,EAAAI,UAAA,OAAI,KAAR,WACE,OAAO3B,KAAK4B,uCAEdH,OAAAC,eAAIH,EAAAI,UAAA,OAAI,KAAR,WACE,OAAO3B,KAAK6B,sCAEdJ,OAAAC,eAAIH,EAAAI,UAAA,SAAM,KAAV,WACE,OAAO3B,KAAKwB,sCAGND,EAAAI,UAAAG,OAAR,SACEvB,EACAwB,EACAC,GAEA,IAAKD,EAAc,OAAO/B,KAAKiC,QAAQ1B,GAEvC,IAAKyB,EAAU,OAAOhC,KAAKkC,QAAQ3B,GAEnC,IAAM4B,EAAO,IAAIC,EAAS7B,GAQ1B,OAPA4B,EAAKE,SAAWN,EAChBA,EAAarC,KAAOyC,EACpBA,EAAKzC,KAAOsC,EACZA,EAASK,SAAWF,EAEpBnC,KAAKwB,OAEEW,GAGDZ,EAAAI,UAAAW,WAAR,SACEC,EACAR,EACAC,GAEA,IAAKO,EAAO9B,OAAQ,MAAO,GAE3B,IAAKsB,EAAc,OAAO/B,KAAKwC,YAAYD,GAE3C,IAAKP,EAAU,OAAOhC,KAAKyC,YAAYF,GAEvC,IAAMG,EAAO,IAAInB,EASjB,OARAmB,EAAKD,YAAYF,GACjBG,EAAKd,MAAOS,SAAWN,EACvBA,EAAarC,KAAOgD,EAAKd,MACzBc,EAAKb,KAAMnC,KAAOsC,EAClBA,EAASK,SAAWK,EAAKb,KAEzB7B,KAAKwB,MAAQe,EAAO9B,OAEbiC,EAAKC,eAGNpB,EAAAI,UAAAiB,OAAR,SAAeT,GACb,OAAKA,EAAKE,SAELF,EAAKzC,MAEVyC,EAAKE,SAAS3C,KAAOyC,EAAKzC,KAC1ByC,EAAKzC,KAAK2C,SAAWF,EAAKE,SAE1BrC,KAAKwB,OAEEW,GAPgBnC,KAAK6C,WAFD7C,KAAK8C,YAYlCvB,EAAAI,UAAAoB,IAAA,SAAIxC,GAAJ,IAAAyC,EAAAhD,KACE,MAAO,CACLiD,MAAO,qBAACC,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACN,OAAAC,EAAAJ,EAAKK,UAAShD,KAAIiD,MAAAF,EAAAhC,EAAA,CAAC4B,EAAMzC,GAAU2C,KACrCK,OAAQ,qBAACL,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACP,OAAAC,EAAAJ,EAAKQ,WAAUnD,KAAIiD,MAAAF,EAAAhC,EAAA,CAAC4B,EAAMzC,GAAU2C,KACtCO,QAAS,SAACC,GAAqB,OAAAV,EAAKW,WAAWpD,EAAOmD,IACtDE,KAAM,WAAM,OAAAZ,EAAKf,QAAQ1B,IACzBsD,KAAM,WAAM,OAAAb,EAAKd,QAAQ3B,MAI7BgB,EAAAI,UAAAmC,QAAA,SAAQvB,GAAR,IAAAS,EAAAhD,KACE,MAAO,CACLiD,MAAO,qBAACC,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACN,OAAAC,EAAAJ,EAAKe,cAAa1D,KAAIiD,MAAAF,EAAAhC,EAAA,CAAC4B,EAAMT,GAAWW,KAC1CK,OAAQ,qBAACL,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACP,OAAAC,EAAAJ,EAAKgB,eAAc3D,KAAIiD,MAAAF,EAAAhC,EAAA,CAAC4B,EAAMT,GAAWW,KAC3CO,QAAS,SAACC,GAAqB,OAAAV,EAAKiB,eAAe1B,EAAQmB,IAC3DE,KAAM,WAAM,OAAAZ,EAAKR,YAAYD,IAC7BsB,KAAM,WAAM,OAAAb,EAAKP,YAAYF,MAMjChB,EAAAI,UAAA0B,SAAA,SAAS9C,EAAU2D,EAAoBC,QAAA,IAAAA,IAAAA,EAAAC,GACrC,IAAM/B,EAAWrC,KAAKqE,MAAK,SAAAlC,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAO2D,MAEzD,OAAO7B,EAAWrC,KAAK8B,OAAOvB,EAAO8B,EAAUA,EAAS3C,MAAQM,KAAKkC,QAAQ3B,IAK/EgB,EAAAI,UAAA6B,UAAA,SAAUjD,EAAU+D,EAAgBH,QAAA,IAAAA,IAAAA,EAAAC,GAClC,IAAM1E,EAAOM,KAAKqE,MAAK,SAAAlC,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAO+D,MAErD,OAAO5E,EAAOM,KAAK8B,OAAOvB,EAAOb,EAAK2C,SAAU3C,GAAQM,KAAKiC,QAAQ1B,IAGvEgB,EAAAI,UAAAgC,WAAA,SAAWpD,EAAUmD,GACnB,GAAIA,EAAW,EAAGA,GAAY1D,KAAKwB,UAC9B,GAAIkC,GAAY1D,KAAKwB,KAAM,OAAOxB,KAAKkC,QAAQ3B,GAEpD,GAAImD,GAAY,EAAG,OAAO1D,KAAKiC,QAAQ1B,GAEvC,IAAMb,EAAOM,KAAKuE,IAAIb,GAEtB,OAAO1D,KAAK8B,OAAOvB,EAAOb,EAAK2C,SAAU3C,IAG3C6B,EAAAI,UAAAM,QAAA,SAAQ1B,GACN,IAAM4B,EAAO,IAAIC,EAAS7B,GAU1B,OARA4B,EAAKzC,KAAOM,KAAK4B,MAEb5B,KAAK4B,MAAO5B,KAAK4B,MAAMS,SAAWF,EACjCnC,KAAK6B,KAAOM,EAEjBnC,KAAK4B,MAAQO,EACbnC,KAAKwB,OAEEW,GAGTZ,EAAAI,UAAAO,QAAA,SAAQ3B,GACN,IAAM4B,EAAO,IAAIC,EAAS7B,GAa1B,OAXIP,KAAK4B,OACPO,EAAKE,SAAWrC,KAAK6B,KACrB7B,KAAK6B,KAAMnC,KAAOyC,EAClBnC,KAAK6B,KAAOM,IAEZnC,KAAK4B,MAAQO,EACbnC,KAAK6B,KAAOM,GAGdnC,KAAKwB,OAEEW,GAKTZ,EAAAI,UAAAoC,aAAA,SACExB,EACA2B,EACAC,QAAA,IAAAA,IAAAA,EAAAC,GAEA,IAAM/B,EAAWrC,KAAKqE,MAAK,SAAAlC,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAO2D,MAEzD,OAAO7B,EAAWrC,KAAKsC,WAAWC,EAAQF,EAAUA,EAAS3C,MAAQM,KAAKyC,YAAYF,IAKxFhB,EAAAI,UAAAqC,cAAA,SACEzB,EACA+B,EACAH,QAAA,IAAAA,IAAAA,EAAAC,GAEA,IAAM1E,EAAOM,KAAKqE,MAAK,SAAAlC,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAO+D,MAErD,OAAO5E,EAAOM,KAAKsC,WAAWC,EAAQ7C,EAAK2C,SAAU3C,GAAQM,KAAKwC,YAAYD,IAGhFhB,EAAAI,UAAAsC,eAAA,SAAe1B,EAAamB,GAG1B,GAFIA,EAAW,IAAGA,GAAY1D,KAAKwB,MAE/BkC,GAAY,EAAG,OAAO1D,KAAKwC,YAAYD,GAE3C,GAAImB,GAAY1D,KAAKwB,KAAM,OAAOxB,KAAKyC,YAAYF,GAEnD,IAAM7C,EAAOM,KAAKuE,IAAIb,GAEtB,OAAO1D,KAAKsC,WAAWC,EAAQ7C,EAAK2C,SAAU3C,IAGhD6B,EAAAI,UAAAa,YAAA,SAAYD,GAAZ,IAAAS,EAAAhD,KACE,OAAOuC,EAAOiC,aAA2B,SAACC,EAAOlE,GAE/C,OADAkE,EAAMC,QAAQ1B,EAAKf,QAAQ1B,IACpBkE,IACN,KAGLlD,EAAAI,UAAAc,YAAA,SAAYF,GAAZ,IAAAS,EAAAhD,KACE,OAAOuC,EAAOoC,KAAI,SAAApE,GAAS,OAAAyC,EAAKd,QAAQ3B,OAG1CgB,EAAAI,UAAAiD,KAAA,WAAA,IAAA5B,EAAAhD,KACE,MAAO,CACLyD,QAAS,SAACC,GAAqB,OAAAV,EAAK6B,YAAYnB,IAChDoB,QAAS,eAAC,IAAA5B,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACR,OAAAH,EAAK+B,YAAYzB,MAAMN,EAAME,IAC/B8B,WAAY,eAAC,IAAA9B,EAAA,GAAAC,EAAA,EAAAA,EAAA9B,UAAAZ,OAAA0C,IAAAD,EAAAC,GAAA9B,UAAA8B,GACX,OAAAH,EAAKiC,eAAe3B,MAAMN,EAAME,IAClCU,KAAM,WAAM,OAAAZ,EAAKF,YACjBe,KAAM,WAAM,OAAAb,EAAKH,cAIrBtB,EAAAI,UAAAuD,SAAA,SAASC,GAAT,IAAAnC,EAAAhD,KACE,MAAO,CACLyD,QAAS,SAACC,GAAqB,OAAAV,EAAKoC,gBAAgBD,EAAOzB,IAC3DE,KAAM,WAAM,OAAAZ,EAAKqC,aAAaF,IAC9BtB,KAAM,WAAM,OAAAb,EAAKsC,aAAaH,MAIlC5D,EAAAI,UAAAkD,YAAA,SAAYnB,GACNA,EAAW,IAAGA,GAAY1D,KAAKwB,MAEnC,IAAM+D,EAAUvF,KAAKuE,IAAIb,GAEzB,OAAO6B,EAAUvF,KAAK4C,OAAO2C,QAAWC,GAK1CjE,EAAAI,UAAAoD,YAAA,SAAYxE,EAAY4D,QAAA,IAAAA,IAAAA,EAAAC,GACtB,IAAMV,EAAW1D,KAAKyF,WAAU,SAAAtD,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAOA,MAE9D,OAAOmD,EAAW,OAAI8B,EAAYxF,KAAK6E,YAAYnB,IAKrDnC,EAAAI,UAAAsD,eAAA,SAAe1E,EAAY4D,QAAA,IAAAA,IAAAA,EAAAC,GAGzB,IAFA,IAAMsB,EAAyB,GAEtBH,EAAUvF,KAAK4B,MAAO8B,EAAW,EAAG6B,EAAS7B,IAAY6B,EAAUA,EAAQ7F,KAC9EyE,EAAUoB,EAAQhF,MAAOA,IAC3BmF,EAAQhF,KAAKV,KAAK6E,YAAYnB,EAAWgC,EAAQjF,SAIrD,OAAOiF,GAGTnE,EAAAI,UAAAmB,SAAA,WACE,IAAMc,EAAO5D,KAAK4B,MAElB,GAAIgC,EAQF,OAPA5D,KAAK4B,MAAQgC,EAAKlE,KAEdM,KAAK4B,MAAO5B,KAAK4B,MAAMS,cAAWmD,EACjCxF,KAAK6B,UAAO2D,EAEjBxF,KAAKwB,OAEEoC,GAMXrC,EAAAI,UAAAkB,SAAA,WACE,IAAMgB,EAAO7D,KAAK6B,KAElB,GAAIgC,EAQF,OAPA7D,KAAK6B,KAAOgC,EAAKxB,SAEbrC,KAAK6B,KAAM7B,KAAK6B,KAAKnC,UAAO8F,EAC3BxF,KAAK4B,WAAQ4D,EAElBxF,KAAKwB,OAEEqC,GAMXtC,EAAAI,UAAAyD,gBAAA,SAAgBD,EAAezB,GAC7B,GAAIyB,GAAS,EAAG,MAAO,GAEvB,GAAIzB,EAAW,EAAGA,EAAWiC,KAAKC,IAAIlC,EAAW1D,KAAKwB,KAAM,QACvD,GAAIkC,GAAY1D,KAAKwB,KAAM,MAAO,GAEvC2D,EAAQQ,KAAKE,IAAIV,EAAOnF,KAAKwB,KAAOkC,GAIpC,IAFA,IAAMgC,EAAyB,GAExBP,KAAS,CACd,IAAMI,EAAUvF,KAAKuE,IAAIb,GACzBgC,EAAQhF,KAAKV,KAAK4C,OAAO2C,IAG3B,OAAOG,GAGTnE,EAAAI,UAAA0D,aAAA,SAAaF,GACX,GAAIA,GAAS,EAAG,MAAO,GAEvBA,EAAQQ,KAAKE,IAAIV,EAAOnF,KAAKwB,MAI7B,IAFA,IAAMkE,EAAyB,GAExBP,KAASO,EAAQhB,QAAQ1E,KAAK8C,YAErC,OAAO4C,GAGTnE,EAAAI,UAAA2D,aAAA,SAAaH,GACX,GAAIA,GAAS,EAAG,MAAO,GAEvBA,EAAQQ,KAAKE,IAAIV,EAAOnF,KAAKwB,MAI7B,IAFA,IAAMkE,EAAyB,GAExBP,KAASO,EAAQhF,KAAKV,KAAK6C,YAElC,OAAO6C,GAGTnE,EAAAI,UAAA0C,KAAA,SAAKyB,GACH,IAAK,IAAIP,EAAUvF,KAAK4B,MAAO8B,EAAW,EAAG6B,EAAS7B,IAAY6B,EAAUA,EAAQ7F,KAClF,GAAIoG,EAAUP,EAAS7B,EAAU1D,MAAO,OAAOuF,GAMnDhE,EAAAI,UAAA8D,UAAA,SAAUK,GACR,IAAK,IAAIP,EAAUvF,KAAK4B,MAAO8B,EAAW,EAAG6B,EAAS7B,IAAY6B,EAAUA,EAAQ7F,KAClF,GAAIoG,EAAUP,EAAS7B,EAAU1D,MAAO,OAAO0D,EAGjD,OAAQ,GAGVnC,EAAAI,UAAAoE,QAAA,SAAqBC,GACnB,IAAK,IAAI7D,EAAOnC,KAAK4B,MAAO8B,EAAW,EAAGvB,EAAMuB,IAAYvB,EAAOA,EAAKzC,KACtEsG,EAAW7D,EAAMuB,EAAU1D,OAI/BuB,EAAAI,UAAA4C,IAAA,SAAIb,GACF,OAAO1D,KAAKqE,MAAK,SAAChF,EAAG4G,GAAU,OAAAvC,IAAauC,MAK9C1E,EAAAI,UAAAuE,QAAA,SAAQ3F,EAAY4D,GAClB,YADkB,IAAAA,IAAAA,EAAAC,GACXpE,KAAKyF,WAAU,SAAAtD,GAAQ,OAAAgC,EAAUhC,EAAK5B,MAAOA,OAGtDgB,EAAAI,UAAAwE,QAAA,WACE,IAAMC,EAAQ,IAAIC,MAAMrG,KAAKwB,MAI7B,OAFAxB,KAAK+F,SAAQ,SAAC5D,EAAM8D,GAAU,OAACG,EAAMH,GAAU9D,EAAK5B,SAE7C6F,GAGT7E,EAAAI,UAAAgB,YAAA,WACE,IAAMyD,EAAQ,IAAIC,MAAMrG,KAAKwB,MAI7B,OAFAxB,KAAK+F,SAAQ,SAAC5D,EAAM8D,GAAU,OAACG,EAAMH,GAAU9D,KAExCiE,GAGT7E,EAAAI,UAAA2E,SAAA,SAASC,GACP,YADO,IAAAA,IAAAA,EAA4BC,KAAKC,WACjCzG,KAAKmG,UACTxB,KAAI,SAAApE,GAAS,OAAAgG,EAAShG,MACtBmG,KAAK,UAITnF,EAAAI,UAAC7B,OAAOC,UAAT,mEACWoC,EAAOnC,KAAK4B,MAAkB,0BAAGO,EACxC,CAAA,EAAMA,EAAK5B,OADiC,CAAA,EAAA,UAC5C6C,EAAA7D,+BAD0D4C,EAAOA,EAAKzC,iCAI5E6B","sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\r\nthis file except in compliance with the License. You may obtain a copy of the\r\nLicense at http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nTHIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\nKIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\r\nWARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\r\nMERCHANTABLITY OR NON-INFRINGEMENT.\r\n\r\nSee the Apache Version 2.0 License for specific language governing permissions\r\nand limitations under the License.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/* tslint:disable:no-non-null-assertion */\r\n\r\nimport compare from 'just-compare';\r\n\r\nexport class ListNode {\r\n next: ListNode | undefined;\r\n previous: ListNode | undefined;\r\n constructor(public readonly value: T) {}\r\n}\r\n\r\nexport class LinkedList {\r\n private first: ListNode | undefined;\r\n private last: ListNode | undefined;\r\n private size = 0;\r\n\r\n get head(): ListNode | undefined {\r\n return this.first;\r\n }\r\n get tail(): ListNode | undefined {\r\n return this.last;\r\n }\r\n get length(): number {\r\n return this.size;\r\n }\r\n\r\n private attach(\r\n value: T,\r\n previousNode: ListNode | undefined,\r\n nextNode: ListNode | undefined,\r\n ): ListNode {\r\n if (!previousNode) return this.addHead(value);\r\n\r\n if (!nextNode) return this.addTail(value);\r\n\r\n const node = new ListNode(value);\r\n node.previous = previousNode;\r\n previousNode.next = node;\r\n node.next = nextNode;\r\n nextNode.previous = node;\r\n\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n private attachMany(\r\n values: T[],\r\n previousNode: ListNode | undefined,\r\n nextNode: ListNode | undefined,\r\n ): ListNode[] {\r\n if (!values.length) return [];\r\n\r\n if (!previousNode) return this.addManyHead(values);\r\n\r\n if (!nextNode) return this.addManyTail(values);\r\n\r\n const list = new LinkedList();\r\n list.addManyTail(values);\r\n list.first!.previous = previousNode;\r\n previousNode.next = list.first;\r\n list.last!.next = nextNode;\r\n nextNode.previous = list.last;\r\n\r\n this.size += values.length;\r\n\r\n return list.toNodeArray();\r\n }\r\n\r\n private detach(node: ListNode) {\r\n if (!node.previous) return this.dropHead();\r\n\r\n if (!node.next) return this.dropTail();\r\n\r\n node.previous.next = node.next;\r\n node.next.previous = node.previous;\r\n\r\n this.size--;\r\n\r\n return node;\r\n }\r\n\r\n add(value: T) {\r\n return {\r\n after: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addAfter.call(this, value, ...params),\r\n before: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addBefore.call(this, value, ...params),\r\n byIndex: (position: number) => this.addByIndex(value, position),\r\n head: () => this.addHead(value),\r\n tail: () => this.addTail(value),\r\n };\r\n }\r\n\r\n addMany(values: T[]) {\r\n return {\r\n after: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addManyAfter.call(this, values, ...params),\r\n before: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.addManyBefore.call(this, values, ...params),\r\n byIndex: (position: number) => this.addManyByIndex(values, position),\r\n head: () => this.addManyHead(values),\r\n tail: () => this.addManyTail(values),\r\n };\r\n }\r\n\r\n addAfter(value: T, nextValue: T): ListNode;\r\n addAfter(value: T, previousValue: any, compareFn: ListComparisonFn): ListNode;\r\n addAfter(value: T, previousValue: any, compareFn: ListComparisonFn = compare): ListNode {\r\n const previous = this.find(node => compareFn(node.value, previousValue));\r\n\r\n return previous ? this.attach(value, previous, previous.next) : this.addTail(value);\r\n }\r\n\r\n addBefore(value: T, nextValue: T): ListNode;\r\n addBefore(value: T, nextValue: any, compareFn: ListComparisonFn): ListNode;\r\n addBefore(value: T, nextValue: any, compareFn: ListComparisonFn = compare): ListNode {\r\n const next = this.find(node => compareFn(node.value, nextValue));\r\n\r\n return next ? this.attach(value, next.previous, next) : this.addHead(value);\r\n }\r\n\r\n addByIndex(value: T, position: number): ListNode {\r\n if (position < 0) position += this.size;\r\n else if (position >= this.size) return this.addTail(value);\r\n\r\n if (position <= 0) return this.addHead(value);\r\n\r\n const next = this.get(position)!;\r\n\r\n return this.attach(value, next.previous, next);\r\n }\r\n\r\n addHead(value: T): ListNode {\r\n const node = new ListNode(value);\r\n\r\n node.next = this.first;\r\n\r\n if (this.first) this.first.previous = node;\r\n else this.last = node;\r\n\r\n this.first = node;\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n addTail(value: T): ListNode {\r\n const node = new ListNode(value);\r\n\r\n if (this.first) {\r\n node.previous = this.last;\r\n this.last!.next = node;\r\n this.last = node;\r\n } else {\r\n this.first = node;\r\n this.last = node;\r\n }\r\n\r\n this.size++;\r\n\r\n return node;\r\n }\r\n\r\n addManyAfter(values: T[], previousValue: T): ListNode[];\r\n addManyAfter(values: T[], previousValue: any, compareFn: ListComparisonFn): ListNode[];\r\n addManyAfter(\r\n values: T[],\r\n previousValue: any,\r\n compareFn: ListComparisonFn = compare,\r\n ): ListNode[] {\r\n const previous = this.find(node => compareFn(node.value, previousValue));\r\n\r\n return previous ? this.attachMany(values, previous, previous.next) : this.addManyTail(values);\r\n }\r\n\r\n addManyBefore(values: T[], previousValue: T): ListNode[];\r\n addManyBefore(values: T[], nextValue: any, compareFn: ListComparisonFn): ListNode[];\r\n addManyBefore(\r\n values: T[],\r\n nextValue: any,\r\n compareFn: ListComparisonFn = compare,\r\n ): ListNode[] {\r\n const next = this.find(node => compareFn(node.value, nextValue));\r\n\r\n return next ? this.attachMany(values, next.previous, next) : this.addManyHead(values);\r\n }\r\n\r\n addManyByIndex(values: T[], position: number): ListNode[] {\r\n if (position < 0) position += this.size;\r\n\r\n if (position <= 0) return this.addManyHead(values);\r\n\r\n if (position >= this.size) return this.addManyTail(values);\r\n\r\n const next = this.get(position)!;\r\n\r\n return this.attachMany(values, next.previous, next);\r\n }\r\n\r\n addManyHead(values: T[]): ListNode[] {\r\n return values.reduceRight[]>((nodes, value) => {\r\n nodes.unshift(this.addHead(value));\r\n return nodes;\r\n }, []);\r\n }\r\n\r\n addManyTail(values: T[]): ListNode[] {\r\n return values.map(value => this.addTail(value));\r\n }\r\n\r\n drop() {\r\n return {\r\n byIndex: (position: number) => this.dropByIndex(position),\r\n byValue: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.dropByValue.apply(this, params),\r\n byValueAll: (...params: [T] | [any, ListComparisonFn]) =>\r\n this.dropByValueAll.apply(this, params),\r\n head: () => this.dropHead(),\r\n tail: () => this.dropTail(),\r\n };\r\n }\r\n\r\n dropMany(count: number) {\r\n return {\r\n byIndex: (position: number) => this.dropManyByIndex(count, position),\r\n head: () => this.dropManyHead(count),\r\n tail: () => this.dropManyTail(count),\r\n };\r\n }\r\n\r\n dropByIndex(position: number): ListNode | undefined {\r\n if (position < 0) position += this.size;\r\n\r\n const current = this.get(position);\r\n\r\n return current ? this.detach(current) : undefined;\r\n }\r\n\r\n dropByValue(value: T): ListNode | undefined;\r\n dropByValue(value: any, compareFn: ListComparisonFn): ListNode | undefined;\r\n dropByValue(value: any, compareFn: ListComparisonFn = compare): ListNode | undefined {\r\n const position = this.findIndex(node => compareFn(node.value, value));\r\n\r\n return position < 0 ? undefined : this.dropByIndex(position);\r\n }\r\n\r\n dropByValueAll(value: T): ListNode[];\r\n dropByValueAll(value: any, compareFn: ListComparisonFn): ListNode[];\r\n dropByValueAll(value: any, compareFn: ListComparisonFn = compare): ListNode[] {\r\n const dropped: ListNode[] = [];\r\n\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (compareFn(current.value, value)) {\r\n dropped.push(this.dropByIndex(position - dropped.length)!);\r\n }\r\n }\r\n\r\n return dropped;\r\n }\r\n\r\n dropHead(): ListNode | undefined {\r\n const head = this.first;\r\n\r\n if (head) {\r\n this.first = head.next;\r\n\r\n if (this.first) this.first.previous = undefined;\r\n else this.last = undefined;\r\n\r\n this.size--;\r\n\r\n return head;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n dropTail(): ListNode | undefined {\r\n const tail = this.last;\r\n\r\n if (tail) {\r\n this.last = tail.previous;\r\n\r\n if (this.last) this.last.next = undefined;\r\n else this.first = undefined;\r\n\r\n this.size--;\r\n\r\n return tail;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n dropManyByIndex(count: number, position: number): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n if (position < 0) position = Math.max(position + this.size, 0);\r\n else if (position >= this.size) return [];\r\n\r\n count = Math.min(count, this.size - position);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) {\r\n const current = this.get(position);\r\n dropped.push(this.detach(current!)!);\r\n }\r\n\r\n return dropped;\r\n }\r\n\r\n dropManyHead(count: Exclude): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n count = Math.min(count, this.size);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) dropped.unshift(this.dropHead()!);\r\n\r\n return dropped;\r\n }\r\n\r\n dropManyTail(count: Exclude): ListNode[] {\r\n if (count <= 0) return [];\r\n\r\n count = Math.min(count, this.size);\r\n\r\n const dropped: ListNode[] = [];\r\n\r\n while (count--) dropped.push(this.dropTail()!);\r\n\r\n return dropped;\r\n }\r\n\r\n find(predicate: ListIteratorFn): ListNode | undefined {\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (predicate(current, position, this)) return current;\r\n }\r\n\r\n return undefined;\r\n }\r\n\r\n findIndex(predicate: ListIteratorFn): number {\r\n for (let current = this.first, position = 0; current; position++, current = current.next) {\r\n if (predicate(current, position, this)) return position;\r\n }\r\n\r\n return -1;\r\n }\r\n\r\n forEach(iteratorFn: ListIteratorFn) {\r\n for (let node = this.first, position = 0; node; position++, node = node.next) {\r\n iteratorFn(node, position, this);\r\n }\r\n }\r\n\r\n get(position: number): ListNode | undefined {\r\n return this.find((_, index) => position === index);\r\n }\r\n\r\n indexOf(value: T): number;\r\n indexOf(value: any, compareFn: ListComparisonFn): number;\r\n indexOf(value: any, compareFn: ListComparisonFn = compare): number {\r\n return this.findIndex(node => compareFn(node.value, value));\r\n }\r\n\r\n toArray(): T[] {\r\n const array = new Array(this.size);\r\n\r\n this.forEach((node, index) => (array[index!] = node.value));\r\n\r\n return array;\r\n }\r\n\r\n toNodeArray(): ListNode[] {\r\n const array = new Array(this.size);\r\n\r\n this.forEach((node, index) => (array[index!] = node));\r\n\r\n return array;\r\n }\r\n\r\n toString(mapperFn: ListMapperFn = JSON.stringify): string {\r\n return this.toArray()\r\n .map(value => mapperFn(value))\r\n .join(' <-> ');\r\n }\r\n\r\n // Cannot use Generator type because of ng-packagr\r\n *[Symbol.iterator](): any {\r\n for (let node = this.first, position = 0; node; position++, node = node.next) {\r\n yield node.value;\r\n }\r\n }\r\n}\r\n\r\nexport type ListMapperFn = (value: T) => any;\r\n\r\nexport type ListComparisonFn = (value1: T, value2: any) => boolean;\r\n\r\nexport type ListIteratorFn = (\r\n node: ListNode,\r\n index?: number,\r\n list?: LinkedList,\r\n) => R;\r\n"]} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map new file mode 100644 index 000000000..7e08a2104 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["less/datepicker.less","build/build.less"],"names":[],"mappings":"AAAA;EACC,YAAA;ECsBC,0BAAA;EACG,uBAAA;EACK,kBAAA;EDnBT,cAAA;;AAHA,WAAC;EACA,YAAA;;AAGD,WAAC;EACA,cAAA;;AACA,WAFA,IAEC;EAAiB,UAAA;;AAFnB,WAAC,IAGA,MAAM,GAAG,GAAG;EACX,YAAA;;AAGF,WAAC;EACA,MAAA;EACA,OAAA;;AACA,WAHA,SAGC;EACA,SAAS,EAAT;EACA,qBAAA;EACA,kCAAA;EACA,mCAAA;EACA,6BAAA;EACA,aAAA;EACA,uCAAA;EACA,kBAAA;;AAED,WAbA,SAaC;EACA,SAAS,EAAT;EACA,qBAAA;EACA,kCAAA;EACA,mCAAA;EACA,6BAAA;EACA,aAAA;EACA,kBAAA;;AAED,WAtBA,SAsBC,uBAAuB;EAAY,SAAA;;AACpC,WAvBA,SAuBC,uBAAuB;EAAY,SAAA;;AACpC,WAxBA,SAwBC,wBAAwB;EAAW,UAAA;;AACpC,WAzBA,SAyBC,wBAAwB;EAAW,UAAA;;AACpC,WA1BA,SA0BC,yBAAyB;EAAU,SAAA;;AACpC,WA3BA,SA2BC,yBAAyB;EAAU,SAAA;;AACpC,WA5BA,SA4BC,sBAAsB;EACtB,YAAA;EACA,gBAAA;EACA,0BAAA;;AAED,WAjCA,SAiCC,sBAAsB;EACtB,YAAA;EACA,gBAAA;EACA,0BAAA;;AAlDH,WAqDC;EACC,SAAA;EACA,2BAAA;EACA,yBAAA;EACA,wBAAA;EACA,sBAAA;EACA,qBAAA;EACA,iBAAA;;AA5DF,WA8DC;AA9DD,WA8DK;EACH,kBAAA;EACA,WAAA;EACA,YAAA;EC1CA,0BAAA;EACG,uBAAA;EACK,kBAAA;ED2CR,YAAA;;AAID,cAAe,YAAE,MAAM,GACtB;AADD,cAAe,YAAE,MAAM,GAClB;EACH,6BAAA;;AAID,WADD,MAAM,GAAG,GACP,IAAI;AACL,WAFD,MAAM,GAAG,GAEP,IAAI;EACJ,gBAAA;EACA,eAAA;;AAED,WAND,MAAM,GAAG,GAMP;AACD,WAPD,MAAM,GAAG,GAOP;EACA,WAAA;;AAED,WAVD,MAAM,GAAG,GAUP;AACD,WAXD,MAAM,GAAG,GAWP,SAAS;EACT,gBAAA;EACA,WAAA;EACA,eAAA;;AAED,WAhBD,MAAM,GAAG,GAgBP;EACA,mBAAA;EACA,gBAAA;;AAED,WApBD,MAAM,GAAG,GAoBP;AACD,WArBD,MAAM,GAAG,GAqBP,MAAM;AACP,WAtBD,MAAM,GAAG,GAsBP,MAAM;AACP,WAvBD,MAAM,GAAG,GAuBP,MAAM,SAAS;EC5Cd,yBAAA;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,gDAAlB;EACA,kBAAkB,sCAAsC,eAAmB,YAA3E;EACA,kBAAkB,oDAAlB;EACA,kBAAkB,+CAAlB;EACA,kBAAkB,4CAAlB;EACA,2BAAA;EACA,QAAQ,0GAAR;EAfF,qCAAA;EACA,uEAAA;EAPA,QAAQ,yDAAR;ED4DC,WAAA;;ACvED,WD6CD,MAAM,GAAG,GAoBP,MCjEA;AAAD,WD6CD,MAAM,GAAG,GAqBP,MAAM,MClEN;AAAD,WD6CD,MAAM,GAAG,GAsBP,MAAM,SCnEN;AAAD,WD6CD,MAAM,GAAG,GAuBP,MAAM,SAAS,MCpEf;AAAQ,WD6CV,MAAM,GAAG,GAoBP,MCjES;AAAD,WD6CV,MAAM,GAAG,GAqBP,MAAM,MClEG;AAAD,WD6CV,MAAM,GAAG,GAsBP,MAAM,SCnEG;AAAD,WD6CV,MAAM,GAAG,GAuBP,MAAM,SAAS,MCpEN;AAAS,WD6CpB,MAAM,GAAG,GAoBP,MCjEmB;AAAD,WD6CpB,MAAM,GAAG,GAqBP,MAAM,MClEa;AAAD,WD6CpB,MAAM,GAAG,GAsBP,MAAM,SCnEa;AAAD,WD6CpB,MAAM,GAAG,GAuBP,MAAM,SAAS,MCpEI;AAAS,WD6C9B,MAAM,GAAG,GAoBP,MCjE6B;AAAD,WD6C9B,MAAM,GAAG,GAqBP,MAAM,MClEuB;AAAD,WD6C9B,MAAM,GAAG,GAsBP,MAAM,SCnEuB;AAAD,WD6C9B,MAAM,GAAG,GAuBP,MAAM,SAAS,MCpEc;AAAW,WD6C1C,MAAM,GAAG,GAoBP,MCjEyC;AAAD,WD6C1C,MAAM,GAAG,GAqBP,MAAM,MClEmC;AAAD,WD6C1C,MAAM,GAAG,GAsBP,MAAM,SCnEmC;AAAD,WD6C1C,MAAM,GAAG,GAuBP,MAAM,SAAS,MCpE0B;EACxC,yBAAA;;AAEF,WD0CD,MAAM,GAAG,GAoBP,MC9DA;AAAD,WD0CD,MAAM,GAAG,GAqBP,MAAM,MC/DN;AAAD,WD0CD,MAAM,GAAG,GAsBP,MAAM,SChEN;AAAD,WD0CD,MAAM,GAAG,GAuBP,MAAM,SAAS,MCjEf;AACD,WDyCD,MAAM,GAAG,GAoBP,MC7DA;AAAD,WDyCD,MAAM,GAAG,GAqBP,MAAM,MC9DN;AAAD,WDyCD,MAAM,GAAG,GAsBP,MAAM,SC/DN;AAAD,WDyCD,MAAM,GAAG,GAuBP,MAAM,SAAS,MChEf;EACC,0BAAyC,EAAzC;;ADoEF,WA5BD,MAAM,GAAG,GA4BP,MAAM,MAAM;EAEZ,WAAA;;AAED,WAhCD,MAAM,GAAG,GAgCP,MAAM,OAAO;EACb,WAAA;;AAED,WAnCD,MAAM,GAAG,GAmCP;AACD,WApCD,MAAM,GAAG,GAoCP,MAAM;AACP,WArCD,MAAM,GAAG,GAqCP,MAAM;AACP,WAtCD,MAAM,GAAG,GAsCP,MAAM,SAAS;EACf,gBAAA;EC7FD,wBAAA;EACG,qBAAA;EACK,gBAAA;;AD8FR,WA1CD,MAAM,GAAG,GA0CP,MAAM;AACP,WA3CD,MAAM,GAAG,GA2CP,MAAM,MAAM;AACb,WA5CD,MAAM,GAAG,GA4CP,MAAM,MAAM;AACb,WA7CD,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS;EClEpB,yBAAA;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,gDAAlB;EACA,kBAAkB,sCAAsC,eAAmB,YAA3E;EACA,kBAAkB,oDAAlB;EACA,kBAAkB,+CAAlB;EACA,kBAAkB,4CAAlB;EACA,2BAAA;EACA,QAAQ,0GAAR;EAfF,qCAAA;EACA,uEAAA;EAPA,QAAQ,yDAAR;EApBA,wBAAA;EACG,qBAAA;EACK,gBAAA;;AAOR,WD6CD,MAAM,GAAG,GA0CP,MAAM,MCvFN;AAAD,WD6CD,MAAM,GAAG,GA2CP,MAAM,MAAM,MCxFZ;AAAD,WD6CD,MAAM,GAAG,GA4CP,MAAM,MAAM,SCzFZ;AAAD,WD6CD,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MC1FrB;AAAQ,WD6CV,MAAM,GAAG,GA0CP,MAAM,MCvFG;AAAD,WD6CV,MAAM,GAAG,GA2CP,MAAM,MAAM,MCxFH;AAAD,WD6CV,MAAM,GAAG,GA4CP,MAAM,MAAM,SCzFH;AAAD,WD6CV,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MC1FZ;AAAS,WD6CpB,MAAM,GAAG,GA0CP,MAAM,MCvFa;AAAD,WD6CpB,MAAM,GAAG,GA2CP,MAAM,MAAM,MCxFO;AAAD,WD6CpB,MAAM,GAAG,GA4CP,MAAM,MAAM,SCzFO;AAAD,WD6CpB,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MC1FF;AAAS,WD6C9B,MAAM,GAAG,GA0CP,MAAM,MCvFuB;AAAD,WD6C9B,MAAM,GAAG,GA2CP,MAAM,MAAM,MCxFiB;AAAD,WD6C9B,MAAM,GAAG,GA4CP,MAAM,MAAM,SCzFiB;AAAD,WD6C9B,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MC1FQ;AAAW,WD6C1C,MAAM,GAAG,GA0CP,MAAM,MCvFmC;AAAD,WD6C1C,MAAM,GAAG,GA2CP,MAAM,MAAM,MCxF6B;AAAD,WD6C1C,MAAM,GAAG,GA4CP,MAAM,MAAM,SCzF6B;AAAD,WD6C1C,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MC1FoB;EACxC,yBAAA;;AAEF,WD0CD,MAAM,GAAG,GA0CP,MAAM,MCpFN;AAAD,WD0CD,MAAM,GAAG,GA2CP,MAAM,MAAM,MCrFZ;AAAD,WD0CD,MAAM,GAAG,GA4CP,MAAM,MAAM,SCtFZ;AAAD,WD0CD,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MCvFrB;AACD,WDyCD,MAAM,GAAG,GA0CP,MAAM,MCnFN;AAAD,WDyCD,MAAM,GAAG,GA2CP,MAAM,MAAM,MCpFZ;AAAD,WDyCD,MAAM,GAAG,GA4CP,MAAM,MAAM,SCrFZ;AAAD,WDyCD,MAAM,GAAG,GA6CP,MAAM,MAAM,SAAS,MCtFrB;EACC,0BAAyC,EAAzC;;AD0FF,WAlDD,MAAM,GAAG,GAkDP;AACD,WAnDD,MAAM,GAAG,GAmDP,SAAS;AACV,WApDD,MAAM,GAAG,GAoDP,SAAS;AACV,WArDD,MAAM,GAAG,GAqDP,SAAS,SAAS;EC1EjB,yBAAA;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,gDAAlB;EACA,kBAAkB,sCAAsC,eAAmB,YAA3E;EACA,kBAAkB,oDAAlB;EACA,kBAAkB,+CAAlB;EACA,kBAAkB,4CAAlB;EACA,2BAAA;EACA,QAAQ,0GAAR;EAfF,qCAAA;EACA,uEAAA;EAPA,QAAQ,yDAAR;EDyFC,WAAA;EACA,yCAAA;;ACrGD,WD6CD,MAAM,GAAG,GAkDP,SC/FA;AAAD,WD6CD,MAAM,GAAG,GAmDP,SAAS,MChGT;AAAD,WD6CD,MAAM,GAAG,GAoDP,SAAS,SCjGT;AAAD,WD6CD,MAAM,GAAG,GAqDP,SAAS,SAAS,MClGlB;AAAQ,WD6CV,MAAM,GAAG,GAkDP,SC/FS;AAAD,WD6CV,MAAM,GAAG,GAmDP,SAAS,MChGA;AAAD,WD6CV,MAAM,GAAG,GAoDP,SAAS,SCjGA;AAAD,WD6CV,MAAM,GAAG,GAqDP,SAAS,SAAS,MClGT;AAAS,WD6CpB,MAAM,GAAG,GAkDP,SC/FmB;AAAD,WD6CpB,MAAM,GAAG,GAmDP,SAAS,MChGU;AAAD,WD6CpB,MAAM,GAAG,GAoDP,SAAS,SCjGU;AAAD,WD6CpB,MAAM,GAAG,GAqDP,SAAS,SAAS,MClGC;AAAS,WD6C9B,MAAM,GAAG,GAkDP,SC/F6B;AAAD,WD6C9B,MAAM,GAAG,GAmDP,SAAS,MChGoB;AAAD,WD6C9B,MAAM,GAAG,GAoDP,SAAS,SCjGoB;AAAD,WD6C9B,MAAM,GAAG,GAqDP,SAAS,SAAS,MClGW;AAAW,WD6C1C,MAAM,GAAG,GAkDP,SC/FyC;AAAD,WD6C1C,MAAM,GAAG,GAmDP,SAAS,MChGgC;AAAD,WD6C1C,MAAM,GAAG,GAoDP,SAAS,SCjGgC;AAAD,WD6C1C,MAAM,GAAG,GAqDP,SAAS,SAAS,MClGuB;EACxC,yBAAA;;AAEF,WD0CD,MAAM,GAAG,GAkDP,SC5FA;AAAD,WD0CD,MAAM,GAAG,GAmDP,SAAS,MC7FT;AAAD,WD0CD,MAAM,GAAG,GAoDP,SAAS,SC9FT;AAAD,WD0CD,MAAM,GAAG,GAqDP,SAAS,SAAS,MC/FlB;AACD,WDyCD,MAAM,GAAG,GAkDP,SC3FA;AAAD,WDyCD,MAAM,GAAG,GAmDP,SAAS,MC5FT;AAAD,WDyCD,MAAM,GAAG,GAoDP,SAAS,SC7FT;AAAD,WDyCD,MAAM,GAAG,GAqDP,SAAS,SAAS,MC9FlB;EACC,0BAAyC,EAAzC;;ADkGF,WA1DD,MAAM,GAAG,GA0DP;AACD,WA3DD,MAAM,GAAG,GA2DP,OAAO;AACR,WA5DD,MAAM,GAAG,GA4DP,OAAO;AACR,WA7DD,MAAM,GAAG,GA6DP,OAAO,SAAS;EClFf,yBAAA;EACA,kBAAkB,8CAAlB;EACA,kBAAkB,6CAAlB;EACA,kBAAkB,sCAAsC,YAAmB,YAA3E;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,4CAAlB;EACA,kBAAkB,yCAAlB;EACA,2BAAA;EACA,QAAQ,uGAAR;EAfF,qCAAA;EACA,uEAAA;EAPA,QAAQ,yDAAR;EDiGC,WAAA;EACA,yCAAA;;AC7GD,WD6CD,MAAM,GAAG,GA0DP,OCvGA;AAAD,WD6CD,MAAM,GAAG,GA2DP,OAAO,MCxGP;AAAD,WD6CD,MAAM,GAAG,GA4DP,OAAO,SCzGP;AAAD,WD6CD,MAAM,GAAG,GA6DP,OAAO,SAAS,MC1GhB;AAAQ,WD6CV,MAAM,GAAG,GA0DP,OCvGS;AAAD,WD6CV,MAAM,GAAG,GA2DP,OAAO,MCxGE;AAAD,WD6CV,MAAM,GAAG,GA4DP,OAAO,SCzGE;AAAD,WD6CV,MAAM,GAAG,GA6DP,OAAO,SAAS,MC1GP;AAAS,WD6CpB,MAAM,GAAG,GA0DP,OCvGmB;AAAD,WD6CpB,MAAM,GAAG,GA2DP,OAAO,MCxGY;AAAD,WD6CpB,MAAM,GAAG,GA4DP,OAAO,SCzGY;AAAD,WD6CpB,MAAM,GAAG,GA6DP,OAAO,SAAS,MC1GG;AAAS,WD6C9B,MAAM,GAAG,GA0DP,OCvG6B;AAAD,WD6C9B,MAAM,GAAG,GA2DP,OAAO,MCxGsB;AAAD,WD6C9B,MAAM,GAAG,GA4DP,OAAO,SCzGsB;AAAD,WD6C9B,MAAM,GAAG,GA6DP,OAAO,SAAS,MC1Ga;AAAW,WD6C1C,MAAM,GAAG,GA0DP,OCvGyC;AAAD,WD6C1C,MAAM,GAAG,GA2DP,OAAO,MCxGkC;AAAD,WD6C1C,MAAM,GAAG,GA4DP,OAAO,SCzGkC;AAAD,WD6C1C,MAAM,GAAG,GA6DP,OAAO,SAAS,MC1GyB;EACxC,yBAAA;;AAEF,WD0CD,MAAM,GAAG,GA0DP,OCpGA;AAAD,WD0CD,MAAM,GAAG,GA2DP,OAAO,MCrGP;AAAD,WD0CD,MAAM,GAAG,GA4DP,OAAO,SCtGP;AAAD,WD0CD,MAAM,GAAG,GA6DP,OAAO,SAAS,MCvGhB;AACD,WDyCD,MAAM,GAAG,GA0DP,OCnGA;AAAD,WDyCD,MAAM,GAAG,GA2DP,OAAO,MCpGP;AAAD,WDyCD,MAAM,GAAG,GA4DP,OAAO,SCrGP;AAAD,WDyCD,MAAM,GAAG,GA6DP,OAAO,SAAS,MCtGhB;EACC,0BAAyC,EAAzC;;ADrCJ,WA6EC,MAAM,GAAG,GAkER;EACC,cAAA;EACA,UAAA;EACA,YAAA;EACA,iBAAA;EACA,WAAA;EACA,UAAA;EACA,eAAA;EC/HD,0BAAA;EACG,uBAAA;EACK,kBAAA;;AD+HP,WA3EF,MAAM,GAAG,GAkER,KASE;AACD,WA5EF,MAAM,GAAG,GAkER,KAUE;EACA,gBAAA;;AAED,WA/EF,MAAM,GAAG,GAkER,KAaE;AACD,WAhFF,MAAM,GAAG,GAkER,KAcE,SAAS;EACT,gBAAA;EACA,WAAA;EACA,eAAA;;AAED,WArFF,MAAM,GAAG,GAkER,KAmBE;AACD,WAtFF,MAAM,GAAG,GAkER,KAoBE,OAAO;AACR,WAvFF,MAAM,GAAG,GAkER,KAqBE,OAAO;AACR,WAxFF,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS;EC7GhB,yBAAA;EACA,kBAAkB,8CAAlB;EACA,kBAAkB,6CAAlB;EACA,kBAAkB,sCAAsC,YAAmB,YAA3E;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,4CAAlB;EACA,kBAAkB,yCAAlB;EACA,2BAAA;EACA,QAAQ,uGAAR;EAfF,qCAAA;EACA,uEAAA;EAPA,QAAQ,yDAAR;ED4HE,WAAA;EACA,yCAAA;;ACxIF,WD6CD,MAAM,GAAG,GAkER,KAmBE,OClID;AAAD,WD6CD,MAAM,GAAG,GAkER,KAoBE,OAAO,MCnIR;AAAD,WD6CD,MAAM,GAAG,GAkER,KAqBE,OAAO,SCpIR;AAAD,WD6CD,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCrIjB;AAAQ,WD6CV,MAAM,GAAG,GAkER,KAmBE,OClIQ;AAAD,WD6CV,MAAM,GAAG,GAkER,KAoBE,OAAO,MCnIC;AAAD,WD6CV,MAAM,GAAG,GAkER,KAqBE,OAAO,SCpIC;AAAD,WD6CV,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCrIR;AAAS,WD6CpB,MAAM,GAAG,GAkER,KAmBE,OClIkB;AAAD,WD6CpB,MAAM,GAAG,GAkER,KAoBE,OAAO,MCnIW;AAAD,WD6CpB,MAAM,GAAG,GAkER,KAqBE,OAAO,SCpIW;AAAD,WD6CpB,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCrIE;AAAS,WD6C9B,MAAM,GAAG,GAkER,KAmBE,OClI4B;AAAD,WD6C9B,MAAM,GAAG,GAkER,KAoBE,OAAO,MCnIqB;AAAD,WD6C9B,MAAM,GAAG,GAkER,KAqBE,OAAO,SCpIqB;AAAD,WD6C9B,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCrIY;AAAW,WD6C1C,MAAM,GAAG,GAkER,KAmBE,OClIwC;AAAD,WD6C1C,MAAM,GAAG,GAkER,KAoBE,OAAO,MCnIiC;AAAD,WD6C1C,MAAM,GAAG,GAkER,KAqBE,OAAO,SCpIiC;AAAD,WD6C1C,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCrIwB;EACxC,yBAAA;;AAEF,WD0CD,MAAM,GAAG,GAkER,KAmBE,OC/HD;AAAD,WD0CD,MAAM,GAAG,GAkER,KAoBE,OAAO,MChIR;AAAD,WD0CD,MAAM,GAAG,GAkER,KAqBE,OAAO,SCjIR;AAAD,WD0CD,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MClIjB;AACD,WDyCD,MAAM,GAAG,GAkER,KAmBE,OC9HD;AAAD,WDyCD,MAAM,GAAG,GAkER,KAoBE,OAAO,MC/HR;AAAD,WDyCD,MAAM,GAAG,GAkER,KAqBE,OAAO,SChIR;AAAD,WDyCD,MAAM,GAAG,GAkER,KAsBE,OAAO,SAAS,MCjIjB;EACC,0BAAyC,EAAzC;;ADqID,WA7FF,MAAM,GAAG,GAkER,KA2BE;AACD,WA9FF,MAAM,GAAG,GAkER,KA4BE;EACA,WAAA;;AA5KJ,WAiLC;EACC,YAAA;;AAlLF,WAqLC;AArLD,WAsLC;AAtLD,WAuLC;AAvLD,WAwLC,MAAM,GAAG;EACR,eAAA;;AACA,WALD,mBAKE;AAAD,WAJD,MAIE;AAAD,WAHD,MAGE;AAAD,WAFD,MAAM,GAAG,GAEP;EACA,gBAAA;;AAKD,WADD,MACE;AAAD,WADM,MACL;EACA,kBAAA;;AAjMH,WAsMC;EACC,eAAA;EACA,WAAA;EACA,oBAAA;EACA,sBAAA;;AAKD,aAAC,KAAM;AAAP,cAAC,KAAM;EACN,eAAA;;AADD,aAAC,KAAM,QAGN;AAHD,cAAC,KAAM,QAGN;EACC,eAAA;;AAIH,gBACC;EACC,kBAAA;;AAFF,gBAIC,MAAK;ECpMJ,kCAAA;EACG,+BAAA;EACK,0BAAA;;AD8LV,gBAOC,MAAK;ECvMJ,kCAAA;EACG,+BAAA;EACK,0BAAA;;AD8LV,gBAUC;EACC,qBAAA;EACA,WAAA;EACA,eAAA;EACA,YAAA;EACA,gBAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,yBAAA;EACA,sBAAA;EACA,sBAAA;EACA,sBAAA;EACA,iBAAA;EACA,kBAAA","sourcesContent":[".datepicker {\n\tpadding: 4px;\n\t.border-radius(@baseBorderRadius);\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left: 7px solid transparent;\n\t\t\tborder-right: 7px solid transparent;\n\t\t\tborder-bottom: 7px solid @grayLight;\n\t\t\tborder-top: 0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left: 6px solid transparent;\n\t\t\tborder-right: 6px solid transparent;\n\t\t\tborder-bottom: 6px solid @white;\n\t\t\tborder-top: 0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before { left: 6px; }\n\t\t&.datepicker-orient-left:after { left: 7px; }\n\t\t&.datepicker-orient-right:before { right: 6px; }\n\t\t&.datepicker-orient-right:after { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top: 7px solid @grayLight;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top: 6px solid @white;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t}\n\ttd, th {\n\t\ttext-align: center;\n\t\twidth: 20px;\n\t\theight: 20px;\n\t\t.border-radius(4px);\n\n\t\tborder: none;\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.day:hover,\n\t\t&.day.focused {\n\t\t\tbackground: @grayLighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @grayLight;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @grayLight;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\tbackground: @infoBackground;\n\t\t\tborder-radius: 0;\n\t\t}\n\t\t&.today,\n\t\t&.today:hover,\n\t\t&.today.disabled,\n\t\t&.today.disabled:hover {\n\t\t\t@todayBackground: lighten(@orange, 30%);\n\t\t\t.buttonBackground(@todayBackground, spin(@todayBackground, 20));\n\t\t\tcolor: #000;\n\t\t}\n\t\t&.today:hover:hover { // Thank bootstrap 2.0 for this selector...\n\t\t\t// TODO: Bump min BS to 2.1, use @textColor in buttonBackground above\n\t\t\tcolor: #000;\n\t\t}\n\t\t&.today.active:hover {\n\t\t\tcolor: #fff;\n\t\t}\n\t\t&.range,\n\t\t&.range:hover,\n\t\t&.range.disabled,\n\t\t&.range.disabled:hover {\n\t\t\tbackground: @grayLighter;\n\t\t\t.border-radius(0);\n\t\t}\n\t\t&.range.today,\n\t\t&.range.today:hover,\n\t\t&.range.today.disabled,\n\t\t&.range.today.disabled:hover {\n\t\t\t@todayBackground: mix(@orange, @grayLighter, 50%);\n\t\t\t.buttonBackground(@todayBackground, spin(@todayBackground, 20));\n\t\t\t.border-radius(0);\n\t\t}\n\t\t&.selected,\n\t\t&.selected:hover,\n\t\t&.selected.disabled,\n\t\t&.selected.disabled:hover {\n\t\t\t.buttonBackground(lighten(@grayLight, 10), darken(@grayLight, 10));\n\t\t\tcolor: #fff;\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active:hover,\n\t\t&.active.disabled,\n\t\t&.active.disabled:hover {\n\t\t\t.buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20));\n\t\t\tcolor: #fff;\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\t.border-radius(4px);\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @grayLighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @grayLight;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20));\n\t\t\t\tcolor: #fff;\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @grayLight;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @grayLighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-append,\n.input-prepend {\n\t&.date .add-on {\n\t\tcursor: pointer;\n\n\t\ti {\n\t\t\tmargin-top: 3px;\n\t\t}\n\t}\n}\n.input-daterange {\n\tinput {\n\t\ttext-align:center;\n\t}\n\tinput:first-child {\n\t\t.border-radius(3px 0 0 3px);\n\t}\n\tinput:last-child {\n\t\t.border-radius(0 3px 3px 0);\n\t}\n\t.add-on {\n\t\tdisplay: inline-block;\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\theight: @baseLineHeight;\n\t\tpadding: 4px 5px;\n\t\tfont-weight: normal;\n\t\tline-height: @baseLineHeight;\n\t\ttext-align: center;\n\t\ttext-shadow: 0 1px 0 @white;\n\t\tvertical-align: middle;\n\t\tbackground-color: @grayLighter;\n\t\tborder: 1px solid #ccc;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Datepicker .less buildfile. Includes select mixins/variables from bootstrap\n// and imports the included datepicker.less to output a minimal datepicker.css\n//\n// Usage:\n// lessc build.less datepicker.css\n//\n// Variables and mixins copied from bootstrap 2.0.2\n\n// Variables\n@grayLight: #999;\n@grayLighter: #eee;\n@white: #fff;\n@linkColor: #08c;\n@btnPrimaryBackground: @linkColor;\n@orange: #f89406;\n@infoBackground: #d9edf7;\n@baseLineHeight: 18px;\n@baseBorderRadius: 4px;\n\n// Mixins\n\n// Border Radius\n.border-radius(@radius: 5px) {\n -webkit-border-radius: @radius;\n -moz-border-radius: @radius;\n border-radius: @radius;\n}\n\n// Button backgrounds\n.buttonBackground(@startColor, @endColor) {\n .gradientBar(@startColor, @endColor);\n .reset-filter();\n &:hover, &:active, &.active, &.disabled, &[disabled] {\n background-color: @endColor;\n }\n &:active,\n &.active {\n background-color: darken(@endColor, 10%) e(\"\\9\");\n }\n}\n\n// Reset filters for IE\n.reset-filter() {\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n\n// Gradient Bar Colors for buttons and alerts\n.gradientBar(@primaryColor, @secondaryColor) {\n #gradient > .vertical(@primaryColor, @secondaryColor);\n border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);\n border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);\n}\n\n// Gradients\n#gradient {\n .vertical(@startColor: #555, @endColor: #333) {\n background-color: mix(@startColor, @endColor, 60%);\n background-image: -moz-linear-gradient(to bottom, @startColor, @endColor); // FF 3.6+\n background-image: -ms-linear-gradient(to bottom, @startColor, @endColor); // IE10\n background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+\n background-image: -webkit-linear-gradient(to bottom, @startColor, @endColor); // Safari 5.1+, Chrome 10+\n background-image: -o-linear-gradient(to bottom, @startColor, @endColor); // Opera 11.10\n background-image: linear-gradient(to bottom, @startColor, @endColor); // The standard\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",@startColor,@endColor)); // IE9 and down\n }\n}\n\n@import \"../less/datepicker.less\";\n"]} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css new file mode 100644 index 000000000..eb681513f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css @@ -0,0 +1,7 @@ +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ + +.datepicker{padding:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-color:#fde19a;background-image:-moz-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-ms-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));background-image:-webkit-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-o-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color:#fdf59a}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:-moz-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-ms-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));background-image:-webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-o-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:-moz-linear-gradient(to bottom,#b3b3b3,grey);background-image:-ms-linear-gradient(to bottom,#b3b3b3,grey);background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));background-image:-webkit-linear-gradient(to bottom,#b3b3b3,grey);background-image:-o-linear-gradient(to bottom,#b3b3b3,grey);background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color:#04c}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.input-daterange input{text-align:center}.input-daterange input:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-daterange input:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-daterange .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px} \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js new file mode 100644 index 000000000..8800106e8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js @@ -0,0 +1,8 @@ +/*! + * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) + * + * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) + */ + +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a,b){function c(){return new Date(Date.UTC.apply(Date,arguments))}function d(){var a=new Date;return c(a.getFullYear(),a.getMonth(),a.getDate())}function e(a,b){return a.getUTCFullYear()===b.getUTCFullYear()&&a.getUTCMonth()===b.getUTCMonth()&&a.getUTCDate()===b.getUTCDate()}function f(c,d){return function(){return d!==b&&a.fn.datepicker.deprecated(d),this[c].apply(this,arguments)}}function g(a){return a&&!isNaN(a.getTime())}function h(b,c){function d(a,b){return b.toLowerCase()}var e,f=a(b).data(),g={},h=new RegExp("^"+c.toLowerCase()+"([A-Z])");c=new RegExp("^"+c.toLowerCase());for(var i in f)c.test(i)&&(e=i.replace(h,d),g[e]=f[i]);return g}function i(b){var c={};if(q[b]||(b=b.split("-")[0],q[b])){var d=q[b];return a.each(p,function(a,b){b in d&&(c[b]=d[b])}),c}}var j=function(){var b={get:function(a){return this.slice(a)[0]},contains:function(a){for(var b=a&&a.valueOf(),c=0,d=this.length;c]/g)||[]).length<=0)return!0;return a(c).length>0}catch(a){return!1}},_process_options:function(b){this._o=a.extend({},this._o,b);var e=this.o=a.extend({},this._o),f=e.language;q[f]||(f=f.split("-")[0],q[f]||(f=o.language)),e.language=f,e.startView=this._resolveViewName(e.startView),e.minViewMode=this._resolveViewName(e.minViewMode),e.maxViewMode=this._resolveViewName(e.maxViewMode),e.startView=Math.max(this.o.minViewMode,Math.min(this.o.maxViewMode,e.startView)),!0!==e.multidate&&(e.multidate=Number(e.multidate)||!1,!1!==e.multidate&&(e.multidate=Math.max(0,e.multidate))),e.multidateSeparator=String(e.multidateSeparator),e.weekStart%=7,e.weekEnd=(e.weekStart+6)%7;var g=r.parseFormat(e.format);e.startDate!==-1/0&&(e.startDate?e.startDate instanceof Date?e.startDate=this._local_to_utc(this._zero_time(e.startDate)):e.startDate=r.parseDate(e.startDate,g,e.language,e.assumeNearbyYear):e.startDate=-1/0),e.endDate!==1/0&&(e.endDate?e.endDate instanceof Date?e.endDate=this._local_to_utc(this._zero_time(e.endDate)):e.endDate=r.parseDate(e.endDate,g,e.language,e.assumeNearbyYear):e.endDate=1/0),e.daysOfWeekDisabled=this._resolveDaysOfWeek(e.daysOfWeekDisabled||[]),e.daysOfWeekHighlighted=this._resolveDaysOfWeek(e.daysOfWeekHighlighted||[]),e.datesDisabled=e.datesDisabled||[],a.isArray(e.datesDisabled)||(e.datesDisabled=e.datesDisabled.split(",")),e.datesDisabled=a.map(e.datesDisabled,function(a){return r.parseDate(a,g,e.language,e.assumeNearbyYear)});var h=String(e.orientation).toLowerCase().split(/\s+/g),i=e.orientation.toLowerCase();if(h=a.grep(h,function(a){return/^auto|left|right|top|bottom$/.test(a)}),e.orientation={x:"auto",y:"auto"},i&&"auto"!==i)if(1===h.length)switch(h[0]){case"top":case"bottom":e.orientation.y=h[0];break;case"left":case"right":e.orientation.x=h[0]}else i=a.grep(h,function(a){return/^left|right$/.test(a)}),e.orientation.x=i[0]||"auto",i=a.grep(h,function(a){return/^top|bottom$/.test(a)}),e.orientation.y=i[0]||"auto";else;if(e.defaultViewDate instanceof Date||"string"==typeof e.defaultViewDate)e.defaultViewDate=r.parseDate(e.defaultViewDate,g,e.language,e.assumeNearbyYear);else if(e.defaultViewDate){var j=e.defaultViewDate.year||(new Date).getFullYear(),k=e.defaultViewDate.month||0,l=e.defaultViewDate.day||1;e.defaultViewDate=c(j,k,l)}else e.defaultViewDate=d()},_applyEvents:function(a){for(var c,d,e,f=0;fe?(this.picker.addClass("datepicker-orient-right"),m+=l-b):this.o.rtl?this.picker.addClass("datepicker-orient-right"):this.picker.addClass("datepicker-orient-left");var o,p=this.o.orientation.y;if("auto"===p&&(o=-f+n-c,p=o<0?"bottom":"top"),this.picker.addClass("datepicker-orient-"+p),"top"===p?n-=c+parseInt(this.picker.css("padding-top")):n+=k,this.o.rtl){var q=e-(m+l);this.picker.css({top:n,right:q,zIndex:i})}else this.picker.css({top:n,left:m,zIndex:i});return this},_allow_update:!0,update:function(){if(!this._allow_update)return this;var b=this.dates.copy(),c=[],d=!1;return arguments.length?(a.each(arguments,a.proxy(function(a,b){b instanceof Date&&(b=this._local_to_utc(b)),c.push(b)},this)),d=!0):(c=this.isInput?this.element.val():this.element.data("date")||this.inputField.val(),c=c&&this.o.multidate?c.split(this.o.multidateSeparator):[c],delete this.element.data().date),c=a.map(c,a.proxy(function(a){return r.parseDate(a,this.o.format,this.o.language,this.o.assumeNearbyYear)},this)),c=a.grep(c,a.proxy(function(a){return!this.dateWithinRange(a)||!a},this),!0),this.dates.replace(c),this.o.updateViewDate&&(this.dates.length?this.viewDate=new Date(this.dates.get(-1)):this.viewDatethis.o.endDate?this.viewDate=new Date(this.o.endDate):this.viewDate=this.o.defaultViewDate),d?(this.setValue(),this.element.change()):this.dates.length&&String(b)!==String(this.dates)&&d&&(this._trigger("changeDate"),this.element.change()),!this.dates.length&&b.length&&(this._trigger("clearDate"),this.element.change()),this.fill(),this},fillDow:function(){if(this.o.showWeekDays){var b=this.o.weekStart,c="";for(this.o.calendarWeeks&&(c+=' ');b";c+="",this.picker.find(".datepicker-days thead").append(c)}},fillMonths:function(){for(var a,b=this._utc_to_local(this.viewDate),c="",d=0;d<12;d++)a=b&&b.getMonth()===d?" focused":"",c+=''+q[this.o.language].monthsShort[d]+"";this.picker.find(".datepicker-months td").html(c)},setRange:function(b){b&&b.length?this.range=a.map(b,function(a){return a.valueOf()}):delete this.range,this.fill()},getClassNames:function(b){var c=[],f=this.viewDate.getUTCFullYear(),g=this.viewDate.getUTCMonth(),h=d();return b.getUTCFullYear()f||b.getUTCFullYear()===f&&b.getUTCMonth()>g)&&c.push("new"),this.focusDate&&b.valueOf()===this.focusDate.valueOf()&&c.push("focused"),this.o.todayHighlight&&e(b,h)&&c.push("today"),-1!==this.dates.contains(b)&&c.push("active"),this.dateWithinRange(b)||c.push("disabled"),this.dateIsDisabled(b)&&c.push("disabled","disabled-date"),-1!==a.inArray(b.getUTCDay(),this.o.daysOfWeekHighlighted)&&c.push("highlighted"),this.range&&(b>this.range[0]&&bh)&&j.push("disabled"),t===r&&j.push("focused"),i!==a.noop&&(l=i(new Date(t,0,1)),l===b?l={}:"boolean"==typeof l?l={enabled:l}:"string"==typeof l&&(l={classes:l}),!1===l.enabled&&j.push("disabled"),l.classes&&(j=j.concat(l.classes.split(/\s+/))),l.tooltip&&(k=l.tooltip)),m+='"+t+"";o.find(".datepicker-switch").text(p+"-"+q),o.find("td").html(m)},fill:function(){var e,f,g=new Date(this.viewDate),h=g.getUTCFullYear(),i=g.getUTCMonth(),j=this.o.startDate!==-1/0?this.o.startDate.getUTCFullYear():-1/0,k=this.o.startDate!==-1/0?this.o.startDate.getUTCMonth():-1/0,l=this.o.endDate!==1/0?this.o.endDate.getUTCFullYear():1/0,m=this.o.endDate!==1/0?this.o.endDate.getUTCMonth():1/0,n=q[this.o.language].today||q.en.today||"",o=q[this.o.language].clear||q.en.clear||"",p=q[this.o.language].titleFormat||q.en.titleFormat,s=d(),t=(!0===this.o.todayBtn||"linked"===this.o.todayBtn)&&s>=this.o.startDate&&s<=this.o.endDate&&!this.weekOfDateIsDisabled(s);if(!isNaN(h)&&!isNaN(i)){this.picker.find(".datepicker-days .datepicker-switch").text(r.formatDate(g,p,this.o.language)),this.picker.find("tfoot .today").text(n).css("display",t?"table-cell":"none"),this.picker.find("tfoot .clear").text(o).css("display",!0===this.o.clearBtn?"table-cell":"none"),this.picker.find("thead .datepicker-title").text(this.o.title).css("display","string"==typeof this.o.title&&""!==this.o.title?"table-cell":"none"),this.updateNavArrows(),this.fillMonths();var u=c(h,i,0),v=u.getUTCDate();u.setUTCDate(v-(u.getUTCDay()-this.o.weekStart+7)%7);var w=new Date(u);u.getUTCFullYear()<100&&w.setUTCFullYear(u.getUTCFullYear()),w.setUTCDate(w.getUTCDate()+42),w=w.valueOf();for(var x,y,z=[];u.valueOf()"),this.o.calendarWeeks)){var A=new Date(+u+(this.o.weekStart-x-7)%7*864e5),B=new Date(Number(A)+(11-A.getUTCDay())%7*864e5),C=new Date(Number(C=c(B.getUTCFullYear(),0,1))+(11-C.getUTCDay())%7*864e5),D=(B-C)/864e5/7+1;z.push(''+D+"")}y=this.getClassNames(u),y.push("day");var E=u.getUTCDate();this.o.beforeShowDay!==a.noop&&(f=this.o.beforeShowDay(this._utc_to_local(u)),f===b?f={}:"boolean"==typeof f?f={enabled:f}:"string"==typeof f&&(f={classes:f}),!1===f.enabled&&y.push("disabled"),f.classes&&(y=y.concat(f.classes.split(/\s+/))),f.tooltip&&(e=f.tooltip),f.content&&(E=f.content)),y=a.isFunction(a.uniqueSort)?a.uniqueSort(y):a.unique(y),z.push(''+E+""),e=null,x===this.o.weekEnd&&z.push(""),u.setUTCDate(u.getUTCDate()+1)}this.picker.find(".datepicker-days tbody").html(z.join(""));var F=q[this.o.language].monthsTitle||q.en.monthsTitle||"Months",G=this.picker.find(".datepicker-months").find(".datepicker-switch").text(this.o.maxViewMode<2?F:h).end().find("tbody span").removeClass("active");if(a.each(this.dates,function(a,b){b.getUTCFullYear()===h&&G.eq(b.getUTCMonth()).addClass("active")}),(hl)&&G.addClass("disabled"),h===j&&G.slice(0,k).addClass("disabled"),h===l&&G.slice(m+1).addClass("disabled"),this.o.beforeShowMonth!==a.noop){var H=this;a.each(G,function(c,d){var e=new Date(h,c,1),f=H.o.beforeShowMonth(e);f===b?f={}:"boolean"==typeof f?f={enabled:f}:"string"==typeof f&&(f={classes:f}),!1!==f.enabled||a(d).hasClass("disabled")||a(d).addClass("disabled"),f.classes&&a(d).addClass(f.classes),f.tooltip&&a(d).prop("title",f.tooltip)})}this._fill_yearsView(".datepicker-years","year",10,h,j,l,this.o.beforeShowYear),this._fill_yearsView(".datepicker-decades","decade",100,h,j,l,this.o.beforeShowDecade),this._fill_yearsView(".datepicker-centuries","century",1e3,h,j,l,this.o.beforeShowCentury)}},updateNavArrows:function(){if(this._allow_update){var a,b,c=new Date(this.viewDate),d=c.getUTCFullYear(),e=c.getUTCMonth(),f=this.o.startDate!==-1/0?this.o.startDate.getUTCFullYear():-1/0,g=this.o.startDate!==-1/0?this.o.startDate.getUTCMonth():-1/0,h=this.o.endDate!==1/0?this.o.endDate.getUTCFullYear():1/0,i=this.o.endDate!==1/0?this.o.endDate.getUTCMonth():1/0,j=1;switch(this.viewMode){case 4:j*=10;case 3:j*=10;case 2:j*=10;case 1:a=Math.floor(d/j)*j<=f,b=Math.floor(d/j)*j+j>h;break;case 0:a=d<=f&&e<=g,b=d>=h&&e>=i}this.picker.find(".prev").toggleClass("disabled",a),this.picker.find(".next").toggleClass("disabled",b)}},click:function(b){b.preventDefault(),b.stopPropagation();var e,f,g,h;e=a(b.target),e.hasClass("datepicker-switch")&&this.viewMode!==this.o.maxViewMode&&this.setViewMode(this.viewMode+1),e.hasClass("today")&&!e.hasClass("day")&&(this.setViewMode(0),this._setDate(d(),"linked"===this.o.todayBtn?null:"view")),e.hasClass("clear")&&this.clearDates(),e.hasClass("disabled")||(e.hasClass("month")||e.hasClass("year")||e.hasClass("decade")||e.hasClass("century"))&&(this.viewDate.setUTCDate(1),f=1,1===this.viewMode?(h=e.parent().find("span").index(e),g=this.viewDate.getUTCFullYear(),this.viewDate.setUTCMonth(h)):(h=0,g=Number(e.text()),this.viewDate.setUTCFullYear(g)),this._trigger(r.viewModes[this.viewMode-1].e,this.viewDate),this.viewMode===this.o.minViewMode?this._setDate(c(g,h,f)):(this.setViewMode(this.viewMode-1),this.fill())),this.picker.is(":visible")&&this._focused_from&&this._focused_from.focus(),delete this._focused_from},dayCellClick:function(b){var c=a(b.currentTarget),d=c.data("date"),e=new Date(d);this.o.updateViewDate&&(e.getUTCFullYear()!==this.viewDate.getUTCFullYear()&&this._trigger("changeYear",this.viewDate),e.getUTCMonth()!==this.viewDate.getUTCMonth()&&this._trigger("changeMonth",this.viewDate)),this._setDate(e)},navArrowsClick:function(b){var c=a(b.currentTarget),d=c.hasClass("prev")?-1:1;0!==this.viewMode&&(d*=12*r.viewModes[this.viewMode].navStep),this.viewDate=this.moveMonth(this.viewDate,d),this._trigger(r.viewModes[this.viewMode].e,this.viewDate),this.fill()},_toggle_multidate:function(a){var b=this.dates.contains(a);if(a||this.dates.clear(),-1!==b?(!0===this.o.multidate||this.o.multidate>1||this.o.toggleActive)&&this.dates.remove(b):!1===this.o.multidate?(this.dates.clear(),this.dates.push(a)):this.dates.push(a),"number"==typeof this.o.multidate)for(;this.dates.length>this.o.multidate;)this.dates.remove(0)},_setDate:function(a,b){b&&"date"!==b||this._toggle_multidate(a&&new Date(a)),(!b&&this.o.updateViewDate||"view"===b)&&(this.viewDate=a&&new Date(a)),this.fill(),this.setValue(),b&&"view"===b||this._trigger("changeDate"),this.inputField.trigger("change"),!this.o.autoclose||b&&"date"!==b||this.hide()},moveDay:function(a,b){var c=new Date(a);return c.setUTCDate(a.getUTCDate()+b),c},moveWeek:function(a,b){return this.moveDay(a,7*b)},moveMonth:function(a,b){if(!g(a))return this.o.defaultViewDate;if(!b)return a;var c,d,e=new Date(a.valueOf()),f=e.getUTCDate(),h=e.getUTCMonth(),i=Math.abs(b);if(b=b>0?1:-1,1===i)d=-1===b?function(){return e.getUTCMonth()===h}:function(){return e.getUTCMonth()!==c},c=h+b,e.setUTCMonth(c),c=(c+12)%12;else{for(var j=0;j0},dateWithinRange:function(a){return a>=this.o.startDate&&a<=this.o.endDate},keydown:function(a){if(!this.picker.is(":visible"))return void(40!==a.keyCode&&27!==a.keyCode||(this.show(),a.stopPropagation()));var b,c,d=!1,e=this.focusDate||this.viewDate;switch(a.keyCode){case 27:this.focusDate?(this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill()):this.hide(),a.preventDefault(),a.stopPropagation();break;case 37:case 38:case 39:case 40:if(!this.o.keyboardNavigation||7===this.o.daysOfWeekDisabled.length)break;b=37===a.keyCode||38===a.keyCode?-1:1,0===this.viewMode?a.ctrlKey?(c=this.moveAvailableDate(e,b,"moveYear"))&&this._trigger("changeYear",this.viewDate):a.shiftKey?(c=this.moveAvailableDate(e,b,"moveMonth"))&&this._trigger("changeMonth",this.viewDate):37===a.keyCode||39===a.keyCode?c=this.moveAvailableDate(e,b,"moveDay"):this.weekOfDateIsDisabled(e)||(c=this.moveAvailableDate(e,b,"moveWeek")):1===this.viewMode?(38!==a.keyCode&&40!==a.keyCode||(b*=4),c=this.moveAvailableDate(e,b,"moveMonth")):2===this.viewMode&&(38!==a.keyCode&&40!==a.keyCode||(b*=4),c=this.moveAvailableDate(e,b,"moveYear")),c&&(this.focusDate=this.viewDate=c,this.setValue(),this.fill(),a.preventDefault());break;case 13:if(!this.o.forceParse)break;e=this.focusDate||this.dates.get(-1)||this.viewDate,this.o.keyboardNavigation&&(this._toggle_multidate(e),d=!0),this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.setValue(),this.fill(),this.picker.is(":visible")&&(a.preventDefault(),a.stopPropagation(),this.o.autoclose&&this.hide());break;case 9:this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill(),this.hide()}d&&(this.dates.length?this._trigger("changeDate"):this._trigger("clearDate"),this.inputField.trigger("change"))},setViewMode:function(a){this.viewMode=a,this.picker.children("div").hide().filter(".datepicker-"+r.viewModes[this.viewMode].clsName).show(),this.updateNavArrows(),this._trigger("changeViewMode",new Date(this.viewDate))}};var l=function(b,c){a.data(b,"datepicker",this),this.element=a(b),this.inputs=a.map(c.inputs,function(a){return a.jquery?a[0]:a}),delete c.inputs,this.keepEmptyValues=c.keepEmptyValues,delete c.keepEmptyValues,n.call(a(this.inputs),c).on("changeDate",a.proxy(this.dateUpdated,this)),this.pickers=a.map(this.inputs,function(b){return a.data(b,"datepicker")}),this.updateDates()};l.prototype={updateDates:function(){this.dates=a.map(this.pickers,function(a){return a.getUTCDate()}),this.updateRanges()},updateRanges:function(){var b=a.map(this.dates,function(a){return a.valueOf()});a.each(this.pickers,function(a,c){c.setRange(b)})},clearDates:function(){a.each(this.pickers,function(a,b){b.clearDates()})},dateUpdated:function(c){if(!this.updating){this.updating=!0;var d=a.data(c.target,"datepicker");if(d!==b){var e=d.getUTCDate(),f=this.keepEmptyValues,g=a.inArray(c.target,this.inputs),h=g-1,i=g+1,j=this.inputs.length;if(-1!==g){if(a.each(this.pickers,function(a,b){b.getUTCDate()||b!==d&&f||b.setUTCDate(e)}),e=0&&ethis.dates[i])for(;ithis.dates[i];)this.pickers[i++].setUTCDate(e);this.updateDates(),delete this.updating}}}},destroy:function(){a.map(this.pickers,function(a){a.destroy()}),a(this.inputs).off("changeDate",this.dateUpdated),delete this.element.data().datepicker},remove:f("destroy","Method `remove` is deprecated and will be removed in version 2.0. Use `destroy` instead")};var m=a.fn.datepicker,n=function(c){var d=Array.apply(null,arguments);d.shift();var e;if(this.each(function(){var b=a(this),f=b.data("datepicker"),g="object"==typeof c&&c;if(!f){var j=h(this,"date"),m=a.extend({},o,j,g),n=i(m.language),p=a.extend({},o,n,j,g);b.hasClass("input-daterange")||p.inputs?(a.extend(p,{inputs:p.inputs||b.find("input").toArray()}),f=new l(this,p)):f=new k(this,p),b.data("datepicker",f)}"string"==typeof c&&"function"==typeof f[c]&&(e=f[c].apply(f,d))}),e===b||e instanceof k||e instanceof l)return this;if(this.length>1)throw new Error("Using only allowed for the collection of a single element ("+c+" function)");return e};a.fn.datepicker=n;var o=a.fn.datepicker.defaults={assumeNearbyYear:!1,autoclose:!1,beforeShowDay:a.noop,beforeShowMonth:a.noop,beforeShowYear:a.noop,beforeShowDecade:a.noop,beforeShowCentury:a.noop,calendarWeeks:!1,clearBtn:!1,toggleActive:!1,daysOfWeekDisabled:[],daysOfWeekHighlighted:[],datesDisabled:[],endDate:1/0,forceParse:!0,format:"mm/dd/yyyy",keepEmptyValues:!1,keyboardNavigation:!0,language:"en",minViewMode:0,maxViewMode:4,multidate:!1,multidateSeparator:",",orientation:"auto",rtl:!1,startDate:-1/0,startView:0,todayBtn:!1,todayHighlight:!1,updateViewDate:!0,weekStart:0,disableTouchKeyboard:!1,enableOnReadonly:!0,showOnFocus:!0,zIndexOffset:10,container:"body",immediateUpdates:!1,title:"",templates:{leftArrow:"«",rightArrow:"»"},showWeekDays:!0},p=a.fn.datepicker.locale_opts=["format","rtl","weekStart"];a.fn.datepicker.Constructor=k;var q=a.fn.datepicker.dates={en:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",clear:"Clear",titleFormat:"MM yyyy"}},r={viewModes:[{names:["days","month"],clsName:"days",e:"changeMonth"},{names:["months","year"],clsName:"months",e:"changeYear",navStep:1},{names:["years","decade"],clsName:"years",e:"changeDecade",navStep:10},{names:["decades","century"],clsName:"decades",e:"changeCentury",navStep:100},{names:["centuries","millennium"],clsName:"centuries",e:"changeMillennium",navStep:1e3}],validParts:/dd?|DD?|mm?|MM?|yy(?:yy)?/g,nonpunctuation:/[^ -\/:-@\u5e74\u6708\u65e5\[-`{-~\t\n\r]+/g,parseFormat:function(a){if("function"==typeof a.toValue&&"function"==typeof a.toDisplay)return a;var b=a.replace(this.validParts,"\0").split("\0"),c=a.match(this.validParts);if(!b||!b.length||!c||0===c.length)throw new Error("Invalid date format.");return{separators:b,parts:c}},parseDate:function(c,e,f,g){function h(a,b){return!0===b&&(b=10),a<100&&(a+=2e3)>(new Date).getFullYear()+b&&(a-=100),a}function i(){var a=this.slice(0,j[n].length),b=j[n].slice(0,a.length);return a.toLowerCase()===b.toLowerCase()}if(!c)return b;if(c instanceof Date)return c;if("string"==typeof e&&(e=r.parseFormat(e)),e.toValue)return e.toValue(c,e,f);var j,l,m,n,o,p={d:"moveDay",m:"moveMonth",w:"moveWeek",y:"moveYear"},s={yesterday:"-1d",today:"+0d",tomorrow:"+1d"};if(c in s&&(c=s[c]),/^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/i.test(c)){for(j=c.match(/([\-+]\d+)([dmwy])/gi),c=new Date,n=0;n'+o.templates.leftArrow+''+o.templates.rightArrow+"",contTemplate:'',footTemplate:''};r.template='
'+r.headTemplate+""+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+"
",a.fn.datepicker.DPGlobal=r,a.fn.datepicker.noConflict=function(){return a.fn.datepicker=m,this},a.fn.datepicker.version="1.9.0",a.fn.datepicker.deprecated=function(a){var b=window.console;b&&b.warn&&b.warn("DEPRECATED: "+a)},a(document).on("focus.datepicker.data-api click.datepicker.data-api",'[data-provide="datepicker"]',function(b){var c=a(this);c.data("datepicker")||(b.preventDefault(),n.call(c,"show"))}),a(function(){n.call(a('[data-provide="datepicker-inline"]'))})}); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js new file mode 100644 index 000000000..0aab38f3a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-CA"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:0,format:"yyyy-mm-dd"},a.fn.datepicker.deprecated("This filename doesn't follow the convention, use bootstrap-datepicker.en-CA.js instead.")}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js new file mode 100644 index 000000000..9d70dc2fa --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["ar-tn"]={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويليه","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js new file mode 100644 index 000000000..ece41af72 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js new file mode 100644 index 000000000..aa1edbf4f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1,clear:"Təmizlə",monthsTitle:"Aylar"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js new file mode 100644 index 000000000..28e8b22dc --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js new file mode 100644 index 000000000..e0796a3ba --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.bm={days:["Kari","Ntɛnɛn","Tarata","Araba","Alamisa","Juma","Sibiri"],daysShort:["Kar","Ntɛ","Tar","Ara","Ala","Jum","Sib"],daysMin:["Ka","Nt","Ta","Ar","Al","Ju","Si"],months:["Zanwuyekalo","Fewuruyekalo","Marisikalo","Awirilikalo","Mɛkalo","Zuwɛnkalo","Zuluyekalo","Utikalo","Sɛtanburukalo","ɔkutɔburukalo","Nowanburukalo","Desanburukalo"],monthsShort:["Zan","Few","Mar","Awi","Mɛ","Zuw","Zul","Uti","Sɛt","ɔku","Now","Des"],today:"Bi",monthsTitle:"Kalo",clear:"Ka jɔsi",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js new file mode 100644 index 000000000..f67b5e26e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.bn={days:["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"],daysShort:["রবিবার","সোমবার","মঙ্গলবার","বুধবার","বৃহস্পতিবার","শুক্রবার","শনিবার"],daysMin:["রবি","সোম","মঙ্গল","বুধ","বৃহস্পতি","শুক্র","শনি"],months:["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"],monthsShort:["জানুয়ারী","ফেব্রুয়ারি","মার্চ","এপ্রিল","মে","জুন","জুলাই","অগাস্ট","সেপ্টেম্বর","অক্টোবর","নভেম্বর","ডিসেম্বর"],today:"আজ",monthsTitle:"মাস",clear:"পরিষ্কার",weekStart:0,format:"mm/dd/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js new file mode 100644 index 000000000..af3e3bd0a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.br={days:["Sul","Lun","Meurzh","Merc'her","Yaou","Gwener","Sadorn"],daysShort:["Sul","Lun","Meu.","Mer.","Yao.","Gwe.","Sad."],daysMin:["Su","L","Meu","Mer","Y","G","Sa"],months:["Genver","C'hwevrer","Meurzh","Ebrel","Mae","Mezheven","Gouere","Eost","Gwengolo","Here","Du","Kerzu"],monthsShort:["Genv.","C'hw.","Meur.","Ebre.","Mae","Mezh.","Goue.","Eost","Gwen.","Here","Du","Kerz."],today:"Hiziv",monthsTitle:"Miz",clear:"Dilemel",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js new file mode 100644 index 000000000..cfb06fde7 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js new file mode 100644 index 000000000..ac107894c --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js new file mode 100644 index 000000000..42dfd1a29 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],daysMin:["Ne","Po","Út","St","Čt","Pá","So"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",monthsTitle:"Měsíc",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js new file mode 100644 index 000000000..f85ea031d --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js new file mode 100644 index 000000000..53c818052 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.da={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"I Dag",weekStart:1,clear:"Nulstil",format:"dd/mm/yyyy",monthsTitle:"Måneder"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js new file mode 100644 index 000000000..1b5d6a247 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js new file mode 100644 index 000000000..046e9eb5e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js new file mode 100644 index 000000000..b8d5f41cf --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-AU"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js new file mode 100644 index 000000000..7b1070f74 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-CA"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:0,format:"yyyy-mm-dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js new file mode 100644 index 000000000..2966f5414 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js new file mode 100644 index 000000000..dc8f71c02 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-IE"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js new file mode 100644 index 000000000..c374a8d40 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-NZ"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js new file mode 100644 index 000000000..885a928cb --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["en-ZA"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"yyyy/mm/d"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js new file mode 100644 index 000000000..736db021a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js new file mode 100644 index 000000000..f3cef5d2b --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js new file mode 100644 index 000000000..34cd9c60e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],daysMin:["P","E","T","K","N","R","L"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js new file mode 100644 index 000000000..c5aa359e4 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur",monthsTitle:"Hilabeteak",clear:"Ezabatu",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js new file mode 100644 index 000000000..8575237a0 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.fa={days:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js new file mode 100644 index 000000000..239dfb796 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"],daysShort:["sun","maa","tii","kes","tor","per","lau"],daysMin:["su","ma","ti","ke","to","pe","la"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",clear:"Tyhjennä",weekStart:1,format:"d.m.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js new file mode 100644 index 000000000..fa24e3a12 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js new file mode 100644 index 000000000..1c6bcdcbf --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js new file mode 100644 index 000000000..244cfba80 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],daysMin:["d","l","ma","me","j","v","s"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js new file mode 100644 index 000000000..3d92606b3 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js new file mode 100644 index 000000000..191cb453a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js new file mode 100644 index 000000000..635baffa8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.hi={days:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],daysShort:["सूर्य","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],daysMin:["र","सो","मं","बु","गु","शु","श"],months:["जनवरी","फ़रवरी","मार्च","अप्रैल","मई","जून","जुलाई","अगस्त","सितम्बर","अक्टूबर","नवंबर","दिसम्बर"],monthsShort:["जन","फ़रवरी","मार्च","अप्रैल","मई","जून","जुलाई","अगस्त","सितं","अक्टूबर","नवं","दिसम्बर"],today:"आज",monthsTitle:"महीने",clear:"साफ",weekStart:1,format:"dd / mm / yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js new file mode 100644 index 000000000..8b34bce0f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js new file mode 100644 index 000000000..f9decf9a2 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.hu={days:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],daysShort:["vas","hét","ked","sze","csü","pén","szo"],daysMin:["V","H","K","Sze","Cs","P","Szo"],months:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],monthsShort:["jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec"],today:"ma",weekStart:1,clear:"töröl",titleFormat:"yyyy. MM",format:"yyyy.mm.dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js new file mode 100644 index 000000000..a1cf653d3 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կիր","Երկ","Երե","Չոր","Հին","Ուրբ","Շաբ"],daysMin:["Կի","Եկ","Եք","Չո","Հի","Ու","Շա"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հնվ","Փետ","Մար","Ապր","Մայ","Հուն","Հուլ","Օգս","Սեպ","Հոկ","Նոյ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Ամիսնէր"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js new file mode 100644 index 000000000..7c3220a64 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js new file mode 100644 index 000000000..f49bd18cc --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js new file mode 100644 index 000000000..7e1adbb95 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js new file mode 100644 index 000000000..cc30766ff --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",monthsTitle:"Mesi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js new file mode 100644 index 000000000..e321f04ff --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js new file mode 100644 index 000000000..84f14c0e9 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js new file mode 100644 index 000000000..bf2abc5d8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"},a.fn.datepicker.deprecated('The language code "kh" is deprecated and will be removed in 2.0. For Khmer support use "km" instead.')}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js new file mode 100644 index 000000000..f4e2f3f1a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js new file mode 100644 index 000000000..648d83f84 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.km={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js new file mode 100644 index 000000000..9751ee5c2 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js new file mode 100644 index 000000000..43393409e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]},a.fn.datepicker.deprecated('The language code "kr" is deprecated and will be removed in 2.0. For korean support use "ko" instead.')}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js new file mode 100644 index 000000000..da78ea85f --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],daysShort:["S","Pr","A","T","K","Pn","Š"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",monthsTitle:"Mėnesiai",clear:"Išvalyti",weekStart:1,format:"yyyy-mm-dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js new file mode 100644 index 000000000..89cea00f8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],daysShort:["Sv","P","O","T","C","Pk","S"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],monthsTitle:"Mēneši",today:"Šodien",clear:"Nodzēst",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js new file mode 100644 index 000000000..c65a89164 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js new file mode 100644 index 000000000..46423f758 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js new file mode 100644 index 000000000..6ebaec9d8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.mn={days:["Ням","Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба"],daysShort:["Ням","Дав","Мяг","Лха","Пүр","Баа","Бям"],daysMin:["Ня","Да","Мя","Лх","Пү","Ба","Бя"],months:["Хулгана","Үхэр","Бар","Туулай","Луу","Могой","Морь","Хонь","Бич","Тахиа","Нохой","Гахай"],monthsShort:["Хул","Үхэ","Бар","Туу","Луу","Мог","Мор","Хон","Бич","Тах","Нох","Гах"],today:"Өнөөдөр",clear:"Тодорхой",format:"yyyy.mm.dd",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js new file mode 100644 index 000000000..47efafdc2 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js new file mode 100644 index 000000000..85d3146df --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js new file mode 100644 index 000000000..af977b71e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js new file mode 100644 index 000000000..0c5136e44 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.no={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthsShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],today:"i dag",monthsTitle:"Måneder",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js new file mode 100644 index 000000000..630fa16b9 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.oc={days:["Dimenge","Diluns","Dimars","Dimècres","Dijòus","Divendres","Dissabte"],daysShort:["Dim","Dil","Dmr","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dr","dc","dj","dv","ds"],months:["Genièr","Febrièr","Març","Abrial","Mai","Junh","Julhet","Agost","Setembre","Octobre","Novembre","Decembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Dec"],today:"Uèi",monthsTitle:"Meses",clear:"Escafar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js new file mode 100644 index 000000000..ffb30ec8b --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.pl={days:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],daysShort:["Niedz.","Pon.","Wt.","Śr.","Czw.","Piąt.","Sob."],daysMin:["Ndz.","Pn.","Wt.","Śr.","Czw.","Pt.","Sob."],months:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthsShort:["Sty.","Lut.","Mar.","Kwi.","Maj","Cze.","Lip.","Sie.","Wrz.","Paź.","Lis.","Gru."],today:"Dzisiaj",weekStart:1,clear:"Wyczyść",format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js new file mode 100644 index 000000000..2d3f8afda --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js new file mode 100644 index 000000000..e2b4e64d7 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js new file mode 100644 index 000000000..5fff2986d --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js new file mode 100644 index 000000000..e520c9573 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"},a.fn.datepicker.deprecated('This language code "rs-latin" is deprecated (invalid serbian language code) and will be removed in 2.0. For Serbian latin support use "sr-latin" instead.')}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js new file mode 100644 index 000000000..ba95ae298 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.rs={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"},a.fn.datepicker.deprecated('This language code "rs" is deprecated (invalid serbian language code) and will be removed in 2.0. For Serbian support use "sr" instead.')}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js new file mode 100644 index 000000000..52bc010b9 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Месяцы"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js new file mode 100644 index 000000000..b9746b8fc --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.si={days:["ඉරිදා","සඳුදා","අඟහරුවාදා","බදාදා","බ්‍රහස්පතින්දා","සිකුරාදා","සෙනසුරාදා"],daysShort:["ඉරි","සඳු","අඟ","බදා","බ්‍රහ","සිකු","සෙන"],daysMin:["ඉ","ස","අ","බ","බ්‍ර","සි","සෙ"],months:["ජනවාරි","පෙබරවාරි","මාර්තු","අප්‍රේල්","මැයි","ජුනි","ජූලි","අගෝස්තු","සැප්තැම්බර්","ඔක්තෝබර්","නොවැම්බර්","දෙසැම්බර්"],monthsShort:["ජන","පෙබ","මාර්","අප්‍රේ","මැයි","ජුනි","ජූලි","අගෝ","සැප්","ඔක්","නොවැ","දෙසැ"],today:"අද",monthsTitle:"මාස",clear:"මකන්න",weekStart:0,format:"yyyy-mm-dd"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js new file mode 100644 index 000000000..79a9267fd --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js new file mode 100644 index 000000000..831cf7390 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js new file mode 100644 index 000000000..8c586055a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],monthsTitle:"Muaj",today:"Sot",weekStart:1,format:"dd/mm/yyyy",clear:"Pastro"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js new file mode 100644 index 000000000..c6b7001ac --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js new file mode 100644 index 000000000..4e46dbf64 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js new file mode 100644 index 000000000..7ab6becb9 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.sv={days:["söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag"],daysShort:["sön","mån","tis","ons","tor","fre","lör"],daysMin:["sö","må","ti","on","to","fr","lö"],months:["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js new file mode 100644 index 000000000..e7909494a --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.ta={days:["ஞாயிறு","திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி"],daysShort:["ஞாயி","திங்","செவ்","புத","வியா","வெள்","சனி"],daysMin:["ஞா","தி","செ","பு","வி","வெ","ச"],months:["ஜனவரி","பிப்ரவரி","மார்ச்","ஏப்ரல்","மே","ஜூன்","ஜூலை","ஆகஸ்டு","செப்டம்பர்","அக்டோபர்","நவம்பர்","டிசம்பர்"],monthsShort:["ஜன","பிப்","மார்","ஏப்","மே","ஜூன்","ஜூலை","ஆக","செப்","அக்","நவ","டிச"],today:"இன்று",monthsTitle:"மாதங்கள்",clear:"நீக்கு",weekStart:1,format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js new file mode 100644 index 000000000..104b6dd95 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.tg={days:["Якшанбе","Душанбе","Сешанбе","Чоршанбе","Панҷшанбе","Ҷумъа","Шанбе"],daysShort:["Яшб","Дшб","Сшб","Чшб","Пшб","Ҷум","Шнб"],daysMin:["Яш","Дш","Сш","Чш","Пш","Ҷм","Шб"],months:["Январ","Феврал","Март","Апрел","Май","Июн","Июл","Август","Сентябр","Октябр","Ноябр","Декабр"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Имрӯз",monthsTitle:"Моҳҳо",clear:"Тоза намудан",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js new file mode 100644 index 000000000..1e398ba8b --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js new file mode 100644 index 000000000..716edef2e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.tk={days:["Ýekşenbe","Duşenbe","Sişenbe","Çarşenbe","Penşenbe","Anna","Şenbe"],daysShort:["Ýek","Duş","Siş","Çar","Pen","Ann","Şen"],daysMin:["Ýe","Du","Si","Ça","Pe","An","Şe"],months:["Ýanwar","Fewral","Mart","Aprel","Maý","Iýun","Iýul","Awgust","Sentýabr","Oktýabr","Noýabr","Dekabr"],monthsShort:["Ýan","Few","Mar","Apr","Maý","Iýn","Iýl","Awg","Sen","Okt","Noý","Dek"],today:"Bu gün",monthsTitle:"Aýlar",clear:"Aýyr",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js new file mode 100644 index 000000000..7889b1135 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js new file mode 100644 index 000000000..41b02e6b2 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js new file mode 100644 index 000000000..a0a8f213c --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["uz-cyrl"]={days:["Якшанба","Душанба","Сешанба","Чоршанба","Пайшанба","Жума","Шанба"],daysShort:["Якш","Ду","Се","Чор","Пай","Жу","Ша"],daysMin:["Як","Ду","Се","Чо","Па","Жу","Ша"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Бугун",clear:"Ўчириш",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Ойлар"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js new file mode 100644 index 000000000..2f58e343e --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["uz-latn"]={days:["Yakshanba","Dushanba","Seshanba","Chorshanba","Payshanba","Juma","Shanba"],daysShort:["Yak","Du","Se","Chor","Pay","Ju","Sha"],daysMin:["Ya","Du","Se","Cho","Pa","Ju","Sha"],months:["Yanvar","Fevral","Mart","Aprel","May","Iyun","Iyul","Avgust","Sentabr","Oktabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","Iyn","Iyl","Avg","Sen","Okt","Noy","Dek"],today:"Bugun",clear:"O'chirish",format:"dd.mm.yyyy",weekStart:1,monthsTitle:"Oylar"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js new file mode 100644 index 000000000..3311d23f8 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js new file mode 100644 index 000000000..8e6920b0c --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",monthsTitle:"选择月份",clear:"清除",format:"yyyy-mm-dd",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js new file mode 100644 index 000000000..e309c1d7d --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js @@ -0,0 +1 @@ +!function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery); \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/css/bootstrap.css b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/css/bootstrap.css new file mode 100644 index 000000000..8f4758923 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/css/bootstrap.css @@ -0,0 +1,10038 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg { + overflow: hidden; + vertical-align: middle; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +select { + word-wrap: normal; +} + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +.blockquote-footer::before { + content: "\2014\00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +.col-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -ms-flex-order: -1; + order: -1; +} + +.order-last { + -ms-flex-order: 13; + order: 13; +} + +.order-0 { + -ms-flex-order: 0; + order: 0; +} + +.order-1 { + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-sm-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -ms-flex-order: -1; + order: -1; + } + .order-sm-last { + -ms-flex-order: 13; + order: 13; + } + .order-sm-0 { + -ms-flex-order: 0; + order: 0; + } + .order-sm-1 { + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-md-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -ms-flex-order: -1; + order: -1; + } + .order-md-last { + -ms-flex-order: 13; + order: 13; + } + .order-md-0 { + -ms-flex-order: 0; + order: 0; + } + .order-md-1 { + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-lg-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -ms-flex-order: -1; + order: -1; + } + .order-lg-last { + -ms-flex-order: 13; + order: 13; + } + .order-lg-0 { + -ms-flex-order: 0; + order: 0; + } + .order-lg-1 { + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-xl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -ms-flex-order: -1; + order: -1; + } + .order-xl-last { + -ms-flex-order: 13; + order: 13; + } + .order-xl-0 { + -ms-flex-order: 0; + order: 0; + } + .order-xl-1 { + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #7abaff; +} + +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #343a40; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: -ms-inline-flexbox; + display: inline-flex; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-select:valid ~ .valid-feedback, +.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-select:invalid ~ .invalid-feedback, +.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: -ms-flexbox; + display: flex; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: -ms-flexbox; + display: flex; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + .form-inline .form-check { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + -ms-flex-negative: 0; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} + +.btn:hover { + color: #212529; + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +.btn-outline-primary { + color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + box-shadow: none; +} + +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} + +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} + +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropdown-menu-left { + right: auto; + left: 0; +} + +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; + } + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > .custom-file { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; +} + +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: -ms-flexbox; + display: flex; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; +} + +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; +} + +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #007bff; + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-switch { + padding-left: 2.25rem; +} + +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; + } +} + +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); +} + +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +.custom-select::-ms-expand { + display: none; +} + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-range:focus { + outline: none; +} + +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range::-moz-focus-outer { + border: 0; +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + transition: none; + } +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + transition: none; + } +} + +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + transition: none; + } +} + +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} + +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} + +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; + } +} + +.nav { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +.nav-fill .nav-item { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar > .container, +.navbar > .container-fluid { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +.navbar-expand { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.navbar-expand .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.card-body { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-deck { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + .card-deck .card { + display: -ms-flexbox; + display: flex; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +.card-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-group { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.accordion > .card { + overflow: hidden; +} + +.accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +.accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +.accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.accordion > .card .card-header { + margin-bottom: -1px; +} + +.breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .badge { + transition: none; + } +} + +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #007bff; +} + +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0062cc; +} + +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} + +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.badge-success { + color: #fff; + background-color: #28a745; +} + +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} + +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} + +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} + +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} + +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} + +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} + +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} + +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-primary hr { + border-top-color: #9fcdff; +} + +.alert-primary .alert-link { + color: #002752; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +.alert-secondary .alert-link { + color: #202326; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-success hr { + border-top-color: #b1dfbb; +} + +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-info hr { + border-top-color: #abdde5; +} + +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-warning hr { + border-top-color: #ffe8a1; +} + +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-danger hr { + border-top-color: #f1b0b7; +} + +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.alert-dark hr { + border-top-color: #b9bbbe; +} + +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +.media { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; +} + +.media-body { + -ms-flex: 1; + flex: 1; +} + +.list-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.list-group-horizontal { + -ms-flex-direction: row; + flex-direction: row; +} + +.list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; +} + +.list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} + +.list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 768px) { + .list-group-horizontal-md { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 992px) { + .list-group-horizontal-lg { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px; +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:hover { + color: #000; + text-decoration: none; +} + +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +a.close.disabled { + pointer-events: none; +} + +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} + +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +.toast.showing { + opacity: 1; +} + +.toast.show { + display: block; + opacity: 1; +} + +.toast.hide { + display: none; +} + +.toast-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +.toast-body { + padding: 0.75rem; +} + +.modal-open { + overflow: hidden; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} + +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none; +} + +.modal-dialog-scrollable { + display: -ms-flexbox; + display: flex; + max-height: calc(100% - 1rem); +} + +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + -ms-flex-negative: 0; + flex-shrink: 0; +} + +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; +} + +.modal-dialog-centered.modal-dialog-scrollable { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + height: 100%; +} + +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +.modal-content { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); +} + +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + -webkit-transform: none; + transform: none; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: 0s 0.6s opacity; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + box-sizing: content-box; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; + } +} + +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #007bff !important; +} + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +.bg-secondary { + background-color: #6c757d !important; +} + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #dee2e6 !important; +} + +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #007bff !important; +} + +.border-secondary { + border-color: #6c757d !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded-sm { + border-radius: 0.2rem !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-lg { + border-radius: 0.3rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: 50rem !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-print-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.857143%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; +} + +.flex-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; +} + +.flex-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; +} + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; +} + +.justify-content-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-sm-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-sm-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-sm-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-md-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-md-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-md-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-md-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-lg-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-lg-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-lg-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-xl-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-xl-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-xl-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !important; + } +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.vw-100 { + width: 100vw !important; +} + +.vh-100 { + height: 100vh !important; +} + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +.m-n4 { + margin: -1.5rem !important; +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-n1 { + margin: -0.25rem !important; + } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + .m-sm-n2 { + margin: -0.5rem !important; + } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + .m-sm-n3 { + margin: -1rem !important; + } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + .m-sm-n4 { + margin: -1.5rem !important; + } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + .m-sm-n5 { + margin: -3rem !important; + } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-n1 { + margin: -0.25rem !important; + } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + .m-md-n2 { + margin: -0.5rem !important; + } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + .m-md-n3 { + margin: -1rem !important; + } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + .m-md-n4 { + margin: -1.5rem !important; + } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + .m-md-n5 { + margin: -3rem !important; + } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-n1 { + margin: -0.25rem !important; + } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + .m-lg-n2 { + margin: -0.5rem !important; + } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + .m-lg-n3 { + margin: -1rem !important; + } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + .m-lg-n4 { + margin: -1.5rem !important; + } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + .m-lg-n5 { + margin: -3rem !important; + } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-n1 { + margin: -0.25rem !important; + } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + .m-xl-n2 { + margin: -0.5rem !important; + } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + .m-xl-n3 { + margin: -1rem !important; + } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + .m-xl-n4 { + margin: -1.5rem !important; + } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + .m-xl-n5 { + margin: -3rem !important; + } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +.text-justify { + text-align: justify !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-lighter { + font-weight: lighter !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-weight-bolder { + font-weight: bolder !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #007bff !important; +} + +a.text-primary:hover, a.text-primary:focus { + color: #0056b3 !important; +} + +.text-secondary { + color: #6c757d !important; +} + +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:hover, a.text-success:focus { + color: #19692c !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; +} + +.text-body { + color: #212529 !important; +} + +.text-muted { + color: #6c757d !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; +} + +.text-reset { + color: inherit !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a:not(.btn) { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + body { + min-width: 992px !important; + } + .container { + min-width: 992px !important; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + .table-dark { + color: inherit; + } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js new file mode 100644 index 000000000..f4f23ead2 --- /dev/null +++ b/aspnet-core/services/account/AuthServer.Host/wwwroot/libs/bootstrap/js/bootstrap.bundle.js @@ -0,0 +1,7013 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery')) : + typeof define === 'function' && define.amd ? define(['exports', 'jquery'], factory) : + (global = global || self, factory(global.bootstrap = {}, global.jQuery)); +}(this, function (exports, $) { 'use strict'; + + $ = $ && $.hasOwnProperty('default') ? $['default'] : $; + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; + } + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + var ownKeys = Object.keys(source); + + if (typeof Object.getOwnPropertySymbols === 'function') { + ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { + return Object.getOwnPropertyDescriptor(source, sym).enumerable; + })); + } + + ownKeys.forEach(function (key) { + _defineProperty(target, key, source[key]); + }); + } + + return target; + } + + function _inheritsLoose(subClass, superClass) { + subClass.prototype = Object.create(superClass.prototype); + subClass.prototype.constructor = subClass; + subClass.__proto__ = superClass; + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.3.1): util.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + /** + * ------------------------------------------------------------------------ + * Private TransitionEnd Helpers + * ------------------------------------------------------------------------ + */ + + var TRANSITION_END = 'transitionend'; + var MAX_UID = 1000000; + var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) + + function toType(obj) { + return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase(); + } + + function getSpecialTransitionEndEvent() { + return { + bindType: TRANSITION_END, + delegateType: TRANSITION_END, + handle: function handle(event) { + if ($(event.target).is(this)) { + return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params + } + + return undefined; // eslint-disable-line no-undefined + } + }; + } + + function transitionEndEmulator(duration) { + var _this = this; + + var called = false; + $(this).one(Util.TRANSITION_END, function () { + called = true; + }); + setTimeout(function () { + if (!called) { + Util.triggerTransitionEnd(_this); + } + }, duration); + return this; + } + + function setTransitionEndSupport() { + $.fn.emulateTransitionEnd = transitionEndEmulator; + $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); + } + /** + * -------------------------------------------------------------------------- + * Public Util Api + * -------------------------------------------------------------------------- + */ + + + var Util = { + TRANSITION_END: 'bsTransitionEnd', + getUID: function getUID(prefix) { + do { + // eslint-disable-next-line no-bitwise + prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here + } while (document.getElementById(prefix)); + + return prefix; + }, + getSelectorFromElement: function getSelectorFromElement(element) { + var selector = element.getAttribute('data-target'); + + if (!selector || selector === '#') { + var hrefAttr = element.getAttribute('href'); + selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''; + } + + try { + return document.querySelector(selector) ? selector : null; + } catch (err) { + return null; + } + }, + getTransitionDurationFromElement: function getTransitionDurationFromElement(element) { + if (!element) { + return 0; + } // Get transition-duration of the element + + + var transitionDuration = $(element).css('transition-duration'); + var transitionDelay = $(element).css('transition-delay'); + var floatTransitionDuration = parseFloat(transitionDuration); + var floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found + + if (!floatTransitionDuration && !floatTransitionDelay) { + return 0; + } // If multiple durations are defined, take the first + + + transitionDuration = transitionDuration.split(',')[0]; + transitionDelay = transitionDelay.split(',')[0]; + return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER; + }, + reflow: function reflow(element) { + return element.offsetHeight; + }, + triggerTransitionEnd: function triggerTransitionEnd(element) { + $(element).trigger(TRANSITION_END); + }, + // TODO: Remove in v5 + supportsTransitionEnd: function supportsTransitionEnd() { + return Boolean(TRANSITION_END); + }, + isElement: function isElement(obj) { + return (obj[0] || obj).nodeType; + }, + typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) { + for (var property in configTypes) { + if (Object.prototype.hasOwnProperty.call(configTypes, property)) { + var expectedTypes = configTypes[property]; + var value = config[property]; + var valueType = value && Util.isElement(value) ? 'element' : toType(value); + + if (!new RegExp(expectedTypes).test(valueType)) { + throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\".")); + } + } + } + }, + findShadowRoot: function findShadowRoot(element) { + if (!document.documentElement.attachShadow) { + return null; + } // Can find the shadow root otherwise it'll return the document + + + if (typeof element.getRootNode === 'function') { + var root = element.getRootNode(); + return root instanceof ShadowRoot ? root : null; + } + + if (element instanceof ShadowRoot) { + return element; + } // when we don't find a shadow root + + + if (!element.parentNode) { + return null; + } + + return Util.findShadowRoot(element.parentNode); + } + }; + setTransitionEndSupport(); + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME = 'alert'; + var VERSION = '4.3.1'; + var DATA_KEY = 'bs.alert'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $.fn[NAME]; + var Selector = { + DISMISS: '[data-dismiss="alert"]' + }; + var Event = { + CLOSE: "close" + EVENT_KEY, + CLOSED: "closed" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + ALERT: 'alert', + FADE: 'fade', + SHOW: 'show' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Alert = + /*#__PURE__*/ + function () { + function Alert(element) { + this._element = element; + } // Getters + + + var _proto = Alert.prototype; + + // Public + _proto.close = function close(element) { + var rootElement = this._element; + + if (element) { + rootElement = this._getRootElement(element); + } + + var customEvent = this._triggerCloseEvent(rootElement); + + if (customEvent.isDefaultPrevented()) { + return; + } + + this._removeElement(rootElement); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY); + this._element = null; + } // Private + ; + + _proto._getRootElement = function _getRootElement(element) { + var selector = Util.getSelectorFromElement(element); + var parent = false; + + if (selector) { + parent = document.querySelector(selector); + } + + if (!parent) { + parent = $(element).closest("." + ClassName.ALERT)[0]; + } + + return parent; + }; + + _proto._triggerCloseEvent = function _triggerCloseEvent(element) { + var closeEvent = $.Event(Event.CLOSE); + $(element).trigger(closeEvent); + return closeEvent; + }; + + _proto._removeElement = function _removeElement(element) { + var _this = this; + + $(element).removeClass(ClassName.SHOW); + + if (!$(element).hasClass(ClassName.FADE)) { + this._destroyElement(element); + + return; + } + + var transitionDuration = Util.getTransitionDurationFromElement(element); + $(element).one(Util.TRANSITION_END, function (event) { + return _this._destroyElement(element, event); + }).emulateTransitionEnd(transitionDuration); + }; + + _proto._destroyElement = function _destroyElement(element) { + $(element).detach().trigger(Event.CLOSED).remove(); + } // Static + ; + + Alert._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $element = $(this); + var data = $element.data(DATA_KEY); + + if (!data) { + data = new Alert(this); + $element.data(DATA_KEY, data); + } + + if (config === 'close') { + data[config](this); + } + }); + }; + + Alert._handleDismiss = function _handleDismiss(alertInstance) { + return function (event) { + if (event) { + event.preventDefault(); + } + + alertInstance.close(this); + }; + }; + + _createClass(Alert, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }]); + + return Alert; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert())); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME] = Alert._jQueryInterface; + $.fn[NAME].Constructor = Alert; + + $.fn[NAME].noConflict = function () { + $.fn[NAME] = JQUERY_NO_CONFLICT; + return Alert._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$1 = 'button'; + var VERSION$1 = '4.3.1'; + var DATA_KEY$1 = 'bs.button'; + var EVENT_KEY$1 = "." + DATA_KEY$1; + var DATA_API_KEY$1 = '.data-api'; + var JQUERY_NO_CONFLICT$1 = $.fn[NAME$1]; + var ClassName$1 = { + ACTIVE: 'active', + BUTTON: 'btn', + FOCUS: 'focus' + }; + var Selector$1 = { + DATA_TOGGLE_CARROT: '[data-toggle^="button"]', + DATA_TOGGLE: '[data-toggle="buttons"]', + INPUT: 'input:not([type="hidden"])', + ACTIVE: '.active', + BUTTON: '.btn' + }; + var Event$1 = { + CLICK_DATA_API: "click" + EVENT_KEY$1 + DATA_API_KEY$1, + FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY$1 + DATA_API_KEY$1 + " " + ("blur" + EVENT_KEY$1 + DATA_API_KEY$1) + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Button = + /*#__PURE__*/ + function () { + function Button(element) { + this._element = element; + } // Getters + + + var _proto = Button.prototype; + + // Public + _proto.toggle = function toggle() { + var triggerChangeEvent = true; + var addAriaPressed = true; + var rootElement = $(this._element).closest(Selector$1.DATA_TOGGLE)[0]; + + if (rootElement) { + var input = this._element.querySelector(Selector$1.INPUT); + + if (input) { + if (input.type === 'radio') { + if (input.checked && this._element.classList.contains(ClassName$1.ACTIVE)) { + triggerChangeEvent = false; + } else { + var activeElement = rootElement.querySelector(Selector$1.ACTIVE); + + if (activeElement) { + $(activeElement).removeClass(ClassName$1.ACTIVE); + } + } + } + + if (triggerChangeEvent) { + if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) { + return; + } + + input.checked = !this._element.classList.contains(ClassName$1.ACTIVE); + $(input).trigger('change'); + } + + input.focus(); + addAriaPressed = false; + } + } + + if (addAriaPressed) { + this._element.setAttribute('aria-pressed', !this._element.classList.contains(ClassName$1.ACTIVE)); + } + + if (triggerChangeEvent) { + $(this._element).toggleClass(ClassName$1.ACTIVE); + } + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$1); + this._element = null; + } // Static + ; + + Button._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$1); + + if (!data) { + data = new Button(this); + $(this).data(DATA_KEY$1, data); + } + + if (config === 'toggle') { + data[config](); + } + }); + }; + + _createClass(Button, null, [{ + key: "VERSION", + get: function get() { + return VERSION$1; + } + }]); + + return Button; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$1.CLICK_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { + event.preventDefault(); + var button = event.target; + + if (!$(button).hasClass(ClassName$1.BUTTON)) { + button = $(button).closest(Selector$1.BUTTON); + } + + Button._jQueryInterface.call($(button), 'toggle'); + }).on(Event$1.FOCUS_BLUR_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { + var button = $(event.target).closest(Selector$1.BUTTON)[0]; + $(button).toggleClass(ClassName$1.FOCUS, /^focus(in)?$/.test(event.type)); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$1] = Button._jQueryInterface; + $.fn[NAME$1].Constructor = Button; + + $.fn[NAME$1].noConflict = function () { + $.fn[NAME$1] = JQUERY_NO_CONFLICT$1; + return Button._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$2 = 'carousel'; + var VERSION$2 = '4.3.1'; + var DATA_KEY$2 = 'bs.carousel'; + var EVENT_KEY$2 = "." + DATA_KEY$2; + var DATA_API_KEY$2 = '.data-api'; + var JQUERY_NO_CONFLICT$2 = $.fn[NAME$2]; + var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key + + var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key + + var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch + + var SWIPE_THRESHOLD = 40; + var Default = { + interval: 5000, + keyboard: true, + slide: false, + pause: 'hover', + wrap: true, + touch: true + }; + var DefaultType = { + interval: '(number|boolean)', + keyboard: 'boolean', + slide: '(boolean|string)', + pause: '(string|boolean)', + wrap: 'boolean', + touch: 'boolean' + }; + var Direction = { + NEXT: 'next', + PREV: 'prev', + LEFT: 'left', + RIGHT: 'right' + }; + var Event$2 = { + SLIDE: "slide" + EVENT_KEY$2, + SLID: "slid" + EVENT_KEY$2, + KEYDOWN: "keydown" + EVENT_KEY$2, + MOUSEENTER: "mouseenter" + EVENT_KEY$2, + MOUSELEAVE: "mouseleave" + EVENT_KEY$2, + TOUCHSTART: "touchstart" + EVENT_KEY$2, + TOUCHMOVE: "touchmove" + EVENT_KEY$2, + TOUCHEND: "touchend" + EVENT_KEY$2, + POINTERDOWN: "pointerdown" + EVENT_KEY$2, + POINTERUP: "pointerup" + EVENT_KEY$2, + DRAG_START: "dragstart" + EVENT_KEY$2, + LOAD_DATA_API: "load" + EVENT_KEY$2 + DATA_API_KEY$2, + CLICK_DATA_API: "click" + EVENT_KEY$2 + DATA_API_KEY$2 + }; + var ClassName$2 = { + CAROUSEL: 'carousel', + ACTIVE: 'active', + SLIDE: 'slide', + RIGHT: 'carousel-item-right', + LEFT: 'carousel-item-left', + NEXT: 'carousel-item-next', + PREV: 'carousel-item-prev', + ITEM: 'carousel-item', + POINTER_EVENT: 'pointer-event' + }; + var Selector$2 = { + ACTIVE: '.active', + ACTIVE_ITEM: '.active.carousel-item', + ITEM: '.carousel-item', + ITEM_IMG: '.carousel-item img', + NEXT_PREV: '.carousel-item-next, .carousel-item-prev', + INDICATORS: '.carousel-indicators', + DATA_SLIDE: '[data-slide], [data-slide-to]', + DATA_RIDE: '[data-ride="carousel"]' + }; + var PointerType = { + TOUCH: 'touch', + PEN: 'pen' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Carousel = + /*#__PURE__*/ + function () { + function Carousel(element, config) { + this._items = null; + this._interval = null; + this._activeElement = null; + this._isPaused = false; + this._isSliding = false; + this.touchTimeout = null; + this.touchStartX = 0; + this.touchDeltaX = 0; + this._config = this._getConfig(config); + this._element = element; + this._indicatorsElement = this._element.querySelector(Selector$2.INDICATORS); + this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0; + this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent); + + this._addEventListeners(); + } // Getters + + + var _proto = Carousel.prototype; + + // Public + _proto.next = function next() { + if (!this._isSliding) { + this._slide(Direction.NEXT); + } + }; + + _proto.nextWhenVisible = function nextWhenVisible() { + // Don't call next when the page isn't visible + // or the carousel or its parent isn't visible + if (!document.hidden && $(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden') { + this.next(); + } + }; + + _proto.prev = function prev() { + if (!this._isSliding) { + this._slide(Direction.PREV); + } + }; + + _proto.pause = function pause(event) { + if (!event) { + this._isPaused = true; + } + + if (this._element.querySelector(Selector$2.NEXT_PREV)) { + Util.triggerTransitionEnd(this._element); + this.cycle(true); + } + + clearInterval(this._interval); + this._interval = null; + }; + + _proto.cycle = function cycle(event) { + if (!event) { + this._isPaused = false; + } + + if (this._interval) { + clearInterval(this._interval); + this._interval = null; + } + + if (this._config.interval && !this._isPaused) { + this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval); + } + }; + + _proto.to = function to(index) { + var _this = this; + + this._activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); + + var activeIndex = this._getItemIndex(this._activeElement); + + if (index > this._items.length - 1 || index < 0) { + return; + } + + if (this._isSliding) { + $(this._element).one(Event$2.SLID, function () { + return _this.to(index); + }); + return; + } + + if (activeIndex === index) { + this.pause(); + this.cycle(); + return; + } + + var direction = index > activeIndex ? Direction.NEXT : Direction.PREV; + + this._slide(direction, this._items[index]); + }; + + _proto.dispose = function dispose() { + $(this._element).off(EVENT_KEY$2); + $.removeData(this._element, DATA_KEY$2); + this._items = null; + this._config = null; + this._element = null; + this._interval = null; + this._isPaused = null; + this._isSliding = null; + this._activeElement = null; + this._indicatorsElement = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, config); + Util.typeCheckConfig(NAME$2, config, DefaultType); + return config; + }; + + _proto._handleSwipe = function _handleSwipe() { + var absDeltax = Math.abs(this.touchDeltaX); + + if (absDeltax <= SWIPE_THRESHOLD) { + return; + } + + var direction = absDeltax / this.touchDeltaX; // swipe left + + if (direction > 0) { + this.prev(); + } // swipe right + + + if (direction < 0) { + this.next(); + } + }; + + _proto._addEventListeners = function _addEventListeners() { + var _this2 = this; + + if (this._config.keyboard) { + $(this._element).on(Event$2.KEYDOWN, function (event) { + return _this2._keydown(event); + }); + } + + if (this._config.pause === 'hover') { + $(this._element).on(Event$2.MOUSEENTER, function (event) { + return _this2.pause(event); + }).on(Event$2.MOUSELEAVE, function (event) { + return _this2.cycle(event); + }); + } + + if (this._config.touch) { + this._addTouchEventListeners(); + } + }; + + _proto._addTouchEventListeners = function _addTouchEventListeners() { + var _this3 = this; + + if (!this._touchSupported) { + return; + } + + var start = function start(event) { + if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { + _this3.touchStartX = event.originalEvent.clientX; + } else if (!_this3._pointerEvent) { + _this3.touchStartX = event.originalEvent.touches[0].clientX; + } + }; + + var move = function move(event) { + // ensure swiping with one touch and not pinching + if (event.originalEvent.touches && event.originalEvent.touches.length > 1) { + _this3.touchDeltaX = 0; + } else { + _this3.touchDeltaX = event.originalEvent.touches[0].clientX - _this3.touchStartX; + } + }; + + var end = function end(event) { + if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { + _this3.touchDeltaX = event.originalEvent.clientX - _this3.touchStartX; + } + + _this3._handleSwipe(); + + if (_this3._config.pause === 'hover') { + // If it's a touch-enabled device, mouseenter/leave are fired as + // part of the mouse compatibility events on first tap - the carousel + // would stop cycling until user tapped out of it; + // here, we listen for touchend, explicitly pause the carousel + // (as if it's the second time we tap on it, mouseenter compat event + // is NOT fired) and after a timeout (to allow for mouse compatibility + // events to fire) we explicitly restart cycling + _this3.pause(); + + if (_this3.touchTimeout) { + clearTimeout(_this3.touchTimeout); + } + + _this3.touchTimeout = setTimeout(function (event) { + return _this3.cycle(event); + }, TOUCHEVENT_COMPAT_WAIT + _this3._config.interval); + } + }; + + $(this._element.querySelectorAll(Selector$2.ITEM_IMG)).on(Event$2.DRAG_START, function (e) { + return e.preventDefault(); + }); + + if (this._pointerEvent) { + $(this._element).on(Event$2.POINTERDOWN, function (event) { + return start(event); + }); + $(this._element).on(Event$2.POINTERUP, function (event) { + return end(event); + }); + + this._element.classList.add(ClassName$2.POINTER_EVENT); + } else { + $(this._element).on(Event$2.TOUCHSTART, function (event) { + return start(event); + }); + $(this._element).on(Event$2.TOUCHMOVE, function (event) { + return move(event); + }); + $(this._element).on(Event$2.TOUCHEND, function (event) { + return end(event); + }); + } + }; + + _proto._keydown = function _keydown(event) { + if (/input|textarea/i.test(event.target.tagName)) { + return; + } + + switch (event.which) { + case ARROW_LEFT_KEYCODE: + event.preventDefault(); + this.prev(); + break; + + case ARROW_RIGHT_KEYCODE: + event.preventDefault(); + this.next(); + break; + + default: + } + }; + + _proto._getItemIndex = function _getItemIndex(element) { + this._items = element && element.parentNode ? [].slice.call(element.parentNode.querySelectorAll(Selector$2.ITEM)) : []; + return this._items.indexOf(element); + }; + + _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) { + var isNextDirection = direction === Direction.NEXT; + var isPrevDirection = direction === Direction.PREV; + + var activeIndex = this._getItemIndex(activeElement); + + var lastItemIndex = this._items.length - 1; + var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex; + + if (isGoingToWrap && !this._config.wrap) { + return activeElement; + } + + var delta = direction === Direction.PREV ? -1 : 1; + var itemIndex = (activeIndex + delta) % this._items.length; + return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex]; + }; + + _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) { + var targetIndex = this._getItemIndex(relatedTarget); + + var fromIndex = this._getItemIndex(this._element.querySelector(Selector$2.ACTIVE_ITEM)); + + var slideEvent = $.Event(Event$2.SLIDE, { + relatedTarget: relatedTarget, + direction: eventDirectionName, + from: fromIndex, + to: targetIndex + }); + $(this._element).trigger(slideEvent); + return slideEvent; + }; + + _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) { + if (this._indicatorsElement) { + var indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector$2.ACTIVE)); + $(indicators).removeClass(ClassName$2.ACTIVE); + + var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)]; + + if (nextIndicator) { + $(nextIndicator).addClass(ClassName$2.ACTIVE); + } + } + }; + + _proto._slide = function _slide(direction, element) { + var _this4 = this; + + var activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); + + var activeElementIndex = this._getItemIndex(activeElement); + + var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement); + + var nextElementIndex = this._getItemIndex(nextElement); + + var isCycling = Boolean(this._interval); + var directionalClassName; + var orderClassName; + var eventDirectionName; + + if (direction === Direction.NEXT) { + directionalClassName = ClassName$2.LEFT; + orderClassName = ClassName$2.NEXT; + eventDirectionName = Direction.LEFT; + } else { + directionalClassName = ClassName$2.RIGHT; + orderClassName = ClassName$2.PREV; + eventDirectionName = Direction.RIGHT; + } + + if (nextElement && $(nextElement).hasClass(ClassName$2.ACTIVE)) { + this._isSliding = false; + return; + } + + var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName); + + if (slideEvent.isDefaultPrevented()) { + return; + } + + if (!activeElement || !nextElement) { + // Some weirdness is happening, so we bail + return; + } + + this._isSliding = true; + + if (isCycling) { + this.pause(); + } + + this._setActiveIndicatorElement(nextElement); + + var slidEvent = $.Event(Event$2.SLID, { + relatedTarget: nextElement, + direction: eventDirectionName, + from: activeElementIndex, + to: nextElementIndex + }); + + if ($(this._element).hasClass(ClassName$2.SLIDE)) { + $(nextElement).addClass(orderClassName); + Util.reflow(nextElement); + $(activeElement).addClass(directionalClassName); + $(nextElement).addClass(directionalClassName); + var nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10); + + if (nextElementInterval) { + this._config.defaultInterval = this._config.defaultInterval || this._config.interval; + this._config.interval = nextElementInterval; + } else { + this._config.interval = this._config.defaultInterval || this._config.interval; + } + + var transitionDuration = Util.getTransitionDurationFromElement(activeElement); + $(activeElement).one(Util.TRANSITION_END, function () { + $(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName$2.ACTIVE); + $(activeElement).removeClass(ClassName$2.ACTIVE + " " + orderClassName + " " + directionalClassName); + _this4._isSliding = false; + setTimeout(function () { + return $(_this4._element).trigger(slidEvent); + }, 0); + }).emulateTransitionEnd(transitionDuration); + } else { + $(activeElement).removeClass(ClassName$2.ACTIVE); + $(nextElement).addClass(ClassName$2.ACTIVE); + this._isSliding = false; + $(this._element).trigger(slidEvent); + } + + if (isCycling) { + this.cycle(); + } + } // Static + ; + + Carousel._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$2); + + var _config = _objectSpread({}, Default, $(this).data()); + + if (typeof config === 'object') { + _config = _objectSpread({}, _config, config); + } + + var action = typeof config === 'string' ? config : _config.slide; + + if (!data) { + data = new Carousel(this, _config); + $(this).data(DATA_KEY$2, data); + } + + if (typeof config === 'number') { + data.to(config); + } else if (typeof action === 'string') { + if (typeof data[action] === 'undefined') { + throw new TypeError("No method named \"" + action + "\""); + } + + data[action](); + } else if (_config.interval && _config.ride) { + data.pause(); + data.cycle(); + } + }); + }; + + Carousel._dataApiClickHandler = function _dataApiClickHandler(event) { + var selector = Util.getSelectorFromElement(this); + + if (!selector) { + return; + } + + var target = $(selector)[0]; + + if (!target || !$(target).hasClass(ClassName$2.CAROUSEL)) { + return; + } + + var config = _objectSpread({}, $(target).data(), $(this).data()); + + var slideIndex = this.getAttribute('data-slide-to'); + + if (slideIndex) { + config.interval = false; + } + + Carousel._jQueryInterface.call($(target), config); + + if (slideIndex) { + $(target).data(DATA_KEY$2).to(slideIndex); + } + + event.preventDefault(); + }; + + _createClass(Carousel, null, [{ + key: "VERSION", + get: function get() { + return VERSION$2; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }]); + + return Carousel; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$2.CLICK_DATA_API, Selector$2.DATA_SLIDE, Carousel._dataApiClickHandler); + $(window).on(Event$2.LOAD_DATA_API, function () { + var carousels = [].slice.call(document.querySelectorAll(Selector$2.DATA_RIDE)); + + for (var i = 0, len = carousels.length; i < len; i++) { + var $carousel = $(carousels[i]); + + Carousel._jQueryInterface.call($carousel, $carousel.data()); + } + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$2] = Carousel._jQueryInterface; + $.fn[NAME$2].Constructor = Carousel; + + $.fn[NAME$2].noConflict = function () { + $.fn[NAME$2] = JQUERY_NO_CONFLICT$2; + return Carousel._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$3 = 'collapse'; + var VERSION$3 = '4.3.1'; + var DATA_KEY$3 = 'bs.collapse'; + var EVENT_KEY$3 = "." + DATA_KEY$3; + var DATA_API_KEY$3 = '.data-api'; + var JQUERY_NO_CONFLICT$3 = $.fn[NAME$3]; + var Default$1 = { + toggle: true, + parent: '' + }; + var DefaultType$1 = { + toggle: 'boolean', + parent: '(string|element)' + }; + var Event$3 = { + SHOW: "show" + EVENT_KEY$3, + SHOWN: "shown" + EVENT_KEY$3, + HIDE: "hide" + EVENT_KEY$3, + HIDDEN: "hidden" + EVENT_KEY$3, + CLICK_DATA_API: "click" + EVENT_KEY$3 + DATA_API_KEY$3 + }; + var ClassName$3 = { + SHOW: 'show', + COLLAPSE: 'collapse', + COLLAPSING: 'collapsing', + COLLAPSED: 'collapsed' + }; + var Dimension = { + WIDTH: 'width', + HEIGHT: 'height' + }; + var Selector$3 = { + ACTIVES: '.show, .collapsing', + DATA_TOGGLE: '[data-toggle="collapse"]' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Collapse = + /*#__PURE__*/ + function () { + function Collapse(element, config) { + this._isTransitioning = false; + this._element = element; + this._config = this._getConfig(config); + this._triggerArray = [].slice.call(document.querySelectorAll("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]"))); + var toggleList = [].slice.call(document.querySelectorAll(Selector$3.DATA_TOGGLE)); + + for (var i = 0, len = toggleList.length; i < len; i++) { + var elem = toggleList[i]; + var selector = Util.getSelectorFromElement(elem); + var filterElement = [].slice.call(document.querySelectorAll(selector)).filter(function (foundElem) { + return foundElem === element; + }); + + if (selector !== null && filterElement.length > 0) { + this._selector = selector; + + this._triggerArray.push(elem); + } + } + + this._parent = this._config.parent ? this._getParent() : null; + + if (!this._config.parent) { + this._addAriaAndCollapsedClass(this._element, this._triggerArray); + } + + if (this._config.toggle) { + this.toggle(); + } + } // Getters + + + var _proto = Collapse.prototype; + + // Public + _proto.toggle = function toggle() { + if ($(this._element).hasClass(ClassName$3.SHOW)) { + this.hide(); + } else { + this.show(); + } + }; + + _proto.show = function show() { + var _this = this; + + if (this._isTransitioning || $(this._element).hasClass(ClassName$3.SHOW)) { + return; + } + + var actives; + var activesData; + + if (this._parent) { + actives = [].slice.call(this._parent.querySelectorAll(Selector$3.ACTIVES)).filter(function (elem) { + if (typeof _this._config.parent === 'string') { + return elem.getAttribute('data-parent') === _this._config.parent; + } + + return elem.classList.contains(ClassName$3.COLLAPSE); + }); + + if (actives.length === 0) { + actives = null; + } + } + + if (actives) { + activesData = $(actives).not(this._selector).data(DATA_KEY$3); + + if (activesData && activesData._isTransitioning) { + return; + } + } + + var startEvent = $.Event(Event$3.SHOW); + $(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + if (actives) { + Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide'); + + if (!activesData) { + $(actives).data(DATA_KEY$3, null); + } + } + + var dimension = this._getDimension(); + + $(this._element).removeClass(ClassName$3.COLLAPSE).addClass(ClassName$3.COLLAPSING); + this._element.style[dimension] = 0; + + if (this._triggerArray.length) { + $(this._triggerArray).removeClass(ClassName$3.COLLAPSED).attr('aria-expanded', true); + } + + this.setTransitioning(true); + + var complete = function complete() { + $(_this._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).addClass(ClassName$3.SHOW); + _this._element.style[dimension] = ''; + + _this.setTransitioning(false); + + $(_this._element).trigger(Event$3.SHOWN); + }; + + var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); + var scrollSize = "scroll" + capitalizedDimension; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + this._element.style[dimension] = this._element[scrollSize] + "px"; + }; + + _proto.hide = function hide() { + var _this2 = this; + + if (this._isTransitioning || !$(this._element).hasClass(ClassName$3.SHOW)) { + return; + } + + var startEvent = $.Event(Event$3.HIDE); + $(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + var dimension = this._getDimension(); + + this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px"; + Util.reflow(this._element); + $(this._element).addClass(ClassName$3.COLLAPSING).removeClass(ClassName$3.COLLAPSE).removeClass(ClassName$3.SHOW); + var triggerArrayLength = this._triggerArray.length; + + if (triggerArrayLength > 0) { + for (var i = 0; i < triggerArrayLength; i++) { + var trigger = this._triggerArray[i]; + var selector = Util.getSelectorFromElement(trigger); + + if (selector !== null) { + var $elem = $([].slice.call(document.querySelectorAll(selector))); + + if (!$elem.hasClass(ClassName$3.SHOW)) { + $(trigger).addClass(ClassName$3.COLLAPSED).attr('aria-expanded', false); + } + } + } + } + + this.setTransitioning(true); + + var complete = function complete() { + _this2.setTransitioning(false); + + $(_this2._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).trigger(Event$3.HIDDEN); + }; + + this._element.style[dimension] = ''; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + }; + + _proto.setTransitioning = function setTransitioning(isTransitioning) { + this._isTransitioning = isTransitioning; + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$3); + this._config = null; + this._parent = null; + this._element = null; + this._triggerArray = null; + this._isTransitioning = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$1, config); + config.toggle = Boolean(config.toggle); // Coerce string values + + Util.typeCheckConfig(NAME$3, config, DefaultType$1); + return config; + }; + + _proto._getDimension = function _getDimension() { + var hasWidth = $(this._element).hasClass(Dimension.WIDTH); + return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT; + }; + + _proto._getParent = function _getParent() { + var _this3 = this; + + var parent; + + if (Util.isElement(this._config.parent)) { + parent = this._config.parent; // It's a jQuery object + + if (typeof this._config.parent.jquery !== 'undefined') { + parent = this._config.parent[0]; + } + } else { + parent = document.querySelector(this._config.parent); + } + + var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]"; + var children = [].slice.call(parent.querySelectorAll(selector)); + $(children).each(function (i, element) { + _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]); + }); + return parent; + }; + + _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) { + var isOpen = $(element).hasClass(ClassName$3.SHOW); + + if (triggerArray.length) { + $(triggerArray).toggleClass(ClassName$3.COLLAPSED, !isOpen).attr('aria-expanded', isOpen); + } + } // Static + ; + + Collapse._getTargetFromElement = function _getTargetFromElement(element) { + var selector = Util.getSelectorFromElement(element); + return selector ? document.querySelector(selector) : null; + }; + + Collapse._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $this = $(this); + var data = $this.data(DATA_KEY$3); + + var _config = _objectSpread({}, Default$1, $this.data(), typeof config === 'object' && config ? config : {}); + + if (!data && _config.toggle && /show|hide/.test(config)) { + _config.toggle = false; + } + + if (!data) { + data = new Collapse(this, _config); + $this.data(DATA_KEY$3, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Collapse, null, [{ + key: "VERSION", + get: function get() { + return VERSION$3; + } + }, { + key: "Default", + get: function get() { + return Default$1; + } + }]); + + return Collapse; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$3.CLICK_DATA_API, Selector$3.DATA_TOGGLE, function (event) { + // preventDefault only for elements (which change the URL) not inside the collapsible element + if (event.currentTarget.tagName === 'A') { + event.preventDefault(); + } + + var $trigger = $(this); + var selector = Util.getSelectorFromElement(this); + var selectors = [].slice.call(document.querySelectorAll(selector)); + $(selectors).each(function () { + var $target = $(this); + var data = $target.data(DATA_KEY$3); + var config = data ? 'toggle' : $trigger.data(); + + Collapse._jQueryInterface.call($target, config); + }); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$3] = Collapse._jQueryInterface; + $.fn[NAME$3].Constructor = Collapse; + + $.fn[NAME$3].noConflict = function () { + $.fn[NAME$3] = JQUERY_NO_CONFLICT$3; + return Collapse._jQueryInterface; + }; + + /**! + * @fileOverview Kickass library to create and place poppers near their reference elements. + * @version 1.14.7 + * @license + * Copyright (c) 2016 Federico Zivolo and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined'; + + var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox']; + var timeoutDuration = 0; + for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) { + if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) { + timeoutDuration = 1; + break; + } + } + + function microtaskDebounce(fn) { + var called = false; + return function () { + if (called) { + return; + } + called = true; + window.Promise.resolve().then(function () { + called = false; + fn(); + }); + }; + } + + function taskDebounce(fn) { + var scheduled = false; + return function () { + if (!scheduled) { + scheduled = true; + setTimeout(function () { + scheduled = false; + fn(); + }, timeoutDuration); + } + }; + } + + var supportsMicroTasks = isBrowser && window.Promise; + + /** + * Create a debounced version of a method, that's asynchronously deferred + * but called in the minimum time possible. + * + * @method + * @memberof Popper.Utils + * @argument {Function} fn + * @returns {Function} + */ + var debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce; + + /** + * Check if the given variable is a function + * @method + * @memberof Popper.Utils + * @argument {Any} functionToCheck - variable to check + * @returns {Boolean} answer to: is a function? + */ + function isFunction(functionToCheck) { + var getType = {}; + return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]'; + } + + /** + * Get CSS computed property of the given element + * @method + * @memberof Popper.Utils + * @argument {Eement} element + * @argument {String} property + */ + function getStyleComputedProperty(element, property) { + if (element.nodeType !== 1) { + return []; + } + // NOTE: 1 DOM access here + var window = element.ownerDocument.defaultView; + var css = window.getComputedStyle(element, null); + return property ? css[property] : css; + } + + /** + * Returns the parentNode or the host of the element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} parent + */ + function getParentNode(element) { + if (element.nodeName === 'HTML') { + return element; + } + return element.parentNode || element.host; + } + + /** + * Returns the scrolling parent of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} scroll parent + */ + function getScrollParent(element) { + // Return body, `getScroll` will take care to get the correct `scrollTop` from it + if (!element) { + return document.body; + } + + switch (element.nodeName) { + case 'HTML': + case 'BODY': + return element.ownerDocument.body; + case '#document': + return element.body; + } + + // Firefox want us to check `-x` and `-y` variations as well + + var _getStyleComputedProp = getStyleComputedProperty(element), + overflow = _getStyleComputedProp.overflow, + overflowX = _getStyleComputedProp.overflowX, + overflowY = _getStyleComputedProp.overflowY; + + if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) { + return element; + } + + return getScrollParent(getParentNode(element)); + } + + var isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode); + var isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent); + + /** + * Determines if the browser is Internet Explorer + * @method + * @memberof Popper.Utils + * @param {Number} version to check + * @returns {Boolean} isIE + */ + function isIE(version) { + if (version === 11) { + return isIE11; + } + if (version === 10) { + return isIE10; + } + return isIE11 || isIE10; + } + + /** + * Returns the offset parent of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} offset parent + */ + function getOffsetParent(element) { + if (!element) { + return document.documentElement; + } + + var noOffsetParent = isIE(10) ? document.body : null; + + // NOTE: 1 DOM access here + var offsetParent = element.offsetParent || null; + // Skip hidden elements which don't have an offsetParent + while (offsetParent === noOffsetParent && element.nextElementSibling) { + offsetParent = (element = element.nextElementSibling).offsetParent; + } + + var nodeName = offsetParent && offsetParent.nodeName; + + if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') { + return element ? element.ownerDocument.documentElement : document.documentElement; + } + + // .offsetParent will return the closest TH, TD or TABLE in case + // no offsetParent is present, I hate this job... + if (['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') { + return getOffsetParent(offsetParent); + } + + return offsetParent; + } + + function isOffsetContainer(element) { + var nodeName = element.nodeName; + + if (nodeName === 'BODY') { + return false; + } + return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element; + } + + /** + * Finds the root node (document, shadowDOM root) of the given element + * @method + * @memberof Popper.Utils + * @argument {Element} node + * @returns {Element} root node + */ + function getRoot(node) { + if (node.parentNode !== null) { + return getRoot(node.parentNode); + } + + return node; + } + + /** + * Finds the offset parent common to the two provided nodes + * @method + * @memberof Popper.Utils + * @argument {Element} element1 + * @argument {Element} element2 + * @returns {Element} common offset parent + */ + function findCommonOffsetParent(element1, element2) { + // This check is needed to avoid errors in case one of the elements isn't defined for any reason + if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) { + return document.documentElement; + } + + // Here we make sure to give as "start" the element that comes first in the DOM + var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING; + var start = order ? element1 : element2; + var end = order ? element2 : element1; + + // Get common ancestor container + var range = document.createRange(); + range.setStart(start, 0); + range.setEnd(end, 0); + var commonAncestorContainer = range.commonAncestorContainer; + + // Both nodes are inside #document + + if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) { + if (isOffsetContainer(commonAncestorContainer)) { + return commonAncestorContainer; + } + + return getOffsetParent(commonAncestorContainer); + } + + // one of the nodes is inside shadowDOM, find which one + var element1root = getRoot(element1); + if (element1root.host) { + return findCommonOffsetParent(element1root.host, element2); + } else { + return findCommonOffsetParent(element1, getRoot(element2).host); + } + } + + /** + * Gets the scroll value of the given element in the given side (top and left) + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @argument {String} side `top` or `left` + * @returns {number} amount of scrolled pixels + */ + function getScroll(element) { + var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top'; + + var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft'; + var nodeName = element.nodeName; + + if (nodeName === 'BODY' || nodeName === 'HTML') { + var html = element.ownerDocument.documentElement; + var scrollingElement = element.ownerDocument.scrollingElement || html; + return scrollingElement[upperSide]; + } + + return element[upperSide]; + } + + /* + * Sum or subtract the element scroll values (left and top) from a given rect object + * @method + * @memberof Popper.Utils + * @param {Object} rect - Rect object you want to change + * @param {HTMLElement} element - The element from the function reads the scroll values + * @param {Boolean} subtract - set to true if you want to subtract the scroll values + * @return {Object} rect - The modifier rect object + */ + function includeScroll(rect, element) { + var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + var scrollTop = getScroll(element, 'top'); + var scrollLeft = getScroll(element, 'left'); + var modifier = subtract ? -1 : 1; + rect.top += scrollTop * modifier; + rect.bottom += scrollTop * modifier; + rect.left += scrollLeft * modifier; + rect.right += scrollLeft * modifier; + return rect; + } + + /* + * Helper to detect borders of a given element + * @method + * @memberof Popper.Utils + * @param {CSSStyleDeclaration} styles + * Result of `getStyleComputedProperty` on the given element + * @param {String} axis - `x` or `y` + * @return {number} borders - The borders size of the given axis + */ + + function getBordersSize(styles, axis) { + var sideA = axis === 'x' ? 'Left' : 'Top'; + var sideB = sideA === 'Left' ? 'Right' : 'Bottom'; + + return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10); + } + + function getSize(axis, body, html, computedStyle) { + return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0); + } + + function getWindowSizes(document) { + var body = document.body; + var html = document.documentElement; + var computedStyle = isIE(10) && getComputedStyle(html); + + return { + height: getSize('Height', body, html, computedStyle), + width: getSize('Width', body, html, computedStyle) + }; + } + + var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + }; + + var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; + }(); + + + + + + var defineProperty = function (obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + }; + + var _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; + }; + + /** + * Given element offsets, generate an output similar to getBoundingClientRect + * @method + * @memberof Popper.Utils + * @argument {Object} offsets + * @returns {Object} ClientRect like output + */ + function getClientRect(offsets) { + return _extends({}, offsets, { + right: offsets.left + offsets.width, + bottom: offsets.top + offsets.height + }); + } + + /** + * Get bounding client rect of given element + * @method + * @memberof Popper.Utils + * @param {HTMLElement} element + * @return {Object} client rect + */ + function getBoundingClientRect(element) { + var rect = {}; + + // IE10 10 FIX: Please, don't ask, the element isn't + // considered in DOM in some circumstances... + // This isn't reproducible in IE10 compatibility mode of IE11 + try { + if (isIE(10)) { + rect = element.getBoundingClientRect(); + var scrollTop = getScroll(element, 'top'); + var scrollLeft = getScroll(element, 'left'); + rect.top += scrollTop; + rect.left += scrollLeft; + rect.bottom += scrollTop; + rect.right += scrollLeft; + } else { + rect = element.getBoundingClientRect(); + } + } catch (e) {} + + var result = { + left: rect.left, + top: rect.top, + width: rect.right - rect.left, + height: rect.bottom - rect.top + }; + + // subtract scrollbar size from sizes + var sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {}; + var width = sizes.width || element.clientWidth || result.right - result.left; + var height = sizes.height || element.clientHeight || result.bottom - result.top; + + var horizScrollbar = element.offsetWidth - width; + var vertScrollbar = element.offsetHeight - height; + + // if an hypothetical scrollbar is detected, we must be sure it's not a `border` + // we make this check conditional for performance reasons + if (horizScrollbar || vertScrollbar) { + var styles = getStyleComputedProperty(element); + horizScrollbar -= getBordersSize(styles, 'x'); + vertScrollbar -= getBordersSize(styles, 'y'); + + result.width -= horizScrollbar; + result.height -= vertScrollbar; + } + + return getClientRect(result); + } + + function getOffsetRectRelativeToArbitraryNode(children, parent) { + var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + + var isIE10 = isIE(10); + var isHTML = parent.nodeName === 'HTML'; + var childrenRect = getBoundingClientRect(children); + var parentRect = getBoundingClientRect(parent); + var scrollParent = getScrollParent(children); + + var styles = getStyleComputedProperty(parent); + var borderTopWidth = parseFloat(styles.borderTopWidth, 10); + var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10); + + // In cases where the parent is fixed, we must ignore negative scroll in offset calc + if (fixedPosition && isHTML) { + parentRect.top = Math.max(parentRect.top, 0); + parentRect.left = Math.max(parentRect.left, 0); + } + var offsets = getClientRect({ + top: childrenRect.top - parentRect.top - borderTopWidth, + left: childrenRect.left - parentRect.left - borderLeftWidth, + width: childrenRect.width, + height: childrenRect.height + }); + offsets.marginTop = 0; + offsets.marginLeft = 0; + + // Subtract margins of documentElement in case it's being used as parent + // we do this only on HTML because it's the only element that behaves + // differently when margins are applied to it. The margins are included in + // the box of the documentElement, in the other cases not. + if (!isIE10 && isHTML) { + var marginTop = parseFloat(styles.marginTop, 10); + var marginLeft = parseFloat(styles.marginLeft, 10); + + offsets.top -= borderTopWidth - marginTop; + offsets.bottom -= borderTopWidth - marginTop; + offsets.left -= borderLeftWidth - marginLeft; + offsets.right -= borderLeftWidth - marginLeft; + + // Attach marginTop and marginLeft because in some circumstances we may need them + offsets.marginTop = marginTop; + offsets.marginLeft = marginLeft; + } + + if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') { + offsets = includeScroll(offsets, parent); + } + + return offsets; + } + + function getViewportOffsetRectRelativeToArtbitraryNode(element) { + var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + var html = element.ownerDocument.documentElement; + var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html); + var width = Math.max(html.clientWidth, window.innerWidth || 0); + var height = Math.max(html.clientHeight, window.innerHeight || 0); + + var scrollTop = !excludeScroll ? getScroll(html) : 0; + var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0; + + var offset = { + top: scrollTop - relativeOffset.top + relativeOffset.marginTop, + left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft, + width: width, + height: height + }; + + return getClientRect(offset); + } + + /** + * Check if the given element is fixed or is inside a fixed parent + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @argument {Element} customContainer + * @returns {Boolean} answer to "isFixed?" + */ + function isFixed(element) { + var nodeName = element.nodeName; + if (nodeName === 'BODY' || nodeName === 'HTML') { + return false; + } + if (getStyleComputedProperty(element, 'position') === 'fixed') { + return true; + } + var parentNode = getParentNode(element); + if (!parentNode) { + return false; + } + return isFixed(parentNode); + } + + /** + * Finds the first parent of an element that has a transformed property defined + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Element} first transformed parent or documentElement + */ + + function getFixedPositionOffsetParent(element) { + // This check is needed to avoid errors in case one of the elements isn't defined for any reason + if (!element || !element.parentElement || isIE()) { + return document.documentElement; + } + var el = element.parentElement; + while (el && getStyleComputedProperty(el, 'transform') === 'none') { + el = el.parentElement; + } + return el || document.documentElement; + } + + /** + * Computed the boundaries limits and return them + * @method + * @memberof Popper.Utils + * @param {HTMLElement} popper + * @param {HTMLElement} reference + * @param {number} padding + * @param {HTMLElement} boundariesElement - Element used to define the boundaries + * @param {Boolean} fixedPosition - Is in fixed position mode + * @returns {Object} Coordinates of the boundaries + */ + function getBoundaries(popper, reference, padding, boundariesElement) { + var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false; + + // NOTE: 1 DOM access here + + var boundaries = { top: 0, left: 0 }; + var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); + + // Handle viewport case + if (boundariesElement === 'viewport') { + boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition); + } else { + // Handle other cases based on DOM element used as boundaries + var boundariesNode = void 0; + if (boundariesElement === 'scrollParent') { + boundariesNode = getScrollParent(getParentNode(reference)); + if (boundariesNode.nodeName === 'BODY') { + boundariesNode = popper.ownerDocument.documentElement; + } + } else if (boundariesElement === 'window') { + boundariesNode = popper.ownerDocument.documentElement; + } else { + boundariesNode = boundariesElement; + } + + var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition); + + // In case of HTML, we need a different computation + if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) { + var _getWindowSizes = getWindowSizes(popper.ownerDocument), + height = _getWindowSizes.height, + width = _getWindowSizes.width; + + boundaries.top += offsets.top - offsets.marginTop; + boundaries.bottom = height + offsets.top; + boundaries.left += offsets.left - offsets.marginLeft; + boundaries.right = width + offsets.left; + } else { + // for all the other DOM elements, this one is good + boundaries = offsets; + } + } + + // Add paddings + padding = padding || 0; + var isPaddingNumber = typeof padding === 'number'; + boundaries.left += isPaddingNumber ? padding : padding.left || 0; + boundaries.top += isPaddingNumber ? padding : padding.top || 0; + boundaries.right -= isPaddingNumber ? padding : padding.right || 0; + boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0; + + return boundaries; + } + + function getArea(_ref) { + var width = _ref.width, + height = _ref.height; + + return width * height; + } + + /** + * Utility used to transform the `auto` placement to the placement with more + * available space. + * @method + * @memberof Popper.Utils + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) { + var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0; + + if (placement.indexOf('auto') === -1) { + return placement; + } + + var boundaries = getBoundaries(popper, reference, padding, boundariesElement); + + var rects = { + top: { + width: boundaries.width, + height: refRect.top - boundaries.top + }, + right: { + width: boundaries.right - refRect.right, + height: boundaries.height + }, + bottom: { + width: boundaries.width, + height: boundaries.bottom - refRect.bottom + }, + left: { + width: refRect.left - boundaries.left, + height: boundaries.height + } + }; + + var sortedAreas = Object.keys(rects).map(function (key) { + return _extends({ + key: key + }, rects[key], { + area: getArea(rects[key]) + }); + }).sort(function (a, b) { + return b.area - a.area; + }); + + var filteredAreas = sortedAreas.filter(function (_ref2) { + var width = _ref2.width, + height = _ref2.height; + return width >= popper.clientWidth && height >= popper.clientHeight; + }); + + var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key; + + var variation = placement.split('-')[1]; + + return computedPlacement + (variation ? '-' + variation : ''); + } + + /** + * Get offsets to the reference element + * @method + * @memberof Popper.Utils + * @param {Object} state + * @param {Element} popper - the popper element + * @param {Element} reference - the reference element (the popper will be relative to this) + * @param {Element} fixedPosition - is in fixed position mode + * @returns {Object} An object containing the offsets which will be applied to the popper + */ + function getReferenceOffsets(state, popper, reference) { + var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + + var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference); + return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition); + } + + /** + * Get the outer sizes of the given element (offset size + margins) + * @method + * @memberof Popper.Utils + * @argument {Element} element + * @returns {Object} object containing width and height properties + */ + function getOuterSizes(element) { + var window = element.ownerDocument.defaultView; + var styles = window.getComputedStyle(element); + var x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0); + var y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0); + var result = { + width: element.offsetWidth + y, + height: element.offsetHeight + x + }; + return result; + } + + /** + * Get the opposite placement of the given one + * @method + * @memberof Popper.Utils + * @argument {String} placement + * @returns {String} flipped placement + */ + function getOppositePlacement(placement) { + var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; + return placement.replace(/left|right|bottom|top/g, function (matched) { + return hash[matched]; + }); + } + + /** + * Get offsets to the popper + * @method + * @memberof Popper.Utils + * @param {Object} position - CSS position the Popper will get applied + * @param {HTMLElement} popper - the popper element + * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this) + * @param {String} placement - one of the valid placement options + * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper + */ + function getPopperOffsets(popper, referenceOffsets, placement) { + placement = placement.split('-')[0]; + + // Get popper node sizes + var popperRect = getOuterSizes(popper); + + // Add position, width and height to our offsets object + var popperOffsets = { + width: popperRect.width, + height: popperRect.height + }; + + // depending by the popper placement we have to compute its offsets slightly differently + var isHoriz = ['right', 'left'].indexOf(placement) !== -1; + var mainSide = isHoriz ? 'top' : 'left'; + var secondarySide = isHoriz ? 'left' : 'top'; + var measurement = isHoriz ? 'height' : 'width'; + var secondaryMeasurement = !isHoriz ? 'height' : 'width'; + + popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2; + if (placement === secondarySide) { + popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement]; + } else { + popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)]; + } + + return popperOffsets; + } + + /** + * Mimics the `find` method of Array + * @method + * @memberof Popper.Utils + * @argument {Array} arr + * @argument prop + * @argument value + * @returns index or -1 + */ + function find(arr, check) { + // use native find if supported + if (Array.prototype.find) { + return arr.find(check); + } + + // use `filter` to obtain the same behavior of `find` + return arr.filter(check)[0]; + } + + /** + * Return the index of the matching object + * @method + * @memberof Popper.Utils + * @argument {Array} arr + * @argument prop + * @argument value + * @returns index or -1 + */ + function findIndex(arr, prop, value) { + // use native findIndex if supported + if (Array.prototype.findIndex) { + return arr.findIndex(function (cur) { + return cur[prop] === value; + }); + } + + // use `find` + `indexOf` if `findIndex` isn't supported + var match = find(arr, function (obj) { + return obj[prop] === value; + }); + return arr.indexOf(match); + } + + /** + * Loop trough the list of modifiers and run them in order, + * each of them will then edit the data object. + * @method + * @memberof Popper.Utils + * @param {dataObject} data + * @param {Array} modifiers + * @param {String} ends - Optional modifier name used as stopper + * @returns {dataObject} + */ + function runModifiers(modifiers, data, ends) { + var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends)); + + modifiersToRun.forEach(function (modifier) { + if (modifier['function']) { + // eslint-disable-line dot-notation + console.warn('`modifier.function` is deprecated, use `modifier.fn`!'); + } + var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation + if (modifier.enabled && isFunction(fn)) { + // Add properties to offsets to make them a complete clientRect object + // we do this before each modifier to make sure the previous one doesn't + // mess with these values + data.offsets.popper = getClientRect(data.offsets.popper); + data.offsets.reference = getClientRect(data.offsets.reference); + + data = fn(data, modifier); + } + }); + + return data; + } + + /** + * Updates the position of the popper, computing the new offsets and applying + * the new style.
+ * Prefer `scheduleUpdate` over `update` because of performance reasons. + * @method + * @memberof Popper + */ + function update() { + // if popper is destroyed, don't perform any further update + if (this.state.isDestroyed) { + return; + } + + var data = { + instance: this, + styles: {}, + arrowStyles: {}, + attributes: {}, + flipped: false, + offsets: {} + }; + + // compute reference element offsets + data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed); + + // compute auto placement, store placement inside the data object, + // modifiers will be able to edit `placement` if needed + // and refer to originalPlacement to know the original value + data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding); + + // store the computed placement inside `originalPlacement` + data.originalPlacement = data.placement; + + data.positionFixed = this.options.positionFixed; + + // compute the popper offsets + data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement); + + data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute'; + + // run the modifiers + data = runModifiers(this.modifiers, data); + + // the first `update` will call `onCreate` callback + // the other ones will call `onUpdate` callback + if (!this.state.isCreated) { + this.state.isCreated = true; + this.options.onCreate(data); + } else { + this.options.onUpdate(data); + } + } + + /** + * Helper used to know if the given modifier is enabled. + * @method + * @memberof Popper.Utils + * @returns {Boolean} + */ + function isModifierEnabled(modifiers, modifierName) { + return modifiers.some(function (_ref) { + var name = _ref.name, + enabled = _ref.enabled; + return enabled && name === modifierName; + }); + } + + /** + * Get the prefixed supported property name + * @method + * @memberof Popper.Utils + * @argument {String} property (camelCase) + * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix) + */ + function getSupportedPropertyName(property) { + var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O']; + var upperProp = property.charAt(0).toUpperCase() + property.slice(1); + + for (var i = 0; i < prefixes.length; i++) { + var prefix = prefixes[i]; + var toCheck = prefix ? '' + prefix + upperProp : property; + if (typeof document.body.style[toCheck] !== 'undefined') { + return toCheck; + } + } + return null; + } + + /** + * Destroys the popper. + * @method + * @memberof Popper + */ + function destroy() { + this.state.isDestroyed = true; + + // touch DOM only if `applyStyle` modifier is enabled + if (isModifierEnabled(this.modifiers, 'applyStyle')) { + this.popper.removeAttribute('x-placement'); + this.popper.style.position = ''; + this.popper.style.top = ''; + this.popper.style.left = ''; + this.popper.style.right = ''; + this.popper.style.bottom = ''; + this.popper.style.willChange = ''; + this.popper.style[getSupportedPropertyName('transform')] = ''; + } + + this.disableEventListeners(); + + // remove the popper if user explicity asked for the deletion on destroy + // do not use `remove` because IE11 doesn't support it + if (this.options.removeOnDestroy) { + this.popper.parentNode.removeChild(this.popper); + } + return this; + } + + /** + * Get the window associated with the element + * @argument {Element} element + * @returns {Window} + */ + function getWindow(element) { + var ownerDocument = element.ownerDocument; + return ownerDocument ? ownerDocument.defaultView : window; + } + + function attachToScrollParents(scrollParent, event, callback, scrollParents) { + var isBody = scrollParent.nodeName === 'BODY'; + var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent; + target.addEventListener(event, callback, { passive: true }); + + if (!isBody) { + attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents); + } + scrollParents.push(target); + } + + /** + * Setup needed event listeners used to update the popper position + * @method + * @memberof Popper.Utils + * @private + */ + function setupEventListeners(reference, options, state, updateBound) { + // Resize event listener on window + state.updateBound = updateBound; + getWindow(reference).addEventListener('resize', state.updateBound, { passive: true }); + + // Scroll event listener on scroll parents + var scrollElement = getScrollParent(reference); + attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents); + state.scrollElement = scrollElement; + state.eventsEnabled = true; + + return state; + } + + /** + * It will add resize/scroll events and start recalculating + * position of the popper element when they are triggered. + * @method + * @memberof Popper + */ + function enableEventListeners() { + if (!this.state.eventsEnabled) { + this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate); + } + } + + /** + * Remove event listeners used to update the popper position + * @method + * @memberof Popper.Utils + * @private + */ + function removeEventListeners(reference, state) { + // Remove resize event listener on window + getWindow(reference).removeEventListener('resize', state.updateBound); + + // Remove scroll event listener on scroll parents + state.scrollParents.forEach(function (target) { + target.removeEventListener('scroll', state.updateBound); + }); + + // Reset state + state.updateBound = null; + state.scrollParents = []; + state.scrollElement = null; + state.eventsEnabled = false; + return state; + } + + /** + * It will remove resize/scroll events and won't recalculate popper position + * when they are triggered. It also won't trigger `onUpdate` callback anymore, + * unless you call `update` method manually. + * @method + * @memberof Popper + */ + function disableEventListeners() { + if (this.state.eventsEnabled) { + cancelAnimationFrame(this.scheduleUpdate); + this.state = removeEventListeners(this.reference, this.state); + } + } + + /** + * Tells if a given input is a number + * @method + * @memberof Popper.Utils + * @param {*} input to check + * @return {Boolean} + */ + function isNumeric(n) { + return n !== '' && !isNaN(parseFloat(n)) && isFinite(n); + } + + /** + * Set the style to the given popper + * @method + * @memberof Popper.Utils + * @argument {Element} element - Element to apply the style to + * @argument {Object} styles + * Object with a list of properties and values which will be applied to the element + */ + function setStyles(element, styles) { + Object.keys(styles).forEach(function (prop) { + var unit = ''; + // add unit if the value is numeric and is one of the following + if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) { + unit = 'px'; + } + element.style[prop] = styles[prop] + unit; + }); + } + + /** + * Set the attributes to the given popper + * @method + * @memberof Popper.Utils + * @argument {Element} element - Element to apply the attributes to + * @argument {Object} styles + * Object with a list of properties and values which will be applied to the element + */ + function setAttributes(element, attributes) { + Object.keys(attributes).forEach(function (prop) { + var value = attributes[prop]; + if (value !== false) { + element.setAttribute(prop, attributes[prop]); + } else { + element.removeAttribute(prop); + } + }); + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} data.styles - List of style properties - values to apply to popper element + * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The same data object + */ + function applyStyle(data) { + // any property present in `data.styles` will be applied to the popper, + // in this way we can make the 3rd party modifiers add custom styles to it + // Be aware, modifiers could override the properties defined in the previous + // lines of this modifier! + setStyles(data.instance.popper, data.styles); + + // any property present in `data.attributes` will be applied to the popper, + // they will be set as HTML attributes of the element + setAttributes(data.instance.popper, data.attributes); + + // if arrowElement is defined and arrowStyles has some properties + if (data.arrowElement && Object.keys(data.arrowStyles).length) { + setStyles(data.arrowElement, data.arrowStyles); + } + + return data; + } + + /** + * Set the x-placement attribute before everything else because it could be used + * to add margins to the popper margins needs to be calculated to get the + * correct popper offsets. + * @method + * @memberof Popper.modifiers + * @param {HTMLElement} reference - The reference element used to position the popper + * @param {HTMLElement} popper - The HTML element used as popper + * @param {Object} options - Popper.js options + */ + function applyStyleOnLoad(reference, popper, options, modifierOptions, state) { + // compute reference element offsets + var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed); + + // compute auto placement, store placement inside the data object, + // modifiers will be able to edit `placement` if needed + // and refer to originalPlacement to know the original value + var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding); + + popper.setAttribute('x-placement', placement); + + // Apply `position` to popper before anything else because + // without the position applied we can't guarantee correct computations + setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' }); + + return options; + } + + /** + * @function + * @memberof Popper.Utils + * @argument {Object} data - The data object generated by `update` method + * @argument {Boolean} shouldRound - If the offsets should be rounded at all + * @returns {Object} The popper's position offsets rounded + * + * The tale of pixel-perfect positioning. It's still not 100% perfect, but as + * good as it can be within reason. + * Discussion here: https://github.com/FezVrasta/popper.js/pull/715 + * + * Low DPI screens cause a popper to be blurry if not using full pixels (Safari + * as well on High DPI screens). + * + * Firefox prefers no rounding for positioning and does not have blurriness on + * high DPI screens. + * + * Only horizontal placement and left/right values need to be considered. + */ + function getRoundedOffsets(data, shouldRound) { + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + var round = Math.round, + floor = Math.floor; + + var noRound = function noRound(v) { + return v; + }; + + var referenceWidth = round(reference.width); + var popperWidth = round(popper.width); + + var isVertical = ['left', 'right'].indexOf(data.placement) !== -1; + var isVariation = data.placement.indexOf('-') !== -1; + var sameWidthParity = referenceWidth % 2 === popperWidth % 2; + var bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1; + + var horizontalToInteger = !shouldRound ? noRound : isVertical || isVariation || sameWidthParity ? round : floor; + var verticalToInteger = !shouldRound ? noRound : round; + + return { + left: horizontalToInteger(bothOddWidth && !isVariation && shouldRound ? popper.left - 1 : popper.left), + top: verticalToInteger(popper.top), + bottom: verticalToInteger(popper.bottom), + right: horizontalToInteger(popper.right) + }; + } + + var isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent); + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function computeStyle(data, options) { + var x = options.x, + y = options.y; + var popper = data.offsets.popper; + + // Remove this legacy support in Popper.js v2 + + var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) { + return modifier.name === 'applyStyle'; + }).gpuAcceleration; + if (legacyGpuAccelerationOption !== undefined) { + console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!'); + } + var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration; + + var offsetParent = getOffsetParent(data.instance.popper); + var offsetParentRect = getBoundingClientRect(offsetParent); + + // Styles + var styles = { + position: popper.position + }; + + var offsets = getRoundedOffsets(data, window.devicePixelRatio < 2 || !isFirefox); + + var sideA = x === 'bottom' ? 'top' : 'bottom'; + var sideB = y === 'right' ? 'left' : 'right'; + + // if gpuAcceleration is set to `true` and transform is supported, + // we use `translate3d` to apply the position to the popper we + // automatically use the supported prefixed version if needed + var prefixedProperty = getSupportedPropertyName('transform'); + + // now, let's make a step back and look at this code closely (wtf?) + // If the content of the popper grows once it's been positioned, it + // may happen that the popper gets misplaced because of the new content + // overflowing its reference element + // To avoid this problem, we provide two options (x and y), which allow + // the consumer to define the offset origin. + // If we position a popper on top of a reference element, we can set + // `x` to `top` to make the popper grow towards its top instead of + // its bottom. + var left = void 0, + top = void 0; + if (sideA === 'bottom') { + // when offsetParent is the positioning is relative to the bottom of the screen (excluding the scrollbar) + // and not the bottom of the html element + if (offsetParent.nodeName === 'HTML') { + top = -offsetParent.clientHeight + offsets.bottom; + } else { + top = -offsetParentRect.height + offsets.bottom; + } + } else { + top = offsets.top; + } + if (sideB === 'right') { + if (offsetParent.nodeName === 'HTML') { + left = -offsetParent.clientWidth + offsets.right; + } else { + left = -offsetParentRect.width + offsets.right; + } + } else { + left = offsets.left; + } + if (gpuAcceleration && prefixedProperty) { + styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)'; + styles[sideA] = 0; + styles[sideB] = 0; + styles.willChange = 'transform'; + } else { + // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties + var invertTop = sideA === 'bottom' ? -1 : 1; + var invertLeft = sideB === 'right' ? -1 : 1; + styles[sideA] = top * invertTop; + styles[sideB] = left * invertLeft; + styles.willChange = sideA + ', ' + sideB; + } + + // Attributes + var attributes = { + 'x-placement': data.placement + }; + + // Update `data` attributes, styles and arrowStyles + data.attributes = _extends({}, attributes, data.attributes); + data.styles = _extends({}, styles, data.styles); + data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles); + + return data; + } + + /** + * Helper used to know if the given modifier depends from another one.
+ * It checks if the needed modifier is listed and enabled. + * @method + * @memberof Popper.Utils + * @param {Array} modifiers - list of modifiers + * @param {String} requestingName - name of requesting modifier + * @param {String} requestedName - name of requested modifier + * @returns {Boolean} + */ + function isModifierRequired(modifiers, requestingName, requestedName) { + var requesting = find(modifiers, function (_ref) { + var name = _ref.name; + return name === requestingName; + }); + + var isRequired = !!requesting && modifiers.some(function (modifier) { + return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order; + }); + + if (!isRequired) { + var _requesting = '`' + requestingName + '`'; + var requested = '`' + requestedName + '`'; + console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!'); + } + return isRequired; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function arrow(data, options) { + var _data$offsets$arrow; + + // arrow depends on keepTogether in order to work + if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) { + return data; + } + + var arrowElement = options.element; + + // if arrowElement is a string, suppose it's a CSS selector + if (typeof arrowElement === 'string') { + arrowElement = data.instance.popper.querySelector(arrowElement); + + // if arrowElement is not found, don't run the modifier + if (!arrowElement) { + return data; + } + } else { + // if the arrowElement isn't a query selector we must check that the + // provided DOM node is child of its popper node + if (!data.instance.popper.contains(arrowElement)) { + console.warn('WARNING: `arrow.element` must be child of its popper element!'); + return data; + } + } + + var placement = data.placement.split('-')[0]; + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var isVertical = ['left', 'right'].indexOf(placement) !== -1; + + var len = isVertical ? 'height' : 'width'; + var sideCapitalized = isVertical ? 'Top' : 'Left'; + var side = sideCapitalized.toLowerCase(); + var altSide = isVertical ? 'left' : 'top'; + var opSide = isVertical ? 'bottom' : 'right'; + var arrowElementSize = getOuterSizes(arrowElement)[len]; + + // + // extends keepTogether behavior making sure the popper and its + // reference have enough pixels in conjunction + // + + // top/left side + if (reference[opSide] - arrowElementSize < popper[side]) { + data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize); + } + // bottom/right side + if (reference[side] + arrowElementSize > popper[opSide]) { + data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide]; + } + data.offsets.popper = getClientRect(data.offsets.popper); + + // compute center of the popper + var center = reference[side] + reference[len] / 2 - arrowElementSize / 2; + + // Compute the sideValue using the updated popper offsets + // take popper margin in account because we don't have this info available + var css = getStyleComputedProperty(data.instance.popper); + var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10); + var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10); + var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide; + + // prevent arrowElement from being placed not contiguously to its popper + sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0); + + data.arrowElement = arrowElement; + data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow); + + return data; + } + + /** + * Get the opposite placement variation of the given one + * @method + * @memberof Popper.Utils + * @argument {String} placement variation + * @returns {String} flipped placement variation + */ + function getOppositeVariation(variation) { + if (variation === 'end') { + return 'start'; + } else if (variation === 'start') { + return 'end'; + } + return variation; + } + + /** + * List of accepted placements to use as values of the `placement` option.
+ * Valid placements are: + * - `auto` + * - `top` + * - `right` + * - `bottom` + * - `left` + * + * Each placement can have a variation from this list: + * - `-start` + * - `-end` + * + * Variations are interpreted easily if you think of them as the left to right + * written languages. Horizontally (`top` and `bottom`), `start` is left and `end` + * is right.
+ * Vertically (`left` and `right`), `start` is top and `end` is bottom. + * + * Some valid examples are: + * - `top-end` (on top of reference, right aligned) + * - `right-start` (on right of reference, top aligned) + * - `bottom` (on bottom, centered) + * - `auto-end` (on the side with more space available, alignment depends by placement) + * + * @static + * @type {Array} + * @enum {String} + * @readonly + * @method placements + * @memberof Popper + */ + var placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start']; + + // Get rid of `auto` `auto-start` and `auto-end` + var validPlacements = placements.slice(3); + + /** + * Given an initial placement, returns all the subsequent placements + * clockwise (or counter-clockwise). + * + * @method + * @memberof Popper.Utils + * @argument {String} placement - A valid placement (it accepts variations) + * @argument {Boolean} counter - Set to true to walk the placements counterclockwise + * @returns {Array} placements including their variations + */ + function clockwise(placement) { + var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + + var index = validPlacements.indexOf(placement); + var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index)); + return counter ? arr.reverse() : arr; + } + + var BEHAVIORS = { + FLIP: 'flip', + CLOCKWISE: 'clockwise', + COUNTERCLOCKWISE: 'counterclockwise' + }; + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function flip(data, options) { + // if `inner` modifier is enabled, we can't use the `flip` modifier + if (isModifierEnabled(data.instance.modifiers, 'inner')) { + return data; + } + + if (data.flipped && data.placement === data.originalPlacement) { + // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides + return data; + } + + var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed); + + var placement = data.placement.split('-')[0]; + var placementOpposite = getOppositePlacement(placement); + var variation = data.placement.split('-')[1] || ''; + + var flipOrder = []; + + switch (options.behavior) { + case BEHAVIORS.FLIP: + flipOrder = [placement, placementOpposite]; + break; + case BEHAVIORS.CLOCKWISE: + flipOrder = clockwise(placement); + break; + case BEHAVIORS.COUNTERCLOCKWISE: + flipOrder = clockwise(placement, true); + break; + default: + flipOrder = options.behavior; + } + + flipOrder.forEach(function (step, index) { + if (placement !== step || flipOrder.length === index + 1) { + return data; + } + + placement = data.placement.split('-')[0]; + placementOpposite = getOppositePlacement(placement); + + var popperOffsets = data.offsets.popper; + var refOffsets = data.offsets.reference; + + // using floor because the reference offsets may contain decimals we are not going to consider here + var floor = Math.floor; + var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom); + + var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left); + var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right); + var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top); + var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom); + + var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom; + + // flip the variation if required + var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; + var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom); + + if (overlapsRef || overflowsBoundaries || flippedVariation) { + // this boolean to detect any flip loop + data.flipped = true; + + if (overlapsRef || overflowsBoundaries) { + placement = flipOrder[index + 1]; + } + + if (flippedVariation) { + variation = getOppositeVariation(variation); + } + + data.placement = placement + (variation ? '-' + variation : ''); + + // this object contains `position`, we want to preserve it along with + // any additional property we may add in the future + data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement)); + + data = runModifiers(data.instance.modifiers, data, 'flip'); + } + }); + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function keepTogether(data) { + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var placement = data.placement.split('-')[0]; + var floor = Math.floor; + var isVertical = ['top', 'bottom'].indexOf(placement) !== -1; + var side = isVertical ? 'right' : 'bottom'; + var opSide = isVertical ? 'left' : 'top'; + var measurement = isVertical ? 'width' : 'height'; + + if (popper[side] < floor(reference[opSide])) { + data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement]; + } + if (popper[opSide] > floor(reference[side])) { + data.offsets.popper[opSide] = floor(reference[side]); + } + + return data; + } + + /** + * Converts a string containing value + unit into a px value number + * @function + * @memberof {modifiers~offset} + * @private + * @argument {String} str - Value + unit string + * @argument {String} measurement - `height` or `width` + * @argument {Object} popperOffsets + * @argument {Object} referenceOffsets + * @returns {Number|String} + * Value in pixels, or original string if no values were extracted + */ + function toValue(str, measurement, popperOffsets, referenceOffsets) { + // separate value from unit + var split = str.match(/((?:\-|\+)?\d*\.?\d*)(.*)/); + var value = +split[1]; + var unit = split[2]; + + // If it's not a number it's an operator, I guess + if (!value) { + return str; + } + + if (unit.indexOf('%') === 0) { + var element = void 0; + switch (unit) { + case '%p': + element = popperOffsets; + break; + case '%': + case '%r': + default: + element = referenceOffsets; + } + + var rect = getClientRect(element); + return rect[measurement] / 100 * value; + } else if (unit === 'vh' || unit === 'vw') { + // if is a vh or vw, we calculate the size based on the viewport + var size = void 0; + if (unit === 'vh') { + size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); + } else { + size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); + } + return size / 100 * value; + } else { + // if is an explicit pixel unit, we get rid of the unit and keep the value + // if is an implicit unit, it's px, and we return just the value + return value; + } + } + + /** + * Parse an `offset` string to extrapolate `x` and `y` numeric offsets. + * @function + * @memberof {modifiers~offset} + * @private + * @argument {String} offset + * @argument {Object} popperOffsets + * @argument {Object} referenceOffsets + * @argument {String} basePlacement + * @returns {Array} a two cells array with x and y offsets in numbers + */ + function parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) { + var offsets = [0, 0]; + + // Use height if placement is left or right and index is 0 otherwise use width + // in this way the first offset will use an axis and the second one + // will use the other one + var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1; + + // Split the offset string to obtain a list of values and operands + // The regex addresses values with the plus or minus sign in front (+10, -20, etc) + var fragments = offset.split(/(\+|\-)/).map(function (frag) { + return frag.trim(); + }); + + // Detect if the offset string contains a pair of values or a single one + // they could be separated by comma or space + var divider = fragments.indexOf(find(fragments, function (frag) { + return frag.search(/,|\s/) !== -1; + })); + + if (fragments[divider] && fragments[divider].indexOf(',') === -1) { + console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.'); + } + + // If divider is found, we divide the list of values and operands to divide + // them by ofset X and Y. + var splitRegex = /\s*,\s*|\s+/; + var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments]; + + // Convert the values with units to absolute pixels to allow our computations + ops = ops.map(function (op, index) { + // Most of the units rely on the orientation of the popper + var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width'; + var mergeWithPrevious = false; + return op + // This aggregates any `+` or `-` sign that aren't considered operators + // e.g.: 10 + +5 => [10, +, +5] + .reduce(function (a, b) { + if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) { + a[a.length - 1] = b; + mergeWithPrevious = true; + return a; + } else if (mergeWithPrevious) { + a[a.length - 1] += b; + mergeWithPrevious = false; + return a; + } else { + return a.concat(b); + } + }, []) + // Here we convert the string values into number values (in px) + .map(function (str) { + return toValue(str, measurement, popperOffsets, referenceOffsets); + }); + }); + + // Loop trough the offsets arrays and execute the operations + ops.forEach(function (op, index) { + op.forEach(function (frag, index2) { + if (isNumeric(frag)) { + offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1); + } + }); + }); + return offsets; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @argument {Number|String} options.offset=0 + * The offset value as described in the modifier description + * @returns {Object} The data object, properly modified + */ + function offset(data, _ref) { + var offset = _ref.offset; + var placement = data.placement, + _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var basePlacement = placement.split('-')[0]; + + var offsets = void 0; + if (isNumeric(+offset)) { + offsets = [+offset, 0]; + } else { + offsets = parseOffset(offset, popper, reference, basePlacement); + } + + if (basePlacement === 'left') { + popper.top += offsets[0]; + popper.left -= offsets[1]; + } else if (basePlacement === 'right') { + popper.top += offsets[0]; + popper.left += offsets[1]; + } else if (basePlacement === 'top') { + popper.left += offsets[0]; + popper.top -= offsets[1]; + } else if (basePlacement === 'bottom') { + popper.left += offsets[0]; + popper.top += offsets[1]; + } + + data.popper = popper; + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function preventOverflow(data, options) { + var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper); + + // If offsetParent is the reference element, we really want to + // go one step up and use the next offsetParent as reference to + // avoid to make this modifier completely useless and look like broken + if (data.instance.reference === boundariesElement) { + boundariesElement = getOffsetParent(boundariesElement); + } + + // NOTE: DOM access here + // resets the popper's position so that the document size can be calculated excluding + // the size of the popper element itself + var transformProp = getSupportedPropertyName('transform'); + var popperStyles = data.instance.popper.style; // assignment to help minification + var top = popperStyles.top, + left = popperStyles.left, + transform = popperStyles[transformProp]; + + popperStyles.top = ''; + popperStyles.left = ''; + popperStyles[transformProp] = ''; + + var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed); + + // NOTE: DOM access here + // restores the original style properties after the offsets have been computed + popperStyles.top = top; + popperStyles.left = left; + popperStyles[transformProp] = transform; + + options.boundaries = boundaries; + + var order = options.priority; + var popper = data.offsets.popper; + + var check = { + primary: function primary(placement) { + var value = popper[placement]; + if (popper[placement] < boundaries[placement] && !options.escapeWithReference) { + value = Math.max(popper[placement], boundaries[placement]); + } + return defineProperty({}, placement, value); + }, + secondary: function secondary(placement) { + var mainSide = placement === 'right' ? 'left' : 'top'; + var value = popper[mainSide]; + if (popper[placement] > boundaries[placement] && !options.escapeWithReference) { + value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height)); + } + return defineProperty({}, mainSide, value); + } + }; + + order.forEach(function (placement) { + var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary'; + popper = _extends({}, popper, check[side](placement)); + }); + + data.offsets.popper = popper; + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function shift(data) { + var placement = data.placement; + var basePlacement = placement.split('-')[0]; + var shiftvariation = placement.split('-')[1]; + + // if shift shiftvariation is specified, run the modifier + if (shiftvariation) { + var _data$offsets = data.offsets, + reference = _data$offsets.reference, + popper = _data$offsets.popper; + + var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1; + var side = isVertical ? 'left' : 'top'; + var measurement = isVertical ? 'width' : 'height'; + + var shiftOffsets = { + start: defineProperty({}, side, reference[side]), + end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement]) + }; + + data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]); + } + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by update method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function hide(data) { + if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) { + return data; + } + + var refRect = data.offsets.reference; + var bound = find(data.instance.modifiers, function (modifier) { + return modifier.name === 'preventOverflow'; + }).boundaries; + + if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) { + // Avoid unnecessary DOM access if visibility hasn't changed + if (data.hide === true) { + return data; + } + + data.hide = true; + data.attributes['x-out-of-boundaries'] = ''; + } else { + // Avoid unnecessary DOM access if visibility hasn't changed + if (data.hide === false) { + return data; + } + + data.hide = false; + data.attributes['x-out-of-boundaries'] = false; + } + + return data; + } + + /** + * @function + * @memberof Modifiers + * @argument {Object} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {Object} The data object, properly modified + */ + function inner(data) { + var placement = data.placement; + var basePlacement = placement.split('-')[0]; + var _data$offsets = data.offsets, + popper = _data$offsets.popper, + reference = _data$offsets.reference; + + var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1; + + var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1; + + popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0); + + data.placement = getOppositePlacement(placement); + data.offsets.popper = getClientRect(popper); + + return data; + } + + /** + * Modifier function, each modifier can have a function of this type assigned + * to its `fn` property.
+ * These functions will be called on each update, this means that you must + * make sure they are performant enough to avoid performance bottlenecks. + * + * @function ModifierFn + * @argument {dataObject} data - The data object generated by `update` method + * @argument {Object} options - Modifiers configuration and options + * @returns {dataObject} The data object, properly modified + */ + + /** + * Modifiers are plugins used to alter the behavior of your poppers.
+ * Popper.js uses a set of 9 modifiers to provide all the basic functionalities + * needed by the library. + * + * Usually you don't want to override the `order`, `fn` and `onLoad` props. + * All the other properties are configurations that could be tweaked. + * @namespace modifiers + */ + var modifiers = { + /** + * Modifier used to shift the popper on the start or end of its reference + * element.
+ * It will read the variation of the `placement` property.
+ * It can be one either `-end` or `-start`. + * @memberof modifiers + * @inner + */ + shift: { + /** @prop {number} order=100 - Index used to define the order of execution */ + order: 100, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: shift + }, + + /** + * The `offset` modifier can shift your popper on both its axis. + * + * It accepts the following units: + * - `px` or unit-less, interpreted as pixels + * - `%` or `%r`, percentage relative to the length of the reference element + * - `%p`, percentage relative to the length of the popper element + * - `vw`, CSS viewport width unit + * - `vh`, CSS viewport height unit + * + * For length is intended the main axis relative to the placement of the popper.
+ * This means that if the placement is `top` or `bottom`, the length will be the + * `width`. In case of `left` or `right`, it will be the `height`. + * + * You can provide a single value (as `Number` or `String`), or a pair of values + * as `String` divided by a comma or one (or more) white spaces.
+ * The latter is a deprecated method because it leads to confusion and will be + * removed in v2.
+ * Additionally, it accepts additions and subtractions between different units. + * Note that multiplications and divisions aren't supported. + * + * Valid examples are: + * ``` + * 10 + * '10%' + * '10, 10' + * '10%, 10' + * '10 + 10%' + * '10 - 5vh + 3%' + * '-10px + 5vh, 5px - 6%' + * ``` + * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap + * > with their reference element, unfortunately, you will have to disable the `flip` modifier. + * > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373). + * + * @memberof modifiers + * @inner + */ + offset: { + /** @prop {number} order=200 - Index used to define the order of execution */ + order: 200, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: offset, + /** @prop {Number|String} offset=0 + * The offset value as described in the modifier description + */ + offset: 0 + }, + + /** + * Modifier used to prevent the popper from being positioned outside the boundary. + * + * A scenario exists where the reference itself is not within the boundaries.
+ * We can say it has "escaped the boundaries" — or just "escaped".
+ * In this case we need to decide whether the popper should either: + * + * - detach from the reference and remain "trapped" in the boundaries, or + * - if it should ignore the boundary and "escape with its reference" + * + * When `escapeWithReference` is set to`true` and reference is completely + * outside its boundaries, the popper will overflow (or completely leave) + * the boundaries in order to remain attached to the edge of the reference. + * + * @memberof modifiers + * @inner + */ + preventOverflow: { + /** @prop {number} order=300 - Index used to define the order of execution */ + order: 300, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: preventOverflow, + /** + * @prop {Array} [priority=['left','right','top','bottom']] + * Popper will try to prevent overflow following these priorities by default, + * then, it could overflow on the left and on top of the `boundariesElement` + */ + priority: ['left', 'right', 'top', 'bottom'], + /** + * @prop {number} padding=5 + * Amount of pixel used to define a minimum distance between the boundaries + * and the popper. This makes sure the popper always has a little padding + * between the edges of its container + */ + padding: 5, + /** + * @prop {String|HTMLElement} boundariesElement='scrollParent' + * Boundaries used by the modifier. Can be `scrollParent`, `window`, + * `viewport` or any DOM element. + */ + boundariesElement: 'scrollParent' + }, + + /** + * Modifier used to make sure the reference and its popper stay near each other + * without leaving any gap between the two. Especially useful when the arrow is + * enabled and you want to ensure that it points to its reference element. + * It cares only about the first axis. You can still have poppers with margin + * between the popper and its reference element. + * @memberof modifiers + * @inner + */ + keepTogether: { + /** @prop {number} order=400 - Index used to define the order of execution */ + order: 400, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: keepTogether + }, + + /** + * This modifier is used to move the `arrowElement` of the popper to make + * sure it is positioned between the reference element and its popper element. + * It will read the outer size of the `arrowElement` node to detect how many + * pixels of conjunction are needed. + * + * It has no effect if no `arrowElement` is provided. + * @memberof modifiers + * @inner + */ + arrow: { + /** @prop {number} order=500 - Index used to define the order of execution */ + order: 500, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: arrow, + /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */ + element: '[x-arrow]' + }, + + /** + * Modifier used to flip the popper's placement when it starts to overlap its + * reference element. + * + * Requires the `preventOverflow` modifier before it in order to work. + * + * **NOTE:** this modifier will interrupt the current update cycle and will + * restart it if it detects the need to flip the placement. + * @memberof modifiers + * @inner + */ + flip: { + /** @prop {number} order=600 - Index used to define the order of execution */ + order: 600, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: flip, + /** + * @prop {String|Array} behavior='flip' + * The behavior used to change the popper's placement. It can be one of + * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid + * placements (with optional variations) + */ + behavior: 'flip', + /** + * @prop {number} padding=5 + * The popper will flip if it hits the edges of the `boundariesElement` + */ + padding: 5, + /** + * @prop {String|HTMLElement} boundariesElement='viewport' + * The element which will define the boundaries of the popper position. + * The popper will never be placed outside of the defined boundaries + * (except if `keepTogether` is enabled) + */ + boundariesElement: 'viewport' + }, + + /** + * Modifier used to make the popper flow toward the inner of the reference element. + * By default, when this modifier is disabled, the popper will be placed outside + * the reference element. + * @memberof modifiers + * @inner + */ + inner: { + /** @prop {number} order=700 - Index used to define the order of execution */ + order: 700, + /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */ + enabled: false, + /** @prop {ModifierFn} */ + fn: inner + }, + + /** + * Modifier used to hide the popper when its reference element is outside of the + * popper boundaries. It will set a `x-out-of-boundaries` attribute which can + * be used to hide with a CSS selector the popper when its reference is + * out of boundaries. + * + * Requires the `preventOverflow` modifier before it in order to work. + * @memberof modifiers + * @inner + */ + hide: { + /** @prop {number} order=800 - Index used to define the order of execution */ + order: 800, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: hide + }, + + /** + * Computes the style that will be applied to the popper element to gets + * properly positioned. + * + * Note that this modifier will not touch the DOM, it just prepares the styles + * so that `applyStyle` modifier can apply it. This separation is useful + * in case you need to replace `applyStyle` with a custom implementation. + * + * This modifier has `850` as `order` value to maintain backward compatibility + * with previous versions of Popper.js. Expect the modifiers ordering method + * to change in future major versions of the library. + * + * @memberof modifiers + * @inner + */ + computeStyle: { + /** @prop {number} order=850 - Index used to define the order of execution */ + order: 850, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: computeStyle, + /** + * @prop {Boolean} gpuAcceleration=true + * If true, it uses the CSS 3D transformation to position the popper. + * Otherwise, it will use the `top` and `left` properties + */ + gpuAcceleration: true, + /** + * @prop {string} [x='bottom'] + * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin. + * Change this if your popper should grow in a direction different from `bottom` + */ + x: 'bottom', + /** + * @prop {string} [x='left'] + * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin. + * Change this if your popper should grow in a direction different from `right` + */ + y: 'right' + }, + + /** + * Applies the computed styles to the popper element. + * + * All the DOM manipulations are limited to this modifier. This is useful in case + * you want to integrate Popper.js inside a framework or view library and you + * want to delegate all the DOM manipulations to it. + * + * Note that if you disable this modifier, you must make sure the popper element + * has its position set to `absolute` before Popper.js can do its work! + * + * Just disable this modifier and define your own to achieve the desired effect. + * + * @memberof modifiers + * @inner + */ + applyStyle: { + /** @prop {number} order=900 - Index used to define the order of execution */ + order: 900, + /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */ + enabled: true, + /** @prop {ModifierFn} */ + fn: applyStyle, + /** @prop {Function} */ + onLoad: applyStyleOnLoad, + /** + * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier + * @prop {Boolean} gpuAcceleration=true + * If true, it uses the CSS 3D transformation to position the popper. + * Otherwise, it will use the `top` and `left` properties + */ + gpuAcceleration: undefined + } + }; + + /** + * The `dataObject` is an object containing all the information used by Popper.js. + * This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks. + * @name dataObject + * @property {Object} data.instance The Popper.js instance + * @property {String} data.placement Placement applied to popper + * @property {String} data.originalPlacement Placement originally defined on init + * @property {Boolean} data.flipped True if popper has been flipped by flip modifier + * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper + * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier + * @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`) + * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`) + * @property {Object} data.boundaries Offsets of the popper boundaries + * @property {Object} data.offsets The measurements of popper, reference and arrow elements + * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values + * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values + * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0 + */ + + /** + * Default options provided to Popper.js constructor.
+ * These can be overridden using the `options` argument of Popper.js.
+ * To override an option, simply pass an object with the same + * structure of the `options` object, as the 3rd argument. For example: + * ``` + * new Popper(ref, pop, { + * modifiers: { + * preventOverflow: { enabled: false } + * } + * }) + * ``` + * @type {Object} + * @static + * @memberof Popper + */ + var Defaults = { + /** + * Popper's placement. + * @prop {Popper.placements} placement='bottom' + */ + placement: 'bottom', + + /** + * Set this to true if you want popper to position it self in 'fixed' mode + * @prop {Boolean} positionFixed=false + */ + positionFixed: false, + + /** + * Whether events (resize, scroll) are initially enabled. + * @prop {Boolean} eventsEnabled=true + */ + eventsEnabled: true, + + /** + * Set to true if you want to automatically remove the popper when + * you call the `destroy` method. + * @prop {Boolean} removeOnDestroy=false + */ + removeOnDestroy: false, + + /** + * Callback called when the popper is created.
+ * By default, it is set to no-op.
+ * Access Popper.js instance with `data.instance`. + * @prop {onCreate} + */ + onCreate: function onCreate() {}, + + /** + * Callback called when the popper is updated. This callback is not called + * on the initialization/creation of the popper, but only on subsequent + * updates.
+ * By default, it is set to no-op.
+ * Access Popper.js instance with `data.instance`. + * @prop {onUpdate} + */ + onUpdate: function onUpdate() {}, + + /** + * List of modifiers used to modify the offsets before they are applied to the popper. + * They provide most of the functionalities of Popper.js. + * @prop {modifiers} + */ + modifiers: modifiers + }; + + /** + * @callback onCreate + * @param {dataObject} data + */ + + /** + * @callback onUpdate + * @param {dataObject} data + */ + + // Utils + // Methods + var Popper = function () { + /** + * Creates a new Popper.js instance. + * @class Popper + * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper + * @param {HTMLElement} popper - The HTML element used as the popper + * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults) + * @return {Object} instance - The generated Popper.js instance + */ + function Popper(reference, popper) { + var _this = this; + + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + classCallCheck(this, Popper); + + this.scheduleUpdate = function () { + return requestAnimationFrame(_this.update); + }; + + // make update() debounced, so that it only runs at most once-per-tick + this.update = debounce(this.update.bind(this)); + + // with {} we create a new object with the options inside it + this.options = _extends({}, Popper.Defaults, options); + + // init state + this.state = { + isDestroyed: false, + isCreated: false, + scrollParents: [] + }; + + // get reference and popper elements (allow jQuery wrappers) + this.reference = reference && reference.jquery ? reference[0] : reference; + this.popper = popper && popper.jquery ? popper[0] : popper; + + // Deep merge modifiers options + this.options.modifiers = {}; + Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) { + _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {}); + }); + + // Refactoring modifiers' list (Object => Array) + this.modifiers = Object.keys(this.options.modifiers).map(function (name) { + return _extends({ + name: name + }, _this.options.modifiers[name]); + }) + // sort the modifiers by order + .sort(function (a, b) { + return a.order - b.order; + }); + + // modifiers have the ability to execute arbitrary code when Popper.js get inited + // such code is executed in the same order of its modifier + // they could add new properties to their options configuration + // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`! + this.modifiers.forEach(function (modifierOptions) { + if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) { + modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state); + } + }); + + // fire the first update to position the popper in the right place + this.update(); + + var eventsEnabled = this.options.eventsEnabled; + if (eventsEnabled) { + // setup event listeners, they will take care of update the position in specific situations + this.enableEventListeners(); + } + + this.state.eventsEnabled = eventsEnabled; + } + + // We can't use class properties because they don't get listed in the + // class prototype and break stuff like Sinon stubs + + + createClass(Popper, [{ + key: 'update', + value: function update$$1() { + return update.call(this); + } + }, { + key: 'destroy', + value: function destroy$$1() { + return destroy.call(this); + } + }, { + key: 'enableEventListeners', + value: function enableEventListeners$$1() { + return enableEventListeners.call(this); + } + }, { + key: 'disableEventListeners', + value: function disableEventListeners$$1() { + return disableEventListeners.call(this); + } + + /** + * Schedules an update. It will run on the next UI update available. + * @method scheduleUpdate + * @memberof Popper + */ + + + /** + * Collection of utilities useful when writing custom modifiers. + * Starting from version 1.7, this method is available only if you + * include `popper-utils.js` before `popper.js`. + * + * **DEPRECATION**: This way to access PopperUtils is deprecated + * and will be removed in v2! Use the PopperUtils module directly instead. + * Due to the high instability of the methods contained in Utils, we can't + * guarantee them to follow semver. Use them at your own risk! + * @static + * @private + * @type {Object} + * @deprecated since version 1.8 + * @member Utils + * @memberof Popper + */ + + }]); + return Popper; + }(); + + /** + * The `referenceObject` is an object that provides an interface compatible with Popper.js + * and lets you use it as replacement of a real DOM node.
+ * You can use this method to position a popper relatively to a set of coordinates + * in case you don't have a DOM node to use as reference. + * + * ``` + * new Popper(referenceObject, popperNode); + * ``` + * + * NB: This feature isn't supported in Internet Explorer 10. + * @name referenceObject + * @property {Function} data.getBoundingClientRect + * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method. + * @property {number} data.clientWidth + * An ES6 getter that will return the width of the virtual reference element. + * @property {number} data.clientHeight + * An ES6 getter that will return the height of the virtual reference element. + */ + + + Popper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils; + Popper.placements = placements; + Popper.Defaults = Defaults; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$4 = 'dropdown'; + var VERSION$4 = '4.3.1'; + var DATA_KEY$4 = 'bs.dropdown'; + var EVENT_KEY$4 = "." + DATA_KEY$4; + var DATA_API_KEY$4 = '.data-api'; + var JQUERY_NO_CONFLICT$4 = $.fn[NAME$4]; + var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key + + var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key + + var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key + + var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key + + var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key + + var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse) + + var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE); + var Event$4 = { + HIDE: "hide" + EVENT_KEY$4, + HIDDEN: "hidden" + EVENT_KEY$4, + SHOW: "show" + EVENT_KEY$4, + SHOWN: "shown" + EVENT_KEY$4, + CLICK: "click" + EVENT_KEY$4, + CLICK_DATA_API: "click" + EVENT_KEY$4 + DATA_API_KEY$4, + KEYDOWN_DATA_API: "keydown" + EVENT_KEY$4 + DATA_API_KEY$4, + KEYUP_DATA_API: "keyup" + EVENT_KEY$4 + DATA_API_KEY$4 + }; + var ClassName$4 = { + DISABLED: 'disabled', + SHOW: 'show', + DROPUP: 'dropup', + DROPRIGHT: 'dropright', + DROPLEFT: 'dropleft', + MENURIGHT: 'dropdown-menu-right', + MENULEFT: 'dropdown-menu-left', + POSITION_STATIC: 'position-static' + }; + var Selector$4 = { + DATA_TOGGLE: '[data-toggle="dropdown"]', + FORM_CHILD: '.dropdown form', + MENU: '.dropdown-menu', + NAVBAR_NAV: '.navbar-nav', + VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)' + }; + var AttachmentMap = { + TOP: 'top-start', + TOPEND: 'top-end', + BOTTOM: 'bottom-start', + BOTTOMEND: 'bottom-end', + RIGHT: 'right-start', + RIGHTEND: 'right-end', + LEFT: 'left-start', + LEFTEND: 'left-end' + }; + var Default$2 = { + offset: 0, + flip: true, + boundary: 'scrollParent', + reference: 'toggle', + display: 'dynamic' + }; + var DefaultType$2 = { + offset: '(number|string|function)', + flip: 'boolean', + boundary: '(string|element)', + reference: '(string|element)', + display: 'string' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Dropdown = + /*#__PURE__*/ + function () { + function Dropdown(element, config) { + this._element = element; + this._popper = null; + this._config = this._getConfig(config); + this._menu = this._getMenuElement(); + this._inNavbar = this._detectNavbar(); + + this._addEventListeners(); + } // Getters + + + var _proto = Dropdown.prototype; + + // Public + _proto.toggle = function toggle() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this._element); + + var isActive = $(this._menu).hasClass(ClassName$4.SHOW); + + Dropdown._clearMenus(); + + if (isActive) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var showEvent = $.Event(Event$4.SHOW, relatedTarget); + $(parent).trigger(showEvent); + + if (showEvent.isDefaultPrevented()) { + return; + } // Disable totally Popper.js for Dropdown in Navbar + + + if (!this._inNavbar) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org/)'); + } + + var referenceElement = this._element; + + if (this._config.reference === 'parent') { + referenceElement = parent; + } else if (Util.isElement(this._config.reference)) { + referenceElement = this._config.reference; // Check if it's jQuery element + + if (typeof this._config.reference.jquery !== 'undefined') { + referenceElement = this._config.reference[0]; + } + } // If boundary is not `scrollParent`, then set position to `static` + // to allow the menu to "escape" the scroll parent's boundaries + // https://github.com/twbs/bootstrap/issues/24251 + + + if (this._config.boundary !== 'scrollParent') { + $(parent).addClass(ClassName$4.POSITION_STATIC); + } + + this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig()); + } // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + + if ('ontouchstart' in document.documentElement && $(parent).closest(Selector$4.NAVBAR_NAV).length === 0) { + $(document.body).children().on('mouseover', null, $.noop); + } + + this._element.focus(); + + this._element.setAttribute('aria-expanded', true); + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); + }; + + _proto.show = function show() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || $(this._menu).hasClass(ClassName$4.SHOW)) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var showEvent = $.Event(Event$4.SHOW, relatedTarget); + + var parent = Dropdown._getParentFromElement(this._element); + + $(parent).trigger(showEvent); + + if (showEvent.isDefaultPrevented()) { + return; + } + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); + }; + + _proto.hide = function hide() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || !$(this._menu).hasClass(ClassName$4.SHOW)) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var hideEvent = $.Event(Event$4.HIDE, relatedTarget); + + var parent = Dropdown._getParentFromElement(this._element); + + $(parent).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + return; + } + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$4); + $(this._element).off(EVENT_KEY$4); + this._element = null; + this._menu = null; + + if (this._popper !== null) { + this._popper.destroy(); + + this._popper = null; + } + }; + + _proto.update = function update() { + this._inNavbar = this._detectNavbar(); + + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + } // Private + ; + + _proto._addEventListeners = function _addEventListeners() { + var _this = this; + + $(this._element).on(Event$4.CLICK, function (event) { + event.preventDefault(); + event.stopPropagation(); + + _this.toggle(); + }); + }; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, this.constructor.Default, $(this._element).data(), config); + Util.typeCheckConfig(NAME$4, config, this.constructor.DefaultType); + return config; + }; + + _proto._getMenuElement = function _getMenuElement() { + if (!this._menu) { + var parent = Dropdown._getParentFromElement(this._element); + + if (parent) { + this._menu = parent.querySelector(Selector$4.MENU); + } + } + + return this._menu; + }; + + _proto._getPlacement = function _getPlacement() { + var $parentDropdown = $(this._element.parentNode); + var placement = AttachmentMap.BOTTOM; // Handle dropup + + if ($parentDropdown.hasClass(ClassName$4.DROPUP)) { + placement = AttachmentMap.TOP; + + if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { + placement = AttachmentMap.TOPEND; + } + } else if ($parentDropdown.hasClass(ClassName$4.DROPRIGHT)) { + placement = AttachmentMap.RIGHT; + } else if ($parentDropdown.hasClass(ClassName$4.DROPLEFT)) { + placement = AttachmentMap.LEFT; + } else if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { + placement = AttachmentMap.BOTTOMEND; + } + + return placement; + }; + + _proto._detectNavbar = function _detectNavbar() { + return $(this._element).closest('.navbar').length > 0; + }; + + _proto._getOffset = function _getOffset() { + var _this2 = this; + + var offset = {}; + + if (typeof this._config.offset === 'function') { + offset.fn = function (data) { + data.offsets = _objectSpread({}, data.offsets, _this2._config.offset(data.offsets, _this2._element) || {}); + return data; + }; + } else { + offset.offset = this._config.offset; + } + + return offset; + }; + + _proto._getPopperConfig = function _getPopperConfig() { + var popperConfig = { + placement: this._getPlacement(), + modifiers: { + offset: this._getOffset(), + flip: { + enabled: this._config.flip + }, + preventOverflow: { + boundariesElement: this._config.boundary + } + } // Disable Popper.js if we have a static display + + }; + + if (this._config.display === 'static') { + popperConfig.modifiers.applyStyle = { + enabled: false + }; + } + + return popperConfig; + } // Static + ; + + Dropdown._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$4); + + var _config = typeof config === 'object' ? config : null; + + if (!data) { + data = new Dropdown(this, _config); + $(this).data(DATA_KEY$4, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + Dropdown._clearMenus = function _clearMenus(event) { + if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) { + return; + } + + var toggles = [].slice.call(document.querySelectorAll(Selector$4.DATA_TOGGLE)); + + for (var i = 0, len = toggles.length; i < len; i++) { + var parent = Dropdown._getParentFromElement(toggles[i]); + + var context = $(toggles[i]).data(DATA_KEY$4); + var relatedTarget = { + relatedTarget: toggles[i] + }; + + if (event && event.type === 'click') { + relatedTarget.clickEvent = event; + } + + if (!context) { + continue; + } + + var dropdownMenu = context._menu; + + if (!$(parent).hasClass(ClassName$4.SHOW)) { + continue; + } + + if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $.contains(parent, event.target)) { + continue; + } + + var hideEvent = $.Event(Event$4.HIDE, relatedTarget); + $(parent).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + continue; + } // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().off('mouseover', null, $.noop); + } + + toggles[i].setAttribute('aria-expanded', 'false'); + $(dropdownMenu).removeClass(ClassName$4.SHOW); + $(parent).removeClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); + } + }; + + Dropdown._getParentFromElement = function _getParentFromElement(element) { + var parent; + var selector = Util.getSelectorFromElement(element); + + if (selector) { + parent = document.querySelector(selector); + } + + return parent || element.parentNode; + } // eslint-disable-next-line complexity + ; + + Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) { + // If not input/textarea: + // - And not a key in REGEXP_KEYDOWN => not a dropdown command + // If input/textarea: + // - If space key => not a dropdown command + // - If key is other than escape + // - If key is not up or down => not a dropdown command + // - If trigger inside the menu => not a dropdown command + if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $(event.target).closest(Selector$4.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) { + return; + } + + event.preventDefault(); + event.stopPropagation(); + + if (this.disabled || $(this).hasClass(ClassName$4.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this); + + var isActive = $(parent).hasClass(ClassName$4.SHOW); + + if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) { + if (event.which === ESCAPE_KEYCODE) { + var toggle = parent.querySelector(Selector$4.DATA_TOGGLE); + $(toggle).trigger('focus'); + } + + $(this).trigger('click'); + return; + } + + var items = [].slice.call(parent.querySelectorAll(Selector$4.VISIBLE_ITEMS)); + + if (items.length === 0) { + return; + } + + var index = items.indexOf(event.target); + + if (event.which === ARROW_UP_KEYCODE && index > 0) { + // Up + index--; + } + + if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { + // Down + index++; + } + + if (index < 0) { + index = 0; + } + + items[index].focus(); + }; + + _createClass(Dropdown, null, [{ + key: "VERSION", + get: function get() { + return VERSION$4; + } + }, { + key: "Default", + get: function get() { + return Default$2; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$2; + } + }]); + + return Dropdown; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$4.KEYDOWN_DATA_API, Selector$4.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event$4.KEYDOWN_DATA_API, Selector$4.MENU, Dropdown._dataApiKeydownHandler).on(Event$4.CLICK_DATA_API + " " + Event$4.KEYUP_DATA_API, Dropdown._clearMenus).on(Event$4.CLICK_DATA_API, Selector$4.DATA_TOGGLE, function (event) { + event.preventDefault(); + event.stopPropagation(); + + Dropdown._jQueryInterface.call($(this), 'toggle'); + }).on(Event$4.CLICK_DATA_API, Selector$4.FORM_CHILD, function (e) { + e.stopPropagation(); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$4] = Dropdown._jQueryInterface; + $.fn[NAME$4].Constructor = Dropdown; + + $.fn[NAME$4].noConflict = function () { + $.fn[NAME$4] = JQUERY_NO_CONFLICT$4; + return Dropdown._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$5 = 'modal'; + var VERSION$5 = '4.3.1'; + var DATA_KEY$5 = 'bs.modal'; + var EVENT_KEY$5 = "." + DATA_KEY$5; + var DATA_API_KEY$5 = '.data-api'; + var JQUERY_NO_CONFLICT$5 = $.fn[NAME$5]; + var ESCAPE_KEYCODE$1 = 27; // KeyboardEvent.which value for Escape (Esc) key + + var Default$3 = { + backdrop: true, + keyboard: true, + focus: true, + show: true + }; + var DefaultType$3 = { + backdrop: '(boolean|string)', + keyboard: 'boolean', + focus: 'boolean', + show: 'boolean' + }; + var Event$5 = { + HIDE: "hide" + EVENT_KEY$5, + HIDDEN: "hidden" + EVENT_KEY$5, + SHOW: "show" + EVENT_KEY$5, + SHOWN: "shown" + EVENT_KEY$5, + FOCUSIN: "focusin" + EVENT_KEY$5, + RESIZE: "resize" + EVENT_KEY$5, + CLICK_DISMISS: "click.dismiss" + EVENT_KEY$5, + KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY$5, + MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY$5, + MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY$5, + CLICK_DATA_API: "click" + EVENT_KEY$5 + DATA_API_KEY$5 + }; + var ClassName$5 = { + SCROLLABLE: 'modal-dialog-scrollable', + SCROLLBAR_MEASURER: 'modal-scrollbar-measure', + BACKDROP: 'modal-backdrop', + OPEN: 'modal-open', + FADE: 'fade', + SHOW: 'show' + }; + var Selector$5 = { + DIALOG: '.modal-dialog', + MODAL_BODY: '.modal-body', + DATA_TOGGLE: '[data-toggle="modal"]', + DATA_DISMISS: '[data-dismiss="modal"]', + FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', + STICKY_CONTENT: '.sticky-top' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Modal = + /*#__PURE__*/ + function () { + function Modal(element, config) { + this._config = this._getConfig(config); + this._element = element; + this._dialog = element.querySelector(Selector$5.DIALOG); + this._backdrop = null; + this._isShown = false; + this._isBodyOverflowing = false; + this._ignoreBackdropClick = false; + this._isTransitioning = false; + this._scrollbarWidth = 0; + } // Getters + + + var _proto = Modal.prototype; + + // Public + _proto.toggle = function toggle(relatedTarget) { + return this._isShown ? this.hide() : this.show(relatedTarget); + }; + + _proto.show = function show(relatedTarget) { + var _this = this; + + if (this._isShown || this._isTransitioning) { + return; + } + + if ($(this._element).hasClass(ClassName$5.FADE)) { + this._isTransitioning = true; + } + + var showEvent = $.Event(Event$5.SHOW, { + relatedTarget: relatedTarget + }); + $(this._element).trigger(showEvent); + + if (this._isShown || showEvent.isDefaultPrevented()) { + return; + } + + this._isShown = true; + + this._checkScrollbar(); + + this._setScrollbar(); + + this._adjustDialog(); + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $(this._element).on(Event$5.CLICK_DISMISS, Selector$5.DATA_DISMISS, function (event) { + return _this.hide(event); + }); + $(this._dialog).on(Event$5.MOUSEDOWN_DISMISS, function () { + $(_this._element).one(Event$5.MOUSEUP_DISMISS, function (event) { + if ($(event.target).is(_this._element)) { + _this._ignoreBackdropClick = true; + } + }); + }); + + this._showBackdrop(function () { + return _this._showElement(relatedTarget); + }); + }; + + _proto.hide = function hide(event) { + var _this2 = this; + + if (event) { + event.preventDefault(); + } + + if (!this._isShown || this._isTransitioning) { + return; + } + + var hideEvent = $.Event(Event$5.HIDE); + $(this._element).trigger(hideEvent); + + if (!this._isShown || hideEvent.isDefaultPrevented()) { + return; + } + + this._isShown = false; + var transition = $(this._element).hasClass(ClassName$5.FADE); + + if (transition) { + this._isTransitioning = true; + } + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $(document).off(Event$5.FOCUSIN); + $(this._element).removeClass(ClassName$5.SHOW); + $(this._element).off(Event$5.CLICK_DISMISS); + $(this._dialog).off(Event$5.MOUSEDOWN_DISMISS); + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, function (event) { + return _this2._hideModal(event); + }).emulateTransitionEnd(transitionDuration); + } else { + this._hideModal(); + } + }; + + _proto.dispose = function dispose() { + [window, this._element, this._dialog].forEach(function (htmlElement) { + return $(htmlElement).off(EVENT_KEY$5); + }); + /** + * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API` + * Do not move `document` in `htmlElements` array + * It will remove `Event.CLICK_DATA_API` event that should remain + */ + + $(document).off(Event$5.FOCUSIN); + $.removeData(this._element, DATA_KEY$5); + this._config = null; + this._element = null; + this._dialog = null; + this._backdrop = null; + this._isShown = null; + this._isBodyOverflowing = null; + this._ignoreBackdropClick = null; + this._isTransitioning = null; + this._scrollbarWidth = null; + }; + + _proto.handleUpdate = function handleUpdate() { + this._adjustDialog(); + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$3, config); + Util.typeCheckConfig(NAME$5, config, DefaultType$3); + return config; + }; + + _proto._showElement = function _showElement(relatedTarget) { + var _this3 = this; + + var transition = $(this._element).hasClass(ClassName$5.FADE); + + if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) { + // Don't move modal's DOM position + document.body.appendChild(this._element); + } + + this._element.style.display = 'block'; + + this._element.removeAttribute('aria-hidden'); + + this._element.setAttribute('aria-modal', true); + + if ($(this._dialog).hasClass(ClassName$5.SCROLLABLE)) { + this._dialog.querySelector(Selector$5.MODAL_BODY).scrollTop = 0; + } else { + this._element.scrollTop = 0; + } + + if (transition) { + Util.reflow(this._element); + } + + $(this._element).addClass(ClassName$5.SHOW); + + if (this._config.focus) { + this._enforceFocus(); + } + + var shownEvent = $.Event(Event$5.SHOWN, { + relatedTarget: relatedTarget + }); + + var transitionComplete = function transitionComplete() { + if (_this3._config.focus) { + _this3._element.focus(); + } + + _this3._isTransitioning = false; + $(_this3._element).trigger(shownEvent); + }; + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._dialog); + $(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(transitionDuration); + } else { + transitionComplete(); + } + }; + + _proto._enforceFocus = function _enforceFocus() { + var _this4 = this; + + $(document).off(Event$5.FOCUSIN) // Guard against infinite focus loop + .on(Event$5.FOCUSIN, function (event) { + if (document !== event.target && _this4._element !== event.target && $(_this4._element).has(event.target).length === 0) { + _this4._element.focus(); + } + }); + }; + + _proto._setEscapeEvent = function _setEscapeEvent() { + var _this5 = this; + + if (this._isShown && this._config.keyboard) { + $(this._element).on(Event$5.KEYDOWN_DISMISS, function (event) { + if (event.which === ESCAPE_KEYCODE$1) { + event.preventDefault(); + + _this5.hide(); + } + }); + } else if (!this._isShown) { + $(this._element).off(Event$5.KEYDOWN_DISMISS); + } + }; + + _proto._setResizeEvent = function _setResizeEvent() { + var _this6 = this; + + if (this._isShown) { + $(window).on(Event$5.RESIZE, function (event) { + return _this6.handleUpdate(event); + }); + } else { + $(window).off(Event$5.RESIZE); + } + }; + + _proto._hideModal = function _hideModal() { + var _this7 = this; + + this._element.style.display = 'none'; + + this._element.setAttribute('aria-hidden', true); + + this._element.removeAttribute('aria-modal'); + + this._isTransitioning = false; + + this._showBackdrop(function () { + $(document.body).removeClass(ClassName$5.OPEN); + + _this7._resetAdjustments(); + + _this7._resetScrollbar(); + + $(_this7._element).trigger(Event$5.HIDDEN); + }); + }; + + _proto._removeBackdrop = function _removeBackdrop() { + if (this._backdrop) { + $(this._backdrop).remove(); + this._backdrop = null; + } + }; + + _proto._showBackdrop = function _showBackdrop(callback) { + var _this8 = this; + + var animate = $(this._element).hasClass(ClassName$5.FADE) ? ClassName$5.FADE : ''; + + if (this._isShown && this._config.backdrop) { + this._backdrop = document.createElement('div'); + this._backdrop.className = ClassName$5.BACKDROP; + + if (animate) { + this._backdrop.classList.add(animate); + } + + $(this._backdrop).appendTo(document.body); + $(this._element).on(Event$5.CLICK_DISMISS, function (event) { + if (_this8._ignoreBackdropClick) { + _this8._ignoreBackdropClick = false; + return; + } + + if (event.target !== event.currentTarget) { + return; + } + + if (_this8._config.backdrop === 'static') { + _this8._element.focus(); + } else { + _this8.hide(); + } + }); + + if (animate) { + Util.reflow(this._backdrop); + } + + $(this._backdrop).addClass(ClassName$5.SHOW); + + if (!callback) { + return; + } + + if (!animate) { + callback(); + return; + } + + var backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + $(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(backdropTransitionDuration); + } else if (!this._isShown && this._backdrop) { + $(this._backdrop).removeClass(ClassName$5.SHOW); + + var callbackRemove = function callbackRemove() { + _this8._removeBackdrop(); + + if (callback) { + callback(); + } + }; + + if ($(this._element).hasClass(ClassName$5.FADE)) { + var _backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + + $(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(_backdropTransitionDuration); + } else { + callbackRemove(); + } + } else if (callback) { + callback(); + } + } // ---------------------------------------------------------------------- + // the following methods are used to handle overflowing modals + // todo (fat): these should probably be refactored out of modal.js + // ---------------------------------------------------------------------- + ; + + _proto._adjustDialog = function _adjustDialog() { + var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; + + if (!this._isBodyOverflowing && isModalOverflowing) { + this._element.style.paddingLeft = this._scrollbarWidth + "px"; + } + + if (this._isBodyOverflowing && !isModalOverflowing) { + this._element.style.paddingRight = this._scrollbarWidth + "px"; + } + }; + + _proto._resetAdjustments = function _resetAdjustments() { + this._element.style.paddingLeft = ''; + this._element.style.paddingRight = ''; + }; + + _proto._checkScrollbar = function _checkScrollbar() { + var rect = document.body.getBoundingClientRect(); + this._isBodyOverflowing = rect.left + rect.right < window.innerWidth; + this._scrollbarWidth = this._getScrollbarWidth(); + }; + + _proto._setScrollbar = function _setScrollbar() { + var _this9 = this; + + if (this._isBodyOverflowing) { + // Note: DOMNode.style.paddingRight returns the actual value or '' if not set + // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set + var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); + var stickyContent = [].slice.call(document.querySelectorAll(Selector$5.STICKY_CONTENT)); // Adjust fixed content padding + + $(fixedContent).each(function (index, element) { + var actualPadding = element.style.paddingRight; + var calculatedPadding = $(element).css('padding-right'); + $(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this9._scrollbarWidth + "px"); + }); // Adjust sticky content margin + + $(stickyContent).each(function (index, element) { + var actualMargin = element.style.marginRight; + var calculatedMargin = $(element).css('margin-right'); + $(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this9._scrollbarWidth + "px"); + }); // Adjust body padding + + var actualPadding = document.body.style.paddingRight; + var calculatedPadding = $(document.body).css('padding-right'); + $(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px"); + } + + $(document.body).addClass(ClassName$5.OPEN); + }; + + _proto._resetScrollbar = function _resetScrollbar() { + // Restore fixed content padding + var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); + $(fixedContent).each(function (index, element) { + var padding = $(element).data('padding-right'); + $(element).removeData('padding-right'); + element.style.paddingRight = padding ? padding : ''; + }); // Restore sticky content + + var elements = [].slice.call(document.querySelectorAll("" + Selector$5.STICKY_CONTENT)); + $(elements).each(function (index, element) { + var margin = $(element).data('margin-right'); + + if (typeof margin !== 'undefined') { + $(element).css('margin-right', margin).removeData('margin-right'); + } + }); // Restore body padding + + var padding = $(document.body).data('padding-right'); + $(document.body).removeData('padding-right'); + document.body.style.paddingRight = padding ? padding : ''; + }; + + _proto._getScrollbarWidth = function _getScrollbarWidth() { + // thx d.walsh + var scrollDiv = document.createElement('div'); + scrollDiv.className = ClassName$5.SCROLLBAR_MEASURER; + document.body.appendChild(scrollDiv); + var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; + document.body.removeChild(scrollDiv); + return scrollbarWidth; + } // Static + ; + + Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) { + return this.each(function () { + var data = $(this).data(DATA_KEY$5); + + var _config = _objectSpread({}, Default$3, $(this).data(), typeof config === 'object' && config ? config : {}); + + if (!data) { + data = new Modal(this, _config); + $(this).data(DATA_KEY$5, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](relatedTarget); + } else if (_config.show) { + data.show(relatedTarget); + } + }); + }; + + _createClass(Modal, null, [{ + key: "VERSION", + get: function get() { + return VERSION$5; + } + }, { + key: "Default", + get: function get() { + return Default$3; + } + }]); + + return Modal; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$5.CLICK_DATA_API, Selector$5.DATA_TOGGLE, function (event) { + var _this10 = this; + + var target; + var selector = Util.getSelectorFromElement(this); + + if (selector) { + target = document.querySelector(selector); + } + + var config = $(target).data(DATA_KEY$5) ? 'toggle' : _objectSpread({}, $(target).data(), $(this).data()); + + if (this.tagName === 'A' || this.tagName === 'AREA') { + event.preventDefault(); + } + + var $target = $(target).one(Event$5.SHOW, function (showEvent) { + if (showEvent.isDefaultPrevented()) { + // Only register focus restorer if modal will actually get shown + return; + } + + $target.one(Event$5.HIDDEN, function () { + if ($(_this10).is(':visible')) { + _this10.focus(); + } + }); + }); + + Modal._jQueryInterface.call($(target), config, this); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$5] = Modal._jQueryInterface; + $.fn[NAME$5].Constructor = Modal; + + $.fn[NAME$5].noConflict = function () { + $.fn[NAME$5] = JQUERY_NO_CONFLICT$5; + return Modal._jQueryInterface; + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.3.1): tools/sanitizer.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']; + var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i; + var DefaultWhitelist = { + // Global attributes allowed on any supplied element below. + '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], + a: ['target', 'href', 'title', 'rel'], + area: [], + b: [], + br: [], + col: [], + code: [], + div: [], + em: [], + hr: [], + h1: [], + h2: [], + h3: [], + h4: [], + h5: [], + h6: [], + i: [], + img: ['src', 'alt', 'title', 'width', 'height'], + li: [], + ol: [], + p: [], + pre: [], + s: [], + small: [], + span: [], + sub: [], + sup: [], + strong: [], + u: [], + ul: [] + /** + * A pattern that recognizes a commonly useful subset of URLs that are safe. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + + }; + var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi; + /** + * A pattern that matches safe data URLs. Only matches image, video and audio types. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + + var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i; + + function allowedAttribute(attr, allowedAttributeList) { + var attrName = attr.nodeName.toLowerCase(); + + if (allowedAttributeList.indexOf(attrName) !== -1) { + if (uriAttrs.indexOf(attrName) !== -1) { + return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)); + } + + return true; + } + + var regExp = allowedAttributeList.filter(function (attrRegex) { + return attrRegex instanceof RegExp; + }); // Check if a regular expression validates the attribute. + + for (var i = 0, l = regExp.length; i < l; i++) { + if (attrName.match(regExp[i])) { + return true; + } + } + + return false; + } + + function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { + if (unsafeHtml.length === 0) { + return unsafeHtml; + } + + if (sanitizeFn && typeof sanitizeFn === 'function') { + return sanitizeFn(unsafeHtml); + } + + var domParser = new window.DOMParser(); + var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html'); + var whitelistKeys = Object.keys(whiteList); + var elements = [].slice.call(createdDocument.body.querySelectorAll('*')); + + var _loop = function _loop(i, len) { + var el = elements[i]; + var elName = el.nodeName.toLowerCase(); + + if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) { + el.parentNode.removeChild(el); + return "continue"; + } + + var attributeList = [].slice.call(el.attributes); + var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []); + attributeList.forEach(function (attr) { + if (!allowedAttribute(attr, whitelistedAttributes)) { + el.removeAttribute(attr.nodeName); + } + }); + }; + + for (var i = 0, len = elements.length; i < len; i++) { + var _ret = _loop(i, len); + + if (_ret === "continue") continue; + } + + return createdDocument.body.innerHTML; + } + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$6 = 'tooltip'; + var VERSION$6 = '4.3.1'; + var DATA_KEY$6 = 'bs.tooltip'; + var EVENT_KEY$6 = "." + DATA_KEY$6; + var JQUERY_NO_CONFLICT$6 = $.fn[NAME$6]; + var CLASS_PREFIX = 'bs-tooltip'; + var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g'); + var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']; + var DefaultType$4 = { + animation: 'boolean', + template: 'string', + title: '(string|element|function)', + trigger: 'string', + delay: '(number|object)', + html: 'boolean', + selector: '(string|boolean)', + placement: '(string|function)', + offset: '(number|string|function)', + container: '(string|element|boolean)', + fallbackPlacement: '(string|array)', + boundary: '(string|element)', + sanitize: 'boolean', + sanitizeFn: '(null|function)', + whiteList: 'object' + }; + var AttachmentMap$1 = { + AUTO: 'auto', + TOP: 'top', + RIGHT: 'right', + BOTTOM: 'bottom', + LEFT: 'left' + }; + var Default$4 = { + animation: true, + template: '', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + selector: false, + placement: 'top', + offset: 0, + container: false, + fallbackPlacement: 'flip', + boundary: 'scrollParent', + sanitize: true, + sanitizeFn: null, + whiteList: DefaultWhitelist + }; + var HoverState = { + SHOW: 'show', + OUT: 'out' + }; + var Event$6 = { + HIDE: "hide" + EVENT_KEY$6, + HIDDEN: "hidden" + EVENT_KEY$6, + SHOW: "show" + EVENT_KEY$6, + SHOWN: "shown" + EVENT_KEY$6, + INSERTED: "inserted" + EVENT_KEY$6, + CLICK: "click" + EVENT_KEY$6, + FOCUSIN: "focusin" + EVENT_KEY$6, + FOCUSOUT: "focusout" + EVENT_KEY$6, + MOUSEENTER: "mouseenter" + EVENT_KEY$6, + MOUSELEAVE: "mouseleave" + EVENT_KEY$6 + }; + var ClassName$6 = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector$6 = { + TOOLTIP: '.tooltip', + TOOLTIP_INNER: '.tooltip-inner', + ARROW: '.arrow' + }; + var Trigger = { + HOVER: 'hover', + FOCUS: 'focus', + CLICK: 'click', + MANUAL: 'manual' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Tooltip = + /*#__PURE__*/ + function () { + function Tooltip(element, config) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)'); + } // private + + + this._isEnabled = true; + this._timeout = 0; + this._hoverState = ''; + this._activeTrigger = {}; + this._popper = null; // Protected + + this.element = element; + this.config = this._getConfig(config); + this.tip = null; + + this._setListeners(); + } // Getters + + + var _proto = Tooltip.prototype; + + // Public + _proto.enable = function enable() { + this._isEnabled = true; + }; + + _proto.disable = function disable() { + this._isEnabled = false; + }; + + _proto.toggleEnabled = function toggleEnabled() { + this._isEnabled = !this._isEnabled; + }; + + _proto.toggle = function toggle(event) { + if (!this._isEnabled) { + return; + } + + if (event) { + var dataKey = this.constructor.DATA_KEY; + var context = $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + context._activeTrigger.click = !context._activeTrigger.click; + + if (context._isWithActiveTrigger()) { + context._enter(null, context); + } else { + context._leave(null, context); + } + } else { + if ($(this.getTipElement()).hasClass(ClassName$6.SHOW)) { + this._leave(null, this); + + return; + } + + this._enter(null, this); + } + }; + + _proto.dispose = function dispose() { + clearTimeout(this._timeout); + $.removeData(this.element, this.constructor.DATA_KEY); + $(this.element).off(this.constructor.EVENT_KEY); + $(this.element).closest('.modal').off('hide.bs.modal'); + + if (this.tip) { + $(this.tip).remove(); + } + + this._isEnabled = null; + this._timeout = null; + this._hoverState = null; + this._activeTrigger = null; + + if (this._popper !== null) { + this._popper.destroy(); + } + + this._popper = null; + this.element = null; + this.config = null; + this.tip = null; + }; + + _proto.show = function show() { + var _this = this; + + if ($(this.element).css('display') === 'none') { + throw new Error('Please use show on visible elements'); + } + + var showEvent = $.Event(this.constructor.Event.SHOW); + + if (this.isWithContent() && this._isEnabled) { + $(this.element).trigger(showEvent); + var shadowRoot = Util.findShadowRoot(this.element); + var isInTheDom = $.contains(shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element); + + if (showEvent.isDefaultPrevented() || !isInTheDom) { + return; + } + + var tip = this.getTipElement(); + var tipId = Util.getUID(this.constructor.NAME); + tip.setAttribute('id', tipId); + this.element.setAttribute('aria-describedby', tipId); + this.setContent(); + + if (this.config.animation) { + $(tip).addClass(ClassName$6.FADE); + } + + var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement; + + var attachment = this._getAttachment(placement); + + this.addAttachmentClass(attachment); + + var container = this._getContainer(); + + $(tip).data(this.constructor.DATA_KEY, this); + + if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) { + $(tip).appendTo(container); + } + + $(this.element).trigger(this.constructor.Event.INSERTED); + this._popper = new Popper(this.element, tip, { + placement: attachment, + modifiers: { + offset: this._getOffset(), + flip: { + behavior: this.config.fallbackPlacement + }, + arrow: { + element: Selector$6.ARROW + }, + preventOverflow: { + boundariesElement: this.config.boundary + } + }, + onCreate: function onCreate(data) { + if (data.originalPlacement !== data.placement) { + _this._handlePopperPlacementChange(data); + } + }, + onUpdate: function onUpdate(data) { + return _this._handlePopperPlacementChange(data); + } + }); + $(tip).addClass(ClassName$6.SHOW); // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().on('mouseover', null, $.noop); + } + + var complete = function complete() { + if (_this.config.animation) { + _this._fixTransition(); + } + + var prevHoverState = _this._hoverState; + _this._hoverState = null; + $(_this.element).trigger(_this.constructor.Event.SHOWN); + + if (prevHoverState === HoverState.OUT) { + _this._leave(null, _this); + } + }; + + if ($(this.tip).hasClass(ClassName$6.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(this.tip); + $(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + } + }; + + _proto.hide = function hide(callback) { + var _this2 = this; + + var tip = this.getTipElement(); + var hideEvent = $.Event(this.constructor.Event.HIDE); + + var complete = function complete() { + if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) { + tip.parentNode.removeChild(tip); + } + + _this2._cleanTipClass(); + + _this2.element.removeAttribute('aria-describedby'); + + $(_this2.element).trigger(_this2.constructor.Event.HIDDEN); + + if (_this2._popper !== null) { + _this2._popper.destroy(); + } + + if (callback) { + callback(); + } + }; + + $(this.element).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + return; + } + + $(tip).removeClass(ClassName$6.SHOW); // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().off('mouseover', null, $.noop); + } + + this._activeTrigger[Trigger.CLICK] = false; + this._activeTrigger[Trigger.FOCUS] = false; + this._activeTrigger[Trigger.HOVER] = false; + + if ($(this.tip).hasClass(ClassName$6.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(tip); + $(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + + this._hoverState = ''; + }; + + _proto.update = function update() { + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + } // Protected + ; + + _proto.isWithContent = function isWithContent() { + return Boolean(this.getTitle()); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var tip = this.getTipElement(); + this.setElementContent($(tip.querySelectorAll(Selector$6.TOOLTIP_INNER)), this.getTitle()); + $(tip).removeClass(ClassName$6.FADE + " " + ClassName$6.SHOW); + }; + + _proto.setElementContent = function setElementContent($element, content) { + if (typeof content === 'object' && (content.nodeType || content.jquery)) { + // Content is a DOM node or a jQuery + if (this.config.html) { + if (!$(content).parent().is($element)) { + $element.empty().append(content); + } + } else { + $element.text($(content).text()); + } + + return; + } + + if (this.config.html) { + if (this.config.sanitize) { + content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn); + } + + $element.html(content); + } else { + $element.text(content); + } + }; + + _proto.getTitle = function getTitle() { + var title = this.element.getAttribute('data-original-title'); + + if (!title) { + title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title; + } + + return title; + } // Private + ; + + _proto._getOffset = function _getOffset() { + var _this3 = this; + + var offset = {}; + + if (typeof this.config.offset === 'function') { + offset.fn = function (data) { + data.offsets = _objectSpread({}, data.offsets, _this3.config.offset(data.offsets, _this3.element) || {}); + return data; + }; + } else { + offset.offset = this.config.offset; + } + + return offset; + }; + + _proto._getContainer = function _getContainer() { + if (this.config.container === false) { + return document.body; + } + + if (Util.isElement(this.config.container)) { + return $(this.config.container); + } + + return $(document).find(this.config.container); + }; + + _proto._getAttachment = function _getAttachment(placement) { + return AttachmentMap$1[placement.toUpperCase()]; + }; + + _proto._setListeners = function _setListeners() { + var _this4 = this; + + var triggers = this.config.trigger.split(' '); + triggers.forEach(function (trigger) { + if (trigger === 'click') { + $(_this4.element).on(_this4.constructor.Event.CLICK, _this4.config.selector, function (event) { + return _this4.toggle(event); + }); + } else if (trigger !== Trigger.MANUAL) { + var eventIn = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSEENTER : _this4.constructor.Event.FOCUSIN; + var eventOut = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSELEAVE : _this4.constructor.Event.FOCUSOUT; + $(_this4.element).on(eventIn, _this4.config.selector, function (event) { + return _this4._enter(event); + }).on(eventOut, _this4.config.selector, function (event) { + return _this4._leave(event); + }); + } + }); + $(this.element).closest('.modal').on('hide.bs.modal', function () { + if (_this4.element) { + _this4.hide(); + } + }); + + if (this.config.selector) { + this.config = _objectSpread({}, this.config, { + trigger: 'manual', + selector: '' + }); + } else { + this._fixTitle(); + } + }; + + _proto._fixTitle = function _fixTitle() { + var titleType = typeof this.element.getAttribute('data-original-title'); + + if (this.element.getAttribute('title') || titleType !== 'string') { + this.element.setAttribute('data-original-title', this.element.getAttribute('title') || ''); + this.element.setAttribute('title', ''); + } + }; + + _proto._enter = function _enter(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true; + } + + if ($(context.getTipElement()).hasClass(ClassName$6.SHOW) || context._hoverState === HoverState.SHOW) { + context._hoverState = HoverState.SHOW; + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.SHOW; + + if (!context.config.delay || !context.config.delay.show) { + context.show(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.SHOW) { + context.show(); + } + }, context.config.delay.show); + }; + + _proto._leave = function _leave(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false; + } + + if (context._isWithActiveTrigger()) { + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.OUT; + + if (!context.config.delay || !context.config.delay.hide) { + context.hide(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.OUT) { + context.hide(); + } + }, context.config.delay.hide); + }; + + _proto._isWithActiveTrigger = function _isWithActiveTrigger() { + for (var trigger in this._activeTrigger) { + if (this._activeTrigger[trigger]) { + return true; + } + } + + return false; + }; + + _proto._getConfig = function _getConfig(config) { + var dataAttributes = $(this.element).data(); + Object.keys(dataAttributes).forEach(function (dataAttr) { + if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) { + delete dataAttributes[dataAttr]; + } + }); + config = _objectSpread({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {}); + + if (typeof config.delay === 'number') { + config.delay = { + show: config.delay, + hide: config.delay + }; + } + + if (typeof config.title === 'number') { + config.title = config.title.toString(); + } + + if (typeof config.content === 'number') { + config.content = config.content.toString(); + } + + Util.typeCheckConfig(NAME$6, config, this.constructor.DefaultType); + + if (config.sanitize) { + config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn); + } + + return config; + }; + + _proto._getDelegateConfig = function _getDelegateConfig() { + var config = {}; + + if (this.config) { + for (var key in this.config) { + if (this.constructor.Default[key] !== this.config[key]) { + config[key] = this.config[key]; + } + } + } + + return config; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); + + if (tabClass !== null && tabClass.length) { + $tip.removeClass(tabClass.join('')); + } + }; + + _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) { + var popperInstance = popperData.instance; + this.tip = popperInstance.popper; + + this._cleanTipClass(); + + this.addAttachmentClass(this._getAttachment(popperData.placement)); + }; + + _proto._fixTransition = function _fixTransition() { + var tip = this.getTipElement(); + var initConfigAnimation = this.config.animation; + + if (tip.getAttribute('x-placement') !== null) { + return; + } + + $(tip).removeClass(ClassName$6.FADE); + this.config.animation = false; + this.hide(); + this.show(); + this.config.animation = initConfigAnimation; + } // Static + ; + + Tooltip._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$6); + + var _config = typeof config === 'object' && config; + + if (!data && /dispose|hide/.test(config)) { + return; + } + + if (!data) { + data = new Tooltip(this, _config); + $(this).data(DATA_KEY$6, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Tooltip, null, [{ + key: "VERSION", + get: function get() { + return VERSION$6; + } + }, { + key: "Default", + get: function get() { + return Default$4; + } + }, { + key: "NAME", + get: function get() { + return NAME$6; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY$6; + } + }, { + key: "Event", + get: function get() { + return Event$6; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY$6; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$4; + } + }]); + + return Tooltip; + }(); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $.fn[NAME$6] = Tooltip._jQueryInterface; + $.fn[NAME$6].Constructor = Tooltip; + + $.fn[NAME$6].noConflict = function () { + $.fn[NAME$6] = JQUERY_NO_CONFLICT$6; + return Tooltip._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$7 = 'popover'; + var VERSION$7 = '4.3.1'; + var DATA_KEY$7 = 'bs.popover'; + var EVENT_KEY$7 = "." + DATA_KEY$7; + var JQUERY_NO_CONFLICT$7 = $.fn[NAME$7]; + var CLASS_PREFIX$1 = 'bs-popover'; + var BSCLS_PREFIX_REGEX$1 = new RegExp("(^|\\s)" + CLASS_PREFIX$1 + "\\S+", 'g'); + + var Default$5 = _objectSpread({}, Tooltip.Default, { + placement: 'right', + trigger: 'click', + content: '', + template: '' + }); + + var DefaultType$5 = _objectSpread({}, Tooltip.DefaultType, { + content: '(string|element|function)' + }); + + var ClassName$7 = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector$7 = { + TITLE: '.popover-header', + CONTENT: '.popover-body' + }; + var Event$7 = { + HIDE: "hide" + EVENT_KEY$7, + HIDDEN: "hidden" + EVENT_KEY$7, + SHOW: "show" + EVENT_KEY$7, + SHOWN: "shown" + EVENT_KEY$7, + INSERTED: "inserted" + EVENT_KEY$7, + CLICK: "click" + EVENT_KEY$7, + FOCUSIN: "focusin" + EVENT_KEY$7, + FOCUSOUT: "focusout" + EVENT_KEY$7, + MOUSEENTER: "mouseenter" + EVENT_KEY$7, + MOUSELEAVE: "mouseleave" + EVENT_KEY$7 + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Popover = + /*#__PURE__*/ + function (_Tooltip) { + _inheritsLoose(Popover, _Tooltip); + + function Popover() { + return _Tooltip.apply(this, arguments) || this; + } + + var _proto = Popover.prototype; + + // Overrides + _proto.isWithContent = function isWithContent() { + return this.getTitle() || this._getContent(); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $(this.getTipElement()).addClass(CLASS_PREFIX$1 + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var $tip = $(this.getTipElement()); // We use append for html objects to maintain js events + + this.setElementContent($tip.find(Selector$7.TITLE), this.getTitle()); + + var content = this._getContent(); + + if (typeof content === 'function') { + content = content.call(this.element); + } + + this.setElementContent($tip.find(Selector$7.CONTENT), content); + $tip.removeClass(ClassName$7.FADE + " " + ClassName$7.SHOW); + } // Private + ; + + _proto._getContent = function _getContent() { + return this.element.getAttribute('data-content') || this.config.content; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX$1); + + if (tabClass !== null && tabClass.length > 0) { + $tip.removeClass(tabClass.join('')); + } + } // Static + ; + + Popover._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$7); + + var _config = typeof config === 'object' ? config : null; + + if (!data && /dispose|hide/.test(config)) { + return; + } + + if (!data) { + data = new Popover(this, _config); + $(this).data(DATA_KEY$7, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Popover, null, [{ + key: "VERSION", + // Getters + get: function get() { + return VERSION$7; + } + }, { + key: "Default", + get: function get() { + return Default$5; + } + }, { + key: "NAME", + get: function get() { + return NAME$7; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY$7; + } + }, { + key: "Event", + get: function get() { + return Event$7; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY$7; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$5; + } + }]); + + return Popover; + }(Tooltip); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $.fn[NAME$7] = Popover._jQueryInterface; + $.fn[NAME$7].Constructor = Popover; + + $.fn[NAME$7].noConflict = function () { + $.fn[NAME$7] = JQUERY_NO_CONFLICT$7; + return Popover._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$8 = 'scrollspy'; + var VERSION$8 = '4.3.1'; + var DATA_KEY$8 = 'bs.scrollspy'; + var EVENT_KEY$8 = "." + DATA_KEY$8; + var DATA_API_KEY$6 = '.data-api'; + var JQUERY_NO_CONFLICT$8 = $.fn[NAME$8]; + var Default$6 = { + offset: 10, + method: 'auto', + target: '' + }; + var DefaultType$6 = { + offset: 'number', + method: 'string', + target: '(string|element)' + }; + var Event$8 = { + ACTIVATE: "activate" + EVENT_KEY$8, + SCROLL: "scroll" + EVENT_KEY$8, + LOAD_DATA_API: "load" + EVENT_KEY$8 + DATA_API_KEY$6 + }; + var ClassName$8 = { + DROPDOWN_ITEM: 'dropdown-item', + DROPDOWN_MENU: 'dropdown-menu', + ACTIVE: 'active' + }; + var Selector$8 = { + DATA_SPY: '[data-spy="scroll"]', + ACTIVE: '.active', + NAV_LIST_GROUP: '.nav, .list-group', + NAV_LINKS: '.nav-link', + NAV_ITEMS: '.nav-item', + LIST_ITEMS: '.list-group-item', + DROPDOWN: '.dropdown', + DROPDOWN_ITEMS: '.dropdown-item', + DROPDOWN_TOGGLE: '.dropdown-toggle' + }; + var OffsetMethod = { + OFFSET: 'offset', + POSITION: 'position' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var ScrollSpy = + /*#__PURE__*/ + function () { + function ScrollSpy(element, config) { + var _this = this; + + this._element = element; + this._scrollElement = element.tagName === 'BODY' ? window : element; + this._config = this._getConfig(config); + this._selector = this._config.target + " " + Selector$8.NAV_LINKS + "," + (this._config.target + " " + Selector$8.LIST_ITEMS + ",") + (this._config.target + " " + Selector$8.DROPDOWN_ITEMS); + this._offsets = []; + this._targets = []; + this._activeTarget = null; + this._scrollHeight = 0; + $(this._scrollElement).on(Event$8.SCROLL, function (event) { + return _this._process(event); + }); + this.refresh(); + + this._process(); + } // Getters + + + var _proto = ScrollSpy.prototype; + + // Public + _proto.refresh = function refresh() { + var _this2 = this; + + var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION; + var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method; + var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0; + this._offsets = []; + this._targets = []; + this._scrollHeight = this._getScrollHeight(); + var targets = [].slice.call(document.querySelectorAll(this._selector)); + targets.map(function (element) { + var target; + var targetSelector = Util.getSelectorFromElement(element); + + if (targetSelector) { + target = document.querySelector(targetSelector); + } + + if (target) { + var targetBCR = target.getBoundingClientRect(); + + if (targetBCR.width || targetBCR.height) { + // TODO (fat): remove sketch reliance on jQuery position/offset + return [$(target)[offsetMethod]().top + offsetBase, targetSelector]; + } + } + + return null; + }).filter(function (item) { + return item; + }).sort(function (a, b) { + return a[0] - b[0]; + }).forEach(function (item) { + _this2._offsets.push(item[0]); + + _this2._targets.push(item[1]); + }); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$8); + $(this._scrollElement).off(EVENT_KEY$8); + this._element = null; + this._scrollElement = null; + this._config = null; + this._selector = null; + this._offsets = null; + this._targets = null; + this._activeTarget = null; + this._scrollHeight = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$6, typeof config === 'object' && config ? config : {}); + + if (typeof config.target !== 'string') { + var id = $(config.target).attr('id'); + + if (!id) { + id = Util.getUID(NAME$8); + $(config.target).attr('id', id); + } + + config.target = "#" + id; + } + + Util.typeCheckConfig(NAME$8, config, DefaultType$6); + return config; + }; + + _proto._getScrollTop = function _getScrollTop() { + return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop; + }; + + _proto._getScrollHeight = function _getScrollHeight() { + return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); + }; + + _proto._getOffsetHeight = function _getOffsetHeight() { + return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height; + }; + + _proto._process = function _process() { + var scrollTop = this._getScrollTop() + this._config.offset; + + var scrollHeight = this._getScrollHeight(); + + var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight(); + + if (this._scrollHeight !== scrollHeight) { + this.refresh(); + } + + if (scrollTop >= maxScroll) { + var target = this._targets[this._targets.length - 1]; + + if (this._activeTarget !== target) { + this._activate(target); + } + + return; + } + + if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) { + this._activeTarget = null; + + this._clear(); + + return; + } + + var offsetLength = this._offsets.length; + + for (var i = offsetLength; i--;) { + var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]); + + if (isActiveTarget) { + this._activate(this._targets[i]); + } + } + }; + + _proto._activate = function _activate(target) { + this._activeTarget = target; + + this._clear(); + + var queries = this._selector.split(',').map(function (selector) { + return selector + "[data-target=\"" + target + "\"]," + selector + "[href=\"" + target + "\"]"; + }); + + var $link = $([].slice.call(document.querySelectorAll(queries.join(',')))); + + if ($link.hasClass(ClassName$8.DROPDOWN_ITEM)) { + $link.closest(Selector$8.DROPDOWN).find(Selector$8.DROPDOWN_TOGGLE).addClass(ClassName$8.ACTIVE); + $link.addClass(ClassName$8.ACTIVE); + } else { + // Set triggered link as active + $link.addClass(ClassName$8.ACTIVE); // Set triggered links parents as active + // With both