Files
Yi.Admin/WebFirst/database/sqlite.db

11454 lines
620 KiB
Plaintext
Raw Normal View History

2022-09-13 17:05:53 +08:00
SQLite format 3@ <02><00><00><02>.,P<0F><0F> J <0B> <09>`u<05><03><01><01><00>) ##<01>tableCommonFieldCommonFieldCREATE TABLE "CommonField"(
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ClassProperName" varchar(255) NOT NULL ,
"DbColumnName" varchar(255) NOT NULL ,
"Required" bit NOT NULL ,
"IsIdentity" bit NOT NULL ,
"IsPrimaryKey" bit NOT NULL ,
"Description" varchar(255) NULL ,
"CodeType" varchar(255) NOT NULL ,
"CodeTableId" integer NOT NULL ,
"IsDeleted" bit NOT NULL )<29>
<01>tableProjectProjectCREATE TABLE "Project"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"TemplateId1" varchar(255) NOT NULL ,
"Path" varchar(255) NOT NULL ,
"FileInfo" varchar(255) NULL ,
"FileModel" varchar(255) NULL ,
"Sort" integer NOT NULL ,
"IsDeleted" bit NOT NULL ,
"ModelId" integer NOT NULL ,
"FileSuffix" varchar(255) NOT NULL ,
"NameFormat" varchar(255) NULL ,
"ProjentName" varchar(255) NOT NULL ,
"SolutionId" varchar(50) NULL ,
"IsInit" bit NULL ,
"Reference" varchar(255) NULL )<29>1 ##<01>)tableCodeColumnsCodeColumnsCREATE TABLE "CodeColumns"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ClassProperName" varchar(255) NOT NULL ,
"DbColumnName" varchar(255) NOT NULL ,
"Required" bit NOT NULL ,
"IsIdentity" bit NOT NULL ,
"IsPrimaryKey" bit NOT NULL ,
"Description" varchar(255) NULL ,
"CodeType" varchar(255) NOT NULL ,
"CodeTableId" integer NOT NULL ,
"DefaultValue" varchar(255) NULL )<29>h<01>#tableCodeTypeCodeTypeCREATE TABLE "CodeType"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL ,
"CSharepType" varchar(255) NOT NULL ,
"DbType" text NOT NULL ,
"Sort" integer NOT NULL )<29><01>tableCodeTableCodeTableCREATE TABLE "CodeTable"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"DbId" integer NOT NULL ,
"ClassName" varchar(255) NOT NULL ,
"TableName" varchar(255) NOT NULL ,
"Description" varchar(255) NULL ,
"CreateTime" datetime NOT NULL ,
"PreUpdateTime" datetime NOT NULL ,
"UpdateTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsLock" bit NOT NULL )<29>2<01>7tableFileInfoFileInfo
CREATE TABLE "FileInfo"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL ,
"Content" varchar(255) NOT NULL ,
"Json" varchar(255) NOT NULL ,
"Suffix" varchar(255) NOT NULL ,
"Sort" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsInit" bit NOT NULL ,
"PojectId" uniqueidentifier NOT NULL ,
"SolutionId" varchar(50) NULL )<29>%%<01>mtableTemplateTypeTemplateTypeCREATE TABLE "TemplateType"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL )<29>s<01>9tableTemplateTemplateCREATE TABLE "Template"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Title" varchar(255) NOT NULL ,
"TemplateTypeId" integer NOT NULL ,
"Content" varchar(255) NOT NULL ,
"TemplateTypeName" varchar(255) NOT NULL ,
"Sort" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsInit" bit NULL )<29><01>otableDatabaseDatabaseCREATE TABLE "Database"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Desc" varchar(255) NOT NULL ,
"Connection" varchar(255) NOT NULL ,
"DbType" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)<29>Z<01>tableMenuMenuCREATE TABLE "Menu"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ParentId" integer NOT NULL ,
"Icon" varchar(255) NULL ,
"MenuName" varchar(255) NOT NULL ,
2022-09-13 17:05:53 +08:00
"Url" varchar(255) NUL  <0C><0F><0F><0F>^+<0E><0E><0E><0E>z\; <0A> <0A> <0A> \  <0C> <0C>B%k商务合作https://www.donet5.com/Doc/28/2358?src=webfirstB%k打赏作者https://www.donet5.com/Doc/28/2357?src=webfirst?kSugar.IOChttps://www.donet5.com/Doc/10/2250?src=webfirst?%eSqlSugar ORMhttps://www.donet5.com/Home/Doc?src=webfirst9aWebFirsthttps://www.donet5.com/Doc/11?src=webfirst#/%fa fa-bar-chart-o全部教程% 方案管理/Project%% 扩展属性/TagProperty %% 公共字段/CommonFiled % 数据类型/CodeType % 文件管理/FileInfo
% 模版管理/Template& /+fa fa-bar-chart-o自定义配置 %云方案 ×/Solution %配置前端/Web %配置业务/BIZ1 U配置实体(视图建类模式)/DbView/ O配置实体(表建类模式)/DbFirst1 O!配置实体(类建表模式)/CodeFirst +配置数据库/Database!%fa fa-edit方案生成 z E<0F><0F><0F><0F><0F><0F>h<0F>WE<0F>
#CodeColumnsUMenu Database Project CodeType# FileInfoM Template%TemplateType Menu || <0A> <0A> <0A>_#<23>ECYiFrameworkserver=119.91.207.67;port=3306;database=yi-sqlsugar-dev;user id=root;password=Qz52013142020.2022-04-03 19:18:29.9590072<01><00>#<00>#<23>1
2022-04-03 23:36:31 +08:00
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace @Model.name_space
{
/// <summary>
/// @((Model.Description+"").Replace("\r","").Replace("\n",""))
///</summary>
[SugarTable("@(Model.TableName)")]
public class @(Model.ClassName)
{
@foreach (var item in Model.PropertyGens)
{
var isPrimaryKey = item.IsPrimaryKey ? ",IsPrimaryKey = true" : "";
var isIdentity = item.IsIdentity ? ",IsIdentity = true" : "";
var isNull=(item.IsNullable&&item.Type!="string"&&item.IsSpecialType==false&&item.Type!="byte[]")?"?":"";
var isIgnore=(item.IsIgnore?",IsIgnore = true":"");
var isJson=(item.CodeType.StartsWith("json")?",IsJson= true":"");
var newPropertyName=item.PropertyName; //这里可以用C#处理 实体属性的显式格式
//想和数据库一样就用 newPropertyName=item.DbColumnName
if(System.Text.RegularExpressions.Regex.IsMatch(newPropertyName.Substring(0,1), "[0-9]"))
{
newPropertyName="_"+newPropertyName;//处理属性名开头为数字情况
}
if(newPropertyName==Model.ClassName)
{
newPropertyName="_"+newPropertyName;//处理属性名不能等于类名
}
var desc=(item.Description+"").Replace("\r","").Replace("\n","");//处理换行
if(isIgnore!="")
{
isPrimaryKey =isIdentity =isNull="";
}
@:/// <summary>
@:/// @(desc)
@if(item.DefaultValue!=null)
{
@:/// 默认值: @Raw(item.DefaultValue)
}
@:///</summary>
@: [SugarColumn(ColumnName="@item.DbColumnName" @(isPrimaryKey) @(isIdentity) @(isIgnore) @(isJson))]
@: public @Raw(item.Type)@isNull @newPropertyName { get; set; }
}
}
}
2022-09-13 17:05:53 +08:00
实体2021-11-26 1  <0F><0F><0F><0F>
2022-04-09 16:16:32 +08:00
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
2022-04-03 23:36:31 +08:00
{
2022-04-09 16:16:32 +08:00
public partial class @(Model.ClassName)Service : BaseService<@(Model.ClassName)Entity>, I@(Model.ClassName)Service
{
public @(Model.ClassName)Service(IRepository<@(Model.ClassName)Entity> repository) : base(repository)
{
}
}
}
2022-09-13 17:05:53 +08:00
业务2022-04-09 15:55:41.307XQ <09>y; [简单三层]_模版_实体_Sugarusing System;
2022-04-03 23:36:31 +08:00
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace @Model.name_space
{
/// <summary>
/// @((Model.Description+"").Replace("\r","").Replace("\n",""))
///</summary>
2022-09-13 17:05:53 +08:00
[SugarTable("@(Model.TableName<6D>" Q <09>=; [简单三层]_模版_<E78988>~ Q <09>s; [简单三层]_模版_实体_Sugarusing System;
2022-04-24 16:44:16 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Serialization;
2022-04-24 16:44:16 +08:00
using SqlSugar;
namespace @Model.name_space
{
/// <summary>
/// @((Model.Description+"").Replace("\r","").Replace("\n",""))
///</summary>
[SugarTable("@(Model.TableName)")]
public partial class @(Model.ClassName)Entity:IBaseModelEntity
2022-04-03 23:36:31 +08:00
{
2022-04-24 16:44:16 +08:00
public @(Model.ClassName)Entity()
{
this.CreateTime = DateTime.Now;
}
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(ColumnName="Id" ,IsPrimaryKey = true )]
public long Id { get; set; }
2022-04-03 23:36:31 +08:00
@foreach (var item in Model.PropertyGens)
{
var isPrimaryKey = item.IsPrimaryKey ? ",IsPrimaryKey = true" : "";
var isIdentity = item.IsIdentity ? ",IsIdentity = true" : "";
var isNull=(item.IsNullable&&item.Type!="string"&&item.IsSpecialType==false&&item.Type!="byte[]")?"?":"";
var isIgnore=(item.IsIgnore?",IsIgnore = true":"");
var isJson=(item.CodeType.StartsWith("json")?",IsJson= true":"");
var newPropertyName=item.PropertyName; //这里可以用C#处理 实体属性的显式格式
//想和数据库一样就用 newPropertyName=item.DbColumnName
2022-04-08 23:44:25 +08:00
List<string> isIgnoreList=new List<string>()
{
"Id"
2022-04-08 23:44:25 +08:00
};
if (isIgnoreList.Contains(newPropertyName))
{
continue;
}
2022-04-03 23:36:31 +08:00
if(System.Text.RegularExpressions.Regex.IsMatch(newPropertyName.Substring(0,1), "[0-9]"))
{
newPropertyName="_"+newPropertyName;//处理属性名开头为数字情况
}
if(newPropertyName==Model.ClassName)
{
newPropertyName="_"+newPropertyName;//处理属性名不能等于类名
}
var desc=(item.Description+"").Replace("\r","").Replace("\n","");//处理换行
if(isIgnore!="")
{
isPrimaryKey =isIdentity =isNull="";
}
@:/// <summary>
@:/// @(desc)
@if(item.DefaultValue!=null)
{
@:/// 默认值: @Raw(item.DefaultValue)
}
@:///</summary>
@: [SugarColumn(ColumnName="@item.DbColumnName" @(isPrimaryKey) @(isIdentity) @(isIgnore) @(isJson))]
@: public @Raw(item.Type)@isNull @newPropertyName { get; set; }
}
}
}
2022-09-13 17:05:53 +08:00
实体2022-09-13 16:21:40.228  <0B> <0B><0F>K<01>!; [简单三层]_模版_API_Sugarusing SqlSugar;
2022-04-03 23:36:31 +08:00
using System;
using System.Collecti2K<01>K; [简单三层]_模版_API_Sugarusing SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using S<0E>K<01>3; [<5B><><0E>K<01>; [简单三层]_模版_API_Sugarusing System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks; K<01>m; [简单三层]_模版_API_Sugarusing System;
using System.Collections.Generic;
using System.Linq;
using System. <0A>K<01>{; [简单三层]_模版_API_Sugarusing Brick.Common.Entities;
using ETX.Entity;
using ETX.Interface.IService;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
namespace @(Model.name_space)
{
[Route("api/[controller]/[action]")]
[ApiController]
public class @(Model.ClassName)Controller : ControllerBase
{
private ILogger<@(Model.ClassName)Controller> _logger;
private I@(Model.ClassName)Service _i@(Model.ClassName)Service;
2022-04-07 22:48:10 +08:00
public @(Model.ClassName)Controller(IL FK<01>; [简单三层]_模版_API_S K<01>1; [简单三层]_模版_API_Sugarusing Brick.Common;
2022-04-03 23:36:31 +08:00
using Brick.Common.Entities;
using Brick.WebCore.Mapper;
using Brick.WebCore.MiddlewareExtend;
using ETX.Entity;
using ETX.Entity.DtoEntity;
using ETX.Interface.IService;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
namespace Brick.UserManager.Controllers
{
[Route("api/user/[controller]/[action]")]
[ApiController]
public class @(Model.ClassName)Controller : ControllerBase
{
private ILogger<@(Model.ClassName)Controller> _logger;
private I@(Model.ClassName)Service _i@(Model.ClassName)Service;
public @(Model.ClassName)Controller(ILogger<@(Model.ClassName)Controller> logger, I@(Model.ClassName)Service I@(Model.ClassName)Service)
{
this._logger = logger;
this._i@(Model.ClassName)Service = I@(Model.ClassName)Service;
}
/// <summary>
/// 查
/// </summary>
/// <returns></returns>
[HttpGet]
public async Task<Result> GetListByPage(int pageIndex, int pageSize, Guid? Id, int? IsDeleted)
{
if (Id.IsGuidNotNull())
{
return Result.Success().SetData(await _i@(Model.ClassName)Service.GetByIdAsync(Id));
}
if (pageIndex == 0)
{
return Result.Success().SetData(await _i@(Model.ClassName)Service.GetListAsync(IsDeleted.IsNotNull(), u => Convert.ToInt32(u.IsDeleted) == IsDeleted));
}
var qp = new QueryParameters().SetParameters(new Dictionary<string, string> { });
return Result.Success().SetData(_i@(<28>c K<01>C; [简单三层]_模版_API_Sugarusing Microsoft.AspNetCore.Authorization;
2022-04-07 22:48:10 +08:00
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Yi.Framework.Common.Models;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
using Yi.Framework.WebCore;
using Yi.Framework.WebCore.AttributeExtend;
using Yi.Framework.WebCore.AuthorizationPolicy;
namespace Yi.Framework.ApiMicroservice.Controllers
{
[ApiController]
[Route("api/[controller]/[action]")]
public class @(Model.ClassName)Controller : BaseCrudController<@(Model.ClassName)Entity>
{
private I@(Model.ClassName)Service _i@(Model.ClassName)Service;
2022-04-07 22:48:10 +08:00
public @(Model.ClassName)Controller(ILogger<@(Model.ClassName)Entity> logger, I@(Model.ClassName)Service i@(Model.ClassName)Service) : base(logger, i@(Model.ClassName)Service)
2022-04-03 23:36:31 +08:00
{
_i@(Model.ClassName)Service = i@(Model.ClassName)Service;
2022-04-03 23:36:31 +08:00
}
}
}
2022-09-10 20:05:45 +08:00
前端2022-04-12 17:56:31.675 <02><0E>}<05><04>{<02><00>
amC FurionSqlSugarApi_FurionApi.Web.Core业务//修改WebCore.txt模版后, 重新启动程序业务<03>2022-09-10 20:02:45.10787061<EFBFBD> g<01>C FurionSqlSugarApi_FurionApi.Application业务//修改IBiz.txt模版后, 重新启动程序
namespace FurionApi.Application
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
public interface I@(Model.ClassName)Service
{
string Get@(Model.ClassName)();
}
}业务<03>2022-09-10 20:02:45.10554941<EFBFBD>  ]<01>{C FurionSqlSugarApi_FurionApi.Web.EntryWeb//修改Api.txt模版后, 重新启动程序
[DynamicApiController]
public class @(Model.ClassName)Api
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
public string Test()
{
return "Hello, Furion";
}
}Web<03>2022-09-10 20:02:45.10030091<EFBFBD>R g<01>uC FurionSqlSugarApi_FurionApi.Application业务//修改Biz.txt模版后, 重新启动程序
//修改Biz.txt模版后, 重新启动程序
namespace FurionApi.Application
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
public class @(Model.ClassName)Service : I@(Model.ClassName)Service, ITransient
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
public string Get@(Model.ClassName)()
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
return "让 .NET 开发更简单,更通用,更流行。";
2022-04-03 23:36:31 +08:00
}
2022-09-10 20:05:45 +08:00
}
}业务<03>2022-09-10 20:02:45.09720691<EFBFBD>V Y <09> C FurionSqlSugarApi_FurionApi.Core实体using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace @Model.name_space
{
/// <summary>
/// @((Model.Description+"").Replace("\r","").Replace("\n",""))
///</summary>
[SugarTable("@(Model.TableName)")]
public class @(Model.ClassName)
{
@foreach (var item in Model.PropertyGens)
{
var isPrimaryKey = item.IsPrimaryKey ? ",IsPrimaryKey = true" : "";
var isIdentity = item.IsIdentity ? ",IsIdentity = true" : "";
var isNull=(item.IsNullable&&item.Type!="string"&&item.IsSpecialType==false&&item.Type!="byte[]")?"?":"";
var isIgnore=(item.IsIgnore?",IsIgnore = true":"");
var isJson=(item.CodeType.StartsWith("json")?",IsJson= true":"");
2022-04-03 23:36:31 +08:00
2022-09-10 20:05:45 +08:00
var newPropertyName=item.PropertyName; //这里可以用C#处理 实体属性的显式格式
//想和数据库一样就用 newPropertyName=item.DbColumnName
if(System.Text.RegularExpressions.Regex.IsMatch(newPropertyName.Substring(0,1), "[0-9]"))
{
newPropertyName="_"+newPropertyName;//处理属性名开头为数字情况
}
if(newPropertyName==Model.ClassName)
{
newPropertyName="_"+newPropertyName;//处理属性名不能等于类名
}
2022-04-03 23:36:31 +08:00
2022-09-10 20:05:45 +08:00
var desc=(item.Description+"").Replace("\r","").Replace("\n","");//处理换行
2022-04-03 23:36:31 +08:00
2022-09-10 20:05:45 +08:00
if(isIgnore!="")
{
isPrimaryKey =isIdentity =isNull="";
}
@:/// <summary>
@:/// @(desc)
@if(item.DefaultValue!=null)
2022-04-03 23:36:31 +08:00
{
2022-09-10 20:05:45 +08:00
@:/// 默认值: @Raw(item.DefaultValue)
2022-04-03 23:36:31 +08:00
}
2022-09-10 20:05:45 +08:00
@:///</summary>
@: [SugarColumn(ColumnName="@item.DbColumnName" @(isPrimaryKey) @(isIdentity) @(isIgnore) @(isJson))]
@: public @Raw(item.Type)@isNull @newPropertyName { get; set; }
}
}
}
实体<03>2022-09-10 20:02:45.06776851<EFBFBD>' Q<01>E;[简单三层]_模板_接口_sugarusing Yi.Framework.Model.Models;
2022-04-03 23:36:31 +08:00
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
2022-04-09 16:16:32 +08:00
public partial interface I@(Model.ClassName)Service:IBaseService<@(Model.ClassName)Entity>
2022-04-03 23:36:31 +08:00
{
}
}
2022-09-10 20:05:45 +08:00
业务2022-04-09 15:55:09.811<0F><00><0F><0F><0F><0F><0F><0F><0F><0F><0F><0F><0F><0F><0F><0F><00> '<27>qC URepository.csusing SqlSugar;
2022-04-03 23:36:31 +08:00
using System.Collections.Generic;
using System.Linq;
namespace @Model.name_space
{
/***这里面写的代码不会给覆盖,如果要重新生成请删除 Repository.cs ***/
/// <summary>
/// 仓储模式
/// </summary>
/// <typeparam name="T"></typeparam>
public class Repository<T> : SimpleClient<T> where T : class, new()
{
/// <summary>
/// 构造函数
/// </summary>
<0B>c5<>S<EFBFBD>?C U.net core 3.1 类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.137164400000000-0000-0000-0000-000000000000<30> ?<3F><15>?C U.net core 3.1 web 项目<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.131851100000000-0000-0000-0000-000000000000<30>=<3D><15>?C U.net core 5.0 web 项目<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.126262300000000-0000-0000-0000-000000000000<30>\5<>E<EFBFBD>?C U.net core 5.0 类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.120707400000000-0000-0000-0000-000000000000<30>a/<2F>U<EFBFBD>?C U.net 标准类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
2022-09-10 20:05:45 +08:00
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]<00>H<00>=<00>3<00>+/(.%,$+"*)(   /// <param name="context"></param>
2022-04-03 23:36:31 +08:00
public Repository(ISqlSugarClient context = null) : base(context)//注意这里要有默认值等于null
{
if (context == null)
{
base.Context = Db;
}
}
/// <summary>
/// SqlSugarScope操作数据库是线程安的可以单例
/// </summary>
public static SqlSugarScope Db = new SqlSugarScope(new ConnectionConfig()
{
DbType = [请设置DbType],
ConnectionString = [请设置ConStr],
IsAutoCloseConnection = true
},
db =>
{
//如果用单例配置要统一写在这儿
db.Aop.OnLogExecuting = (s, p) =>
{
};
});
/// <summary>
/// 仓储扩展方法:单表查询通用分页
/// </summary>
/// <returns></returns>
public object CommonPage(QueryParameters pars, int pageIndex, int pagesize)
{
int tolCount = 0;
var sugarParamters = pars.Parameters.Select(it => (IConditionalModel)new ConditionalModel()
{
ConditionalType = it.ConditionalType,
FieldName = it.FieldName,
FieldValue = it.FieldValue
}).ToList();
var query = Db.Queryable<T>();
if (pars.OrderBys != null)
{
foreach (var item in pars.OrderBys)
{
query.OrderBy(item.ToSqlFilter());//格式 id asc或者 id desc
}
}
var result = query.Where(sugarParamters).ToPageList(1, 2, ref tolCount);
return new
{
count = tolCount,
data = result
};
}
/// <summary>
/// 仓储扩展方法:多表查询通用分页
/// 用法 CommonPage(db.Queryable<JoinTable1,JoinTable2>(...).Select(it=new class(){..}).MergeTable(),pars,orderbys,pageIndex,pagesize)
/// </summary>
/// <returns></returns>
public object CommonPage<ViewModel>(ISugarQueryable<ViewModel> query, QueryParameters pars, int pageIndex, int pagesize)
{
int tolCount = 0;
var sugarParamters = pars.Parameters.Select(it => (IConditionalModel)new ConditionalModel()
{
ConditionalType = it.ConditionalType,
FieldName = it.FieldName,
FieldValue = it.FieldValue
}).ToList();
if (pars.OrderBys != null)
{
foreach (var item in pars.OrderBys)
{
query.OrderBy(item.ToSqlFilter());//格式 id asc或者 id desc
}
}
var result = query.Where(sugarParamters).ToPageList(1, 2, ref tolCount);
return new
{
count = tolCount,
data = result
};
}
}
/// <summary>
/// 通用查询参数
/// </summary>
public class QueryParameters
{
public List<QueryParameter> Parameters { get; set; }
public List<string> OrderBys { get; set; }
}
/// <summary>
/// 通用查询参数
/// </summary>
public class QueryParameter
{
public string FieldName { get; set; }
public string FieldValue { get; set; }
public ConditionalType ConditionalType
{
get; set;
}
}
}{"name":"DbContext", "name_space":"命名空间" }cs2021-11-26 11:00:09.141751200000000-0000-0000-0000-000000000000 <02> <0A> = 2&<04><02><00> '<27>qC URepository.csusing SqlSugar;
using System.Collections.Generic;
using System.Linq;
namespace @Model.name_space
{
/***这里面写的代码不会给覆盖,如果要重新生成请删除 Repository.cs ***/
/// <summary>
/// 仓储模式
/// </summary>
/// <typeparam name="T"></typeparam>
public class Repository<T> : SimpleClient<T> where T : class, new()
{
/// <summary>
/// 构造函数
/// </summary>
<0B>c5<>S<EFBFBD>?C U.net core 3.1 类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.137164400000000-0000-0000-0000-000000000000<30> ?<3F><15>?C U.net core 3.1 web 项目<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.131851100000000-0000-0000-0000-000000000000<30>=<3D><15>?C U.net core 5.0 web 项目<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.126262300000000-0000-0000-0000-000000000000<30>\5<>E<EFBFBD>?C U.net core 5.0 类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.120707400000000-0000-0000-0000-000000000000<30>a/<2F>U<EFBFBD>?C U.net 标准类库<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>@Model.name</RootNamespace>
<AssemblyName>@Model.name</AssemblyName>
</PropertyGroup>
<ItemGroup>
@foreach(var item in Model.nuget)
{
<PackageReference Include="@item.name" Version="@item.version" />
}
</ItemGroup>
@Raw(Model.reference)
</Project>
{ "name":"命名空间类库名","nuget":[{ "name":"SqlSugarCore","version":"5.0.3.4" }]}csproj2021-11-26 11:00:09.114357900000000-0000-0000-0000-000000000000 B<04>B<00>e 1<>7mC UAPI文件[Program]using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace @Model.name_space
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
}
{"name":"Program", "name_space":"命名空间" }cs2021-11-26 11:00:09.152128600000000-0000-0000-0000-000000000000<30>S 1<>mC UAPI文件[Startup]using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.OpenApi.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace @Model.name_space{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public readonly string MyAllowSpecificOrigins = "_myAllowSpecificOrigins";
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers();
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "WebFirst.Api", Version = "v1" });
});
//配置JSON.NET
services.AddControllers().AddNewtonsoftJson(opt =>
{
//忽略循环引用
opt.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
//不改变字段大小
opt.SerializerSettings.ContractResolver = new DefaultContractResolver();
});
//配置可以跨域
services.AddCors(options =>
{
options.AddPolicy(MyAllowSpecificOrigins,
builder => builder.AllowAnyOrigin()
.AllowAnyHeader()
.WithMethods("GET", "POST", "HEAD", "PUT", "DELETE", "OPTIONS")
);
});
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.InjectJavascript("");
c.SwaggerEndpoint("/swagger/v1/swagger.json", "API");
c.DocExpansion(Swashbuckle.AspNetCore.SwaggerUI.DocExpansion.None);
c.DefaultModelsExpandDepth(-1);
});
}
app.UseCors(MyAllowSpecificOrigins);//添加这个
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}
2022-09-10 20:05:45 +08:00
{"name":"Startup", "name_space":"命名空间" }cs2021-11-26 11:00:09.147027400000000-0000-0000-0000-000000000000 H<0E> <0B><08>w<04>H<00>&C<>YC U/FurionApi.Core.AssemblyInfo//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("FurionApi.Core")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("FurionApi.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("FurionApi.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// 由 MSBuild WriteCodeFragment 类生成。
{"name":"FurionApi.Core.AssemblyInfo"}.cs<03>2022-09-10 20:02:45.077327200000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C> c<> yC U/.NETCoreApp,Version=v6.0.AssemblyAttributes// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
{"name":".NETCoreApp,Version=v6.0.AssemblyAttributes"}.cs<03>2022-09-10 20:02:45.077024500000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>G )<29>%?C U FurionApi.Core<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionApi.Core</name>
</assembly>
<members>
<member name="T:FurionApi.Core.DbContext">
<summary>
数据库上下文对象
</summary>
</member>
<member name="F:FurionApi.Core.DbContext.Instance">
<summary>
SqlSugar 数据库实例
</summary>
</member>
</members>
</doc>
{"name":"FurionApi.Core"}.xml<03>2022-09-10 20:02:45.076721200000000-0000-0000-0000-0000000000001<30> )<29>)?C U FurionApi.Core<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionApi.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionApi.Core.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="3.6.4" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="3.6.4" />
<PackageReference Include="Furion.Pure" Version="3.6.4" />
<PackageReference Include="SqlSugarCore" Version="5.0.9.1" />
</ItemGroup>
</Project>
{"name":"FurionApi.Core"}.csproj<03>2022-09-10 20:02:45.076215900000000-0000-0000-0000-0000000000001<30>i
<1F>5C U DbContextusing Furion;
using SqlSugar;
using System.Collections.Generic;
namespace FurionApi.Core
{
/// <summary>
/// 数据库上下文对象
/// </summary>
public static class DbContext
{
/// <summary>
/// SqlSugar 数据库实例
/// </summary>
public static readonly SqlSugarScope Instance = new(
// 读取 appsettings.json 中的 ConnectionConfigs 配置节点
App.GetConfig<List<ConnectionConfig>>("ConnectionConfigs")
, db =>
{
// 这里配置全局事件,比如拦截执行 SQL
});
}
}{"name":"DbContext"}.cs<03>2022-09-10 20:02:45.073834900000000-0000-0000-0000-0000000000001<30>A C<> 9C UAPI文件[appsettings.json]{
2022-04-03 23:36:31 +08:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}
2022-09-09 15:53:11 +08:00
{"name":"appsettings"}json2021-11-26 11:00:09.157335700000000-0000-0000-0000-000000000000<0F>%<0F>t <0A> - <0C> m <0B> $
2022-04-24 23:09:34 +08:00
<EFBFBD>
2022-09-09 15:53:11 +08:00
E <09> q <08>8<07><07><06>P<05><05><04>V<03>5<03><01>+<02><00>Y<01>ijD !!C33DictionaryDictionary字典表2022-09-06 18:04:03.99246960001-01-01 00:00:000001-01-01 00:00:00^A C33MenuMenu菜单表2022-09-06 19:15:51.22976670001-01-01 00:00:000001-01-01 00:00:00^< C33UserUser用户表2022-05-03 18:44:31.35638050001-01-01 00:00:000001-01-01 00:00:00^> C33RoleRole角色表2022-05-08 14:41:32.65987460001-01-01 00:00:000001-01-01 00:00:00bC C33TenantTenant租户表2022-04-24 22:59:46.45382380001-01-01 00:00:000001-01-01 00:00:00rB 7C33RoleMenuRoleMenu角色菜单关系表2022-04-24 22:51:40.71485650001-01-01 00:00:000001-01-01 00:00:00\@ C33LogLog日志表2022-04-24 16:42:10.14269840001-01-01 00:00:000001-01-01 00:00:00\? C33 LogLog日志表2022-04-22 23:58:58.83233760001-01-01 00:00:000001-01-01 00:00:00q= 7A33UserRoleUserRole用户角色关系表2022-04-24 23:00:44.6303330001-01-01 00:00:000001-01-01 00:00:00X;  A33 TenantTenant2022-04-09 15:12:23.8181050001-01-01 00:00:000001-01-01 00:00:00b8 C33TenantTenant租户表2022-03-28 16:16:33.09423260001-01-01 00:00:000001-01-01 00:00:00V7 333Filefile文件表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00t6 7C33UserDtailUserDtail用户信息详情表2022-03-25 14:28:10.76269650001-01-01 00:00:000001-01-01 00:00:00^5 C33FileFile文件表2022-03-25 10:22:37.89735490001-01-01 00:00:000001-01-01 00:00:00f4 C33Resourceresource资源表2022-03-21 15:17:40.73929170001-01-01 00:00:000001-01-01 00:00:00j3 7333UserRoleuserrole用户角色关系表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00^2 C33Useruser用户表2022-03-25 14:03:44.43159470001-01-01 00:00:000001-01-01 00:00:00j1 7333RoleMenurolemenu角色权限关系表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00V0 333Rolerole角色表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00V/ 333Nlognlog日志表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00^. C33Menumenu菜单表2022-03-29 15:18:35.16337120001-01-01 00:00:000001-01-01 00:00:00k- ''%333LoginSettingsloginsettings登录配置0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00j, !!C33Dictionarydictionary字典表2022-03-22 15:16:15.55104670001-01-01 00:00:000001-01-01 00:00:00^ C33 Useruser用户表2022-03-11 12:57:48.17542340001-01-01 00:00:000001-01-01 00:00:00r 7C33 UserRoleuserRole用户角色关系表2022-03-11 12:53:55.32206730001-01-01 00:00:000001-01-01 00:00:00q ##+C33MachineInfoMachineInfo设备信息表2021-12-24 14:34:43.93439540001-01-01 00:00:000001-01-01 00:00:00j !!C33 DictionaryDictionary字典表2021-12-22 17:48:38.70087150001-01-01 00:00:000001-01-01 00:00:00s ''%C33 LoginSettingsLoginSettings登录配置2021-12-22 17:50:42.00952470001-01-01 00:00:000001-01-01 00:00:00r 7C33 RoleMenuRoleMenu角色权限关系表2022-03-11 12:54:33.29967950001-01-01 00:00:000001-01-01 00:00:00^ C33 RoleRole角色表2022-03-11 12:57:03.52199710001-01-01 00:00:000001-01-01 00:00:00^ C33 NlogNlog日志表2021-12-22 17:52:05.16184450001-01-01 00:00:000001-01-01 00:00:00^ C33 MenuMenu菜单表2022-03-11 12:57:24.52281230001-01-01 00:00:000001-01-01 00:00:00q 7C33 RoleMenuRoleMenu角色权限关系表2021-12-21 22:01:35.80446610001-01-01 00:00:000001-01-01 00:00:00q 7C33 UserRoleUserRole用户角色关系表2021-12-21 22:03:34.39833640001-01-01 00:00:000001-01-01 00:00:00_ C33 RolseRolse角色表2021-12-21 22:06:11.65244180001-01-01 00:00:000001-01-01 00:00:00] C33 UserUser用户表2021-12-21 22:23:05.84113360001-01-01 00:00:000001-01-01 00:00:00] C33 MenuMenu菜单表2021-12-21 22:05:28.87833530001-01-01 00:00:000001-01-01 00:00:00a '333 DemouserdemouserCodeFirstTest0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00i 'C33DemoUserDemoUserCodeFirstTest2021-11-26 11:04:09.18852790001-01-01 00:00:000001-01-01 00:$D<0F><0F>- <0A> <0A> @ <0C> j <0B> ]
2022-04-03 23:36:31 +08:00
<EFBFBD>
M <09> A<08> <07>X<05> nS<<01><00>EM'qstring_char10string[{"Name":"char","Length":10,"DecimalDigits":null}]'<10>%<19>ajson_defaultobject[{"Name":"json","Length":null,"DecimalDigits":null},{"Name":"varchar","Length":3999,"DecimalDigits":null}]<03>c))<29> datetimeoffsetDateTimeOffset[{"Name":"datetimeoffset","Length":null,"DecimalDigits":null}]<03><>8<19>MbyteArraybyte[][{"Name":"blob","Length":null,"DecimalDigits":null},{"Name":"longblob","Length":null,"DecimalDigits":null},{"Name":"binary","Length":null,"DecimalDigits":null}]<03><><15>longlong[{"Name":"long","Length":null,"DecimalDigits":null},{"Name":"int8","Length":null,"DecimalDigits":null},{"Name":"int64","Length":null,"DecimalDigits":null},{"Name":"bigint","Length":null,"DecimalDigits":null},{"Name":"number","Length":19,"DecimalDigits":null}]<03><><17>shortshort[{"Name":"short","Length":null,"DecimalDigits":null},{"Name":"int2","Length":null,"DecimalDigits":null},{"Name":"int16","Length":null,"DecimalDigits":null},{"Name":"smallint","Length":null,"DecimalDigits":null},{"Name":"number","Length":5,"DecimalDigits":null}]<03><>/<15>Ibytebyte[{"Name":"tinyint","Length":null,"DecimalDigits":null},{"Name":"varbit","Length":null,"DecimalDigits":null},{"Name":"number","Length":3,"DecimalDigits":null}]<03><>5<15>UguidGuid[{"Name":"uniqueidentifier","Length":null,"DecimalDigits":null},{"Name":"guid","Length":null,"DecimalDigits":null},{"Name":"char","Length":36,"DecimalDigits":null}]<03>~%<1B>Qdecimal_18_2decimal[{"Name":"decimal","Length":18,"DecimalDigits":2},{"Name":"number","Length":18,"DecimalDigits":2}]<03><>,%<1B>-decimal_18_4decimal[{"Name":"decimal","Length":18,"DecimalDigits":4},{"Name":"number","Length":18,"DecimalDigits":4},{"Name":"money","Length":0,"DecimalDigits":0}]<03><>/%<1B>3decimal_18_8decimal[{"Name":"decimal","Length":18,"DecimalDigits":8},{"Name":"number","Length":18,"DecimalDigits":8},{"Name":"numeric","Length":18,"DecimalDigits":8}]<03>Ptimestampbyte[][{"Name":"timestamp","Length":null,"DecimalDigits":null}]<03><><1D>cDateTimeDateTime[{"Name":"datetime","Length":null,"DecimalDigits":null},{"Name":"date","Length":null,"DecimalDigits":null}]<03><>,<15>Cboolbool[{"Name":"bit","Length":null,"DecimalDigits":null},{"Name":"number","Length":1,"DecimalDigits":null},{"Name":"boolean","Length":null,"DecimalDigits":null}]<03><19>[maxStringstring[{"Name":"text","Length":null,"DecimalDigits":null},{"Name":"clob","Length":null,"DecimalDigits":null}]<03><>#<19>inString2000string[{"Name":"nvarchar","Length":2000,"DecimalDigits":null},{"Name":"varchar","Length":2000,"DecimalDigits":null}]<03><> !<19>enString500string[{"Name":"nvarchar","Length":500,"DecimalDigits":null},{"Name":"varchar","Length":500,"DecimalDigits":null}]<03><> !<19>enString200string[{"Name":"nvarchar","Length":200,"DecimalDigits":null},{"Name":"varchar","Length":200,"DecimalDigits":null}]<03><> !<19>enString100string[{"Name":"nvarchar","Length":100,"DecimalDigits":null},{"Name":"varchar","Length":100,"DecimalDigits":null}]<03><>
2022-09-09 15:53:11 +08:00
<19>anString36string[{"Name":"nvarchar","Length":36,"DecimalDigits":null},{"Name":"varchar","Length":36,"DecimalDigits":null}]<03><> <19>anString10string[{"Name":"nvarchar","Length":10,"DecimalDigits":null},{"Name":"varchar","Length":10,"DecimalDigits":null}]<03>O!{string2000string[{"Name":"varchar","Length":2000,"DecimalDigits":null}]<03>Mystring500string[{"Name":"varchar","Length":500,"DecimalDigits":null}]<03>Mystring200string[{"Name":"varchar","Length":200,"DecimalDigits":null}]<03>Mystring100string[{"Name":"varchar","Length":100,"DecimalDigits":null}]<03>Kwstring36string[{"Name":"varchar","Length":36,"DecimalDigits":null}]<03>Z<19>ignore建表忽略该类型字段生成实体中@Model.IsIgnore 值为 true []<03>Kwstring10string[{"Name":"varchar","Length":10,"DecimalDigits":null}]<03><>Z<13>#intint[{"Name":"int","Length":null,"DecimalDigits":null},{"Name":"int4","Length":null,"DecimalDigits":null},{"Name":"number","Length":9,"DecimalDigits":0},{"Name":"integer","Length":null,"DecimalDigits":nul
<0F>&<0F><0F><0F><0F><0F><0F><0F><0F><0F><0F>I <0A> <0A> w D  <0C> <0C> <0C> x K " <0B> <0B> <0B> X @ 
2022-04-03 23:36:31 +08:00
<EFBFBD>
<EFBFBD>
x
B
 <09> <09> | M  <08><08>h2<07><07>h8<06><06><06>^(<05><05><05>^.<04><04><04><04>S <03><03><03>N<02><02><02>tP/
<01><01><01><01>N<00>-W !!CreateUserCreateUser创建者guid
0V  %MenuCodeMenuCode菜单编码string36
0U  %RoleCodeRoleCode角色编码string36
T   IdId1guid
'S  ExceptionExceptionstring200 %R  CallSiteCallSitestring200 !Q  LoggerLoggerstring200 #P  MessageMessagestring200 O  LevelLevelstring200 "N  !LoggedLoggedstring2000 +M ## ApplicationApplicationstring200 L  IdIdint .K %IsDeletedIsDeleted是否删除bool0J !!ParentCodeParentCode父Codestring1004I !!%ModifyTimeModifyTime修改时间DateTime1H !!ModifyUserModifyUser修改者string364G !!%DeleteTimeDeleteTime删除时间DateTime1F !!DeleteUserDeleteUser删除者string364E !!%CreateTimeCreateTime创建时间DateTime1D !!CreateUserCreateUser创建者string365C !!%UrlControlUrlControl菜单地址string500&B NameName菜单名string1001A %MenuCodeMenuCode菜单编码string100@   IdId1guid0? %UserCodeUserCode用户编码string36.> %IsDeletedIsDeleted是否删除bool4= !!%DeleteTimeDeleteTime删除时间DateTime-< !!DeleteUserDeleteUser删除者guid4; !!%ModifyTimeModifyTime修改时间DateTime-: !!ModifyUserModifyUser修改者guid49 !!%CreateTimeCreateTime创建时间DateTime-8 !!CreateUserCreateUser创建者guid07  %MenuCodeMenuCode菜单编码string3606  %RoleCodeRoleCode角色编码string365   IdId1guid.4 %IsDeletedIsDeleted是否删除bool.3 %IsDeletedIsDeleted是否删除bool42 !!%DeleteTimeDeleteTime删除时间DateTime-1 !!DeleteUserDeleteUser删除者guid40 !!%ModifyTimeModifyTime修改时间DateTime-/ !!ModifyUserModifyUser修改者guid4. !!%CreateTimeCreateTime创建时间DateTime-- !!CreateUserCreateUser创建者guid2,  %RolseCodeRolseCode角色编码string363+ # %UserCodeUserAccount用户编码string36*   IdId1guid4) !!%DeleteTimeDeleteTime删除时间DateTime-( !!DeleteUserDeleteUser删除者guid4' !!%DeleteTimeDeleteTime删除时间DateTime-& !!DeleteUserDeleteUser删除者guid4% !!%ModifyTimemodifyTime修改时间DateTime)$ !ModifyUsermodify修改者guid4# !!%CreateTimecreateTime创建时间DateTime*" !CreateUsercreater创建者guid3! %RolseCoderolseCode角色编码string1003 %RolseNamerolseName角色名称string1000 !!ParentCodeParentCode父Codestring100   IdIdIdguid4 !!%ModifyTimeModifyTime修改时间DateTime- !!ModifyUserModifyUser修改者guid4 !!%CreateTimeCreateTime创建时间DateTime- !!CreateUserCreateUser创建者guid' FaceIdFaceId脸纹string100+ FingerIdFingerId指纹string100& CardIdCardId卡号string10+  PasswordPassword密码string100(  AccountAccount账号string36   IdId1guid4 !!%ModifyTimeModifyTime修改时间DateTime1 !!ModifyUserModifyUser修改者string364 !!%DeleteTimeDeleteTime删除时间DateTime1 !!DeleteUserDeleteUser删除者string364 !!%CreateTimeCreateTime创建时间DateTime1 !!CreateUserCreateUser创建者string365 !!%UrlControlUrlControl菜单地址string5000 !!ParentCodeParentCode父Codestring100* MenuNameName菜单名string1001
2022-09-09 15:53:11 +08:00
%MenuCodeMenuCode菜单编码string100   IdId1guid   GenderGenderstring10  AgeAgeint  NameNamestring100   IdId1int   GenderGenderstring10   A#<23>"<22><!<21>v <20>8<1E>v<1F>"<1A>P<1D>}<1C>+W E#<0E>z- <0A> <0A> @ <0C> j <0B> ]
2022-04-03 23:36:31 +08:00
<EFBFBD>
M <09> A<08> <07>X<05> nS<<01><00>EM'qstring_char10string[{"Name":"char","Length":10,"DecimalDigits":null}]'<10>%<19>ajson_defaultobject[{"Name":"json","Length":null,"DecimalDigits":null},{"Name":"varchar","Length":3999,"DecimalDigits":null}]<03>c))<29> datetimeoffsetDateTimeOffset[{"Name":"datetimeoffset","Length":null,"DecimalDigits":null}]<03><>8<19>MbyteArraybyte[][{"Name":"blob","Length":null,"DecimalDigits":null},{"Name":"longblob","Length":null,"DecimalDigits":null},{"Name":"binary","Length":null,"DecimalDigits":null}]<03><><15>longlong[{"Name":"long","Length":null,"DecimalDigits":null},{"Name":"int8","Length":null,"DecimalDigits":null},{"Name":"int64","Length":null,"DecimalDigits":null},{"Name":"bigint","Length":null,"DecimalDigits":null},{"Name":"number","Length":19,"DecimalDigits":null}]<03><><17>shortshort[{"Name":"short","Length":null,"DecimalDigits":null},{"Name":"int2","Length":null,"DecimalDigits":null},{"Name":"int16","Length":null,"DecimalDigits":null},{"Name":"smallint","Length":null,"DecimalDigits":null},{"Name":"number","Length":5,"DecimalDigits":null}]<03><>/<15>Ibytebyte[{"Name":"tinyint","Length":null,"DecimalDigits":null},{"Name":"varbit","Length":null,"DecimalDigits":null},{"Name":"number","Length":3,"DecimalDigits":null}]<03><>5<15>UguidGuid[{"Name":"uniqueidentifier","Length":null,"DecimalDigits":null},{"Name":"guid","Length":null,"DecimalDigits":null},{"Name":"char","Length":36,"DecimalDigits":null}]<03>~%<1B>Qdecimal_18_2decimal[{"Name":"decimal","Length":18,"DecimalDigits":2},{"Name":"number","Length":18,"DecimalDigits":2}]<03><>,%<1B>-decimal_18_4decimal[{"Name":"decimal","Length":18,"DecimalDigits":4},{"Name":"number","Length":18,"DecimalDigits":4},{"Name":"money","Length":0,"DecimalDigits":0}]<03><>/%<1B>3decimal_18_8decimal[{"Name":"decimal","Length":18,"DecimalDigits":8},{"Name":"number","Length":18,"DecimalDigits":8},{"Name":"numeric","Length":18,"DecimalDigits":8}]<03>Ptimestampbyte[][{"Name":"timestamp","Length":null,"DecimalDigits":null}]<03><><1D>cDateTimeDateTime[{"Name":"datetime","Length":null,"DecimalDigits":null},{"Name":"date","Length":null,"DecimalDigits":null}]<03><>,<15>Cboolbool[{"Name":"bit","Length":null,"DecimalDigits":null},{"Name":"number","Length":1,"DecimalDigits":null},{"Name":"boolean","Length":null,"DecimalDigits":null}]<03><19>[maxStringstring[{"Name":"text","Length":null,"DecimalDigits":null},{"Name":"clob","Length":null,"DecimalDigits":null}]<03><>#<19>inString2000string[{"Name":"nvarchar","Length":2000,"DecimalDigits":null},{"Name":"varchar","Length":2000,"DecimalDigits":null}]<03><> !<19>enString500string[{"Name":"nvarchar","Length":500,"DecimalDigits":null},{"Name":"varchar","Length":500,"DecimalDigits":null}]<03><> !<19>enString200string[{"Name":"nvarchar","Length":200,"DecimalDigits":null},{"Name":"varchar","Length":200,"DecimalDigits":null}]<03><> !<19>enString100string[{"Name":"nvarchar","Length":100,"DecimalDigits":null},{"Name":"varchar","Length":100,"DecimalDigits":null}]<03><>
2022-04-09 16:16:32 +08:00
<19>anString36string[{"Name":"nvarchar","Length":36,"DecimalDigits":null},{"Name":"varchar","Length":36,"DecimalDigits":null}]<03><> <19>anString10string[{"Name":"nvarchar","Length":10,"DecimalDigits":null},{"Name":"varchar","Length":10,"DecimalDigits":null}]<03>O!{string2000string[{"Name":"varchar","Length":2000,"DecimalDigits":null}]<03>Mystring500string[{"Name":"varchar","Length":500,"DecimalDigits":null}]<03>Mystring200string[{"Name":"varchar","Length":200,"DecimalDigits":null}]<03>Mystring100string[{"Name":"varchar","Length":100,"DecimalDigits":null}]<03>Kwstring36string[{"Name":"varchar","Length":36,"DecimalDigits":null}]<03>Z<19>ignore建表忽略该类型字段生成实体中@Model.IsIgnore 值为 true []<03>Kwstring10string[{"Name":"varchar","Length":10,"DecimalDigits":null}]<03><>Z<13>#intint[{"Name":"int","Length":null,"DecimalDigits":null},{"Name":"int4","Length":null,"DecimalDigits":null},{"Name":"number","Length":9,"DecimalDigits":0},{"Name":"integer","Length":null,"DecimalDigits":null}]<03> 
<EFBFBD><0F> <0A> >
<EFBFBD>
2022-09-10 20:05:45 +08:00
<EFBFBD>W#;uExtension_Guid_20220407guid[{"Name":"uuid","Length":null,"DecimalDigits":null}]'Y";yExtension_Byte_20220407byte[{"Name":"varbit","Length":null,"DecimalDigits":null}]'<10>D!A<1B>AExtension_Decimal_20220407decimal[{"Name":"float4","Length":null,"DecimalDigits":null},{"Name":"float8","Length":null,"DecimalDigits":null},{"Name":"interval","Length":null,"DecimalDigits":null},{"Name":"lseg","Length":null,"DecimalDigits":null},{"Name":"macaddr","Length":null,"DecimalDigits":null},{"Name":"path","Length":null,"DecimalDigits":null},{"Name":"point","Length":null,"DecimalDigits":null},{"Name":"polygon","Length":null,"DecimalDigits":null},{"Name":"double precision","Length":null,"DecimalDigits":null},{"Name":"real","Length":null,"DecimalDigits":null}]'<10> ;<15>aExtension_Bool_20220407bool[{"Name":"bool","Length":null,"DecimalDigits":null},{"Name":"Boolean","Length":null,"DecimalDigits":null}]'<10>;<1D>uExtension_Time_20220407DateTime[{"Name":"date","Length":null,"DecimalDigits":null},{"Name":"time","Length":null,"DecimalDigits":null},{"Name":"timestamp with time zone","Length":null,"DecimalDigits":null},{"Name":"timestamptz","Length":null,"DecimalDigits":null},{"Name":"timestamp without time zone","Length":null,"DecimalDigits":null},{"Name":"time with time zone","Length":null,"DecimalDigits":null}]'Iwfloatdecimal[{"Name":"float","Length":null,"DecimalDigits":null}]'<0F><00><0F>
<EFBFBD> X"<06><02><01><00><00> s<1D>!3[ 11c:\Projects\FurionSqlSugarMvc\FurionMvc.Application51,52,53[
{
"name": "FurionMvc.Application"
},
{
"name": "FurionMvc.Application"
},
{
"name": "GlobalUsings"
}
]csServices/{0}ServiceFurionSqlSugarMvc_FurionMvc.Application2<6E>n
e<1D> %M 10c:\Projects\FurionSqlSugarMvc\FurionMvc.Core48,49,50[
{
"name": "DbContext"
},
{
"name": "FurionMvc.Core"
},
{
"name": "FurionMvc.Core"
}
]csEntities/{0}FurionSqlSugarMvc_FurionMvc.Core2<65>E me<6D>q U 9c:\Projects\FurionSqlSugarApi\FurionApi.Web.Core33,34,35,36,37,38,39,40,41,42,43,44,45,46,47[
{
"name": "FurionApi.Web.Core"
},
{
"name": "FurionApi.Web.Core"
},
{
"name": "Startup"
},
{
"name": "JwtHandler"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.dgspec"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.g"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.g"
},
{
"name": "project.assets"
},
{
"name": "project.nuget"
},
{
"name": ".NETCoreApp,Version=v6.0.AssemblyAttributes"
},
{
"name": "FurionApi.Web.Core.AssemblyInfo"
},
{
"name": "FurionApi.Web.Core.AssemblyInfoInputs"
},
{
"name": "FurionApi.Web.Core.assets"
},
{
"name": "FurionApi.Web.Core.csproj.AssemblyReference"
},
{
"name": "FurionApi.Web.Core.GeneratedMSBuildEditorConfig"
}
]FurionSqlSugarApi_FurionApi.Web.Core1<65>s)<29>{)[ 8c:\Projects\FurionSqlSugarApi\FurionApi.Application28,29,30,31,32[
{
"name": "applicationsettings"
},
{
"name": "FurionApi.Application"
},
{
"name": "FurionApi.Application"
},
{
"name": "GlobalUsings"
},
{
"name": "FurionApi.Application.csproj.nuget.g"
}
]csIServices/I{0}FurionSqlSugarApi_FurionApi.Application1<6E>3o#<23>c1W 7c:\Projects\FurionSqlSugarApi\FurionApi.Web.Entry24,25,26,27[
{
"name": "appsettings.Development"
},
{
"name": "appsettings"
},
{
"name": "FurionApi.Web.Entry"
},
{
"name": "Program"
}
]csApis/{0}ControllerFurionSqlSugarApi_FurionApi.Web.Entry1<79>s)<29>{3[ 6c:\Projects\FurionSqlSugarApi\FurionApi.Application19,20,21,22,23[
{
"name": "applicationsettings"
},
{
"name": "FurionApi.Application"
},
{
"name": "FurionApi.Application"
},
{
"name": "GlobalUsings"
},
{
"name": "FurionApi.Application.csproj.nuget.g"
}
]csServices/{0}ServiceFurionSqlSugarApi_FurionApi.Application1<6E>oeA<65>_ %M 5c:\Projects\FurionSqlSugarApi\FurionApi.Core10,11,12,13,14,15,16,17,18[
{
"name": "DbContext"
},
{
"name": "FurionApi.Core"
},
{
"name": "FurionApi.Core"
},
{
"name": ".NETCoreApp,Version=v6.0.AssemblyAttributes"
},
{
"name": "FurionApi.Core.AssemblyInfo"
},
{
"name": "FurionApi.Core.AssemblyInfoInputs"
},
{
"name": "FurionApi.Core.assets"
},
{
"name": "FurionApi.Core.csproj.AssemblyReference"
},
{
"name": "FurionApi.Core.GeneratedMSBuildEditorConfig"
}
]csEntities/{0}FurionSqlSugarApi_FurionApi.Core1<65>=<0F> y'Q3E:\Yi\Yi.Framework.Net6\Yi.Framework.ApiMicroservice\Controllers[{ "name":"Yi.Framework.ApiMicroservice.Controllers"}].cs{0}Controller[简单三层]_方案_前端_Sugar1,2<>%<0F> U#Q4E:\Yi\Yi.Framework.Net6\Yi.Framework.Interface\IServiceTemplate[{ "name":"Yi.Framework.Interface"}].csI{0}Service[简单三层]_方案_接口_Sugar<61>[ Q1E:\Yi\Yi.Framework.Net6\Yi.Framework.Model\ModelsTemplate[{ "name":"Yi.Framework.Model.Models"}].cs{0}Entity[简单三层]_方案_实体_Sugar<61> <0F>Q!Q2E:\Yi\Yi.Framework.Net6\Yi.Framework.Service\ServiceTemplate[{ "name":"Yi.Framework.Service"}].cs{0}Service[简单三层]_方案_业务_S<00> <0F><0F>yJ<0E><0E><0E><0E>d:
TenantIdTenantId租户Id25  CodeCode编码4   IdId主键ID25+ %IsDeletedIsDeleted是否删除16- !!% DeleteTimeDeleteTime删除时间17* !! DeleteUserDeleteUser删除者22- !!%ModifyTimeModifyTime修改时间17* !!ModifyUserModifyUser修改者25- !!%CreateTimeCreateTime创建时间17* !!CreateUserCreateUser创建者25 
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ClassProperName" varchar(255) NOT NULL ,
"DbColumnName" varchar(255) NOT NULL ,
"Required" bit NOT NULL ,
"IsIdentity" bit NOT NULL ,
"IsPrimaryKey" bit NOT NULL ,
"Description" varchar(255) NULL ,
"CodeType" varchar(255) NOT NULL ,
"CodeTableId" integer NOT NULL ,
"IsDeleted" bit NOT NULL )<29>
<01>tableProjectProjectCREATE TABLE "Project"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
2022-09-10 20:05:45 +08:00
"Tem<65>L<01>ktableFileInfoFileInfo
CREATE TABLE "FileInfo"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL ,
"Content" varchar(255) NOT NULL ,
"Json" varchar(255) NOT NULL ,
"Suffix" varchar(255) NOT NULL ,
2022-04-03 23:36:31 +08:00
"Sort" integer NOT NULL ,
2022-09-10 20:05:45 +08:00
"ChangeTime" datetime NOT NULL ,
2022-04-03 23:36:31 +08:00
"IsDeleted" bit NOT NULL ,
2022-09-10 20:05:45 +08:00
"IsInit" bit NOT NULL ,
"PojectId" uniqueidentifier NOT NULL ,
"SolutionId" varchar(50) NULL , `Directory` varchar(255))<29> <01>mtableTemplateTemplateCREATE TABLE "Template"(
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
2022-09-10 20:05:45 +08:00
"Title" varchar(255) NOT NULL ,
"TemplateTypeId" integer NOT NULL ,
"Content" varchar(255) NOT NULL ,
"TemplateTypeName" varchar(255) NOT NULL ,
"Sort" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsInit" bit NULL , `SolutionId` varchar(50))<29>h<01>#tableCodeTypeCodeTypeCREATE TABLE "CodeType"(
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL ,
"CSharepType" varchar(255) NOT NULL ,
"DbType" text NOT NULL ,
"Sort" integer NOT NULL )<29><01>tableCodeTableCodeTableCREATE TABLE "CodeTable"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"DbId" integer NOT NULL ,
"ClassName" varchar(255) NOT NULL ,
"TableName" varchar(255) NOT NULL ,
"Description" varchar(255) NULL ,
"CreateTime" datetime NOT NULL ,
"PreUpdateTime" datetime NOT NULL ,
"UpdateTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
2022-09-10 20:05:45 +08:00
"IsLock" bit NOT NULL ) J<01><01>7tableFileInfoFileInfo
2022-04-03 23:36:31 +08:00
CREATE TABLE "FileInfo"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Name" varchar(255) NOT NULL ,
"Content" varchar(255) NOT NULL ,
"Json" varchar(255) NOT NULL ,
"Suffix" varchar(255) NOT NULL ,
"Sort" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsInit" bit NOT NULL ,
"PojectId" uniqueidentifier NOT NULL ,
"SolutionId" varchar(50) NULL )<29>%%<01>mtableTemplateTypeTemplateTypeCREATE TABLE "TemplateType"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
2022-09-10 20:05:45 +08:00
"Name" varchar(255) NOT NULL )#v<01>9tableTemplateTemplateCREATE TABLE "Template"(
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Title" varchar(255) NOT NULL ,
"TemplateTypeId" integer NOT NULL ,
"Content" varchar(255) NOT NULL ,
"TemplateTypeName" varchar(255) NOT NULL ,
"Sort" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL ,
"IsInit" bit NULL )<29><01>otableDatabaseDatabaseCREATE TABLE "Database"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"Desc" varchar(255) NOT NULL ,
"Connection" varchar(255) NOT NULL ,
"DbType" integer NOT NULL ,
"ChangeTime" datetime NOT NULL ,
"IsDeleted" bit NOT NULL )P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)<00><01>tableMenuMenuCREATE TABLE "Menu"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ParentId" integer NOT NULL ,
"Icon" varchar(255) NULL ,
"MenuName" varchar(255) NOT NULL ,
2022-09-13 17:05:53 +08:00
"Url" varchar(255) NULL ) <05>L 4
<EFBFBD>~<07><05><06><00>+%%<01>tableProjectGroupProjectGroup'CREATE TABLE "ProjectGroup"(
2022-09-10 20:05:45 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"SolutionPath" varchar(255) NOT NULL ,
"Name" varchar(255) NOT NULL ,
"ProjectIds" varchar(500) NOT NULL ,
"ProjectNames" varchar(255) NOT NULL ,
2022-09-13 17:05:53 +08:00
"Sort" integer NOT NULL )<00>Z<01>tableMenuMenuCREATE TABLE "Menu"(
2022-04-03 23:36:31 +08:00
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ParentId" integer NOT NULL ,
"Icon" varchar(255) NULL ,
"MenuName" varchar(255) NOT NULL ,
2022-09-13 17:05:53 +08:00
"Url" varchar(255) NULL )<29>V ++<01>ctableMappingPropertyMappingPropertyCREATE TABLE "MappingProperty"(
2022-04-03 23:36:31 +08:00
"DbId" integer NOT NULL ,
"TableName" varchar(255) NOT NULL ,
"ColumnName" varchar(255) NOT NULL ,
"TagId" varchar(255) NOT NULL )<29> ##<01>UtableTagPropertyTagPropertyCREATE TABLE "TagProperty"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"UniueCode" varchar(255) NULL ,
"Description" varchar(255) NULL ,
"ControlType" varchar(255) NULL ,
"UrlKey" varchar(255) NULL ,
"Url" varchar(255) NULL ,
"FileValue" varchar(255) NULL ,
"FileName" varchar(255) NULL ,
"Ext1" varchar(255) NULL ,
"Ext2" varchar(255) NULL ,
"Ext3" varchar(255) NULL ,
"Ext4" varchar(255) NULL ,
"Ext5" varchar(255) NULL ,
"IsDeleted" bit NOT NULL )<29>) ##<01>tableCommonFieldCommonFieldCREATE TABLE "CommonField"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ClassProperName" varchar(255) NOT NULL ,
"DbColumnName" varchar(255) NOT NULL ,
"Required" bit NOT NULL ,
"IsIdentity" bit NOT NULL ,
"IsPrimaryKey" bit NOT NULL ,
"Description" varchar(255) NULL ,
"CodeType" varchar(255) NOT NULL ,
"CodeTableId" integer NOT NULL ,
"IsDeleted" bit NOT NULL )<29>
<01>tableProjectProjectCREATE TABLE "Project"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"TemplateId1" varchar(255) NOT NULL ,
"Path" varchar(255) NOT NULL ,
"FileInfo" varchar(255) NULL ,
"FileModel" varchar(255) NULL ,
"Sort" integer NOT NULL ,
"IsDeleted" bit NOT NULL ,
"ModelId" integer NOT NULL ,
"FileSuffix" varchar(255) NOT NULL ,
"NameFormat" varchar(255) NULL ,
"ProjentName" varchar(255) NOT NULL ,
"SolutionId" varchar(50) NULL ,
"IsInit" bit NULL ,
"Reference" varchar(255) NULL )<29>1 ##<01>)tableCodeColumnsCodeColumnsCREATE TABLE "CodeColumns"(
"Id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"ClassProperName" varchar(255) NOT NULL ,
"DbColumnName" varchar(255) NOT NULL ,
"Required" bit NOT NULL ,
"IsIdentity" bit NOT NULL ,
"IsPrimaryKey" bit NOT NULL ,
"Description" varchar(255) NULL ,
"CodeType" varchar(255) NOT NULL ,
"CodeTableId" integer NOT NULL ,
"DefaultValue" varchar(255) NULL ) 
<EFBFBD>
<EFBFBD>
<EFBFBD>
[
( <09> <09> <09> g 6 <08><08><08>IT<07><07>|L<06><06>~G<05><05><05>]&<04><04><04>X'<03><03>rB <02><02>t=<01><01><01>wI$<00><00>
!<21>P  LoggerLoggerstring200#<23>O  MessageMessagestring200<1F>N  LevelLevelstring200"<22>M  !LoggedLoggedstring2000+<2B>L ## ApplicationApplicationstring200<14>K   IdIdguid%<25>J %LevelLevel菜单层级int+<2B>I %TypeCodeTypeCode菜单类型int.<2E>H %IsDeletedIsDeleted是否删除bool%<25>G ParentIdParentId父Idguid4<>F !!%ModifyTimeModifyTime修改时间DateTime-<2D>E !!ModifyUserModifyUser修改者guid4<>D !!%DeleteTimeDeleteTime删除时间DateTime-<2D>C !!DeleteUserDeleteUser删除者guid4<>B !!%CreateTimeCreateTime创建时间DateTime-<2D>A !!CreateUserCreateUser创建者guid5<>@ !!%UrlControlUrlControl菜单地址string500.<2E>? MenuNameMenuName菜单名string1001<>>  %MenuCodeMenuCode菜单编码string100<15>=   IdId1guid.<2E>< %IsDeletedIsDeleted是否删除bool4<>; !!%DeleteTimeDeleteTime删除时间DateTime-<2D>: !!DeleteUserDeleteUser删除者guid4<>9 !!%ModifyTimeModifyTime修改时间DateTime-<2D>8 !!ModifyUserModifyUser修改者guid4<>7 !!%CreateTimeCreateTime创建时间DateTime-<2D>6 !!CreateUserCreateUser创建者guid7<>5  /LoginTypeLoginTypeDictCode字典项string364<>4  1NeedLoginNeedLogin是否需要登录bool<15>3   IdId1guid.<2E>2 %IsDeletedIsDeleted是否删除bool4<>1 !!%DeleteTimeDeleteTime删除时间DateTime-<2D>0 !!DeleteUserDeleteUser删除者guid4<>/ !!%ModifyTimeModifyTime修改时间DateTime-<2D>. !!ModifyUserModifyUser修改者guid4<>- !!%CreateTimeCreateTime创建时间DateTime-<2D>, !!CreateUserCreateUser创建者guid0<>+ DictValueDictValue节点值string1000<>*  %DictNameDictName节点名称string367<>) !! +ParentCodeParentCode父节点编码string36*<2A>(  DictCodeDictCode编码string364<>& !!%ModifyTimeModifyTime修改时间DateTime-<2D>% !!ModifyUserModifyUser修改者guid-<2D>$ !!CreateUserCreateUser创建者guid%<25># %LevelLevel菜单层级int+<2B>" %TypeCodeTypeCode菜单类型int.<2E>! %IsDeletedIsDeleted是否删除bool8<> ''SecurityStampSecurityStamp时间戳string200#<23> NameName姓名string100-<2D> !!ModifyUserModifyUser修改者guid-<2D> !!CreateUserCreateUser创建者guid0<> %UserCodeUserCode用户编码string364<> !!%DeleteTimeDeleteTime删除时间DateTime-<2D> !!DeleteUserDeleteUser删除者guid4<> !!%ModifyTimeModifyTime修改时间DateTime4<> !!%CreateTimeCreateTime创建时间DateTime.<2E> %OrgCodeOrgCode组织编码string36'<27> FaceIdFaceId脸纹string100+<2B> FingerIdFingerId指纹string100&<26> CardIdCardId卡号string10+<2B>  PasswordPassword密码string100(<28>  AccountAccount账号string36<15>   IdId1guid.<2E> %IsDeletedIsDeleted是否删除bool.<2E> %IsDeletedIsDeleted是否删除bool.<2E> %IsDeletedIsDeleted是否删除bool.<2E> %IsDeletedIsDeleted是否删除bool4<> !!%DeleteTimeDeleteTime删除时间DateTime-<2D> !!DeleteUserDeleteUser删除者guid4<>
!!%ModifyTimeModifyTime修改时间DateTime-<2D> !!ModifyUserModifyUser修改者guid4<> !!%CreateTimeCreateTime创建时间DateTime-<2D> !!CreateUserCreateUser创建者guid<15>'   IdId1guid$<24>  RoleIdRoleId角色idguid$<24>  UserIdUserId用户idguid<15>   IdId1guid8<> ''SecurityStampSecurityStamp时间戳string200#<23> NameName姓名string1007<> ##%MachineNameMachineName设备名称string1000<> MachineNoMachineNo设备号string1001<> ##ProductLineProductLine产线string100)<29>~ FactoryFactory工厂string100 W<00><0F><0F><0F><0F><0F>aJ(<0E><0E><0E>I <0A> <0A> w D  <0C> <0C> <0C> x K " <0B> <0B> <0B> X @ 
<EFBFBD>
<EFBFBD>
x
B
 <09> <09> | M  <08><08>h2<07><07>h8<06><06><06>^(<05><05><05>^.<04><04><04><04>S <03><03><03>N<02><02><02>tP/
<01><01><01><01>N<00> /// </summary>
/// <returns></returns>
-W !!CreateUserCreateUser创建者guid
0V  %MenuCodeMenuCode菜单编码string36
0U  %RoleCodeRoleCode角色编码string36
T   IdId1guid
'S  ExceptionExceptionstring200 %R  CallSiteCallSitestring200 !Q  LoggerLoggerstring200 #P  MessageMessagestring200 O  LevelLevelstring200 "N  !LoggedLoggedstring2000 +M ## ApplicationApplicationstring200 L  IdIdint .K %IsDeletedIsDeleted是否删除bool0J !!ParentCodeParentCode父Codestring1004I !!%ModifyTimeModifyTime修改时间DateTime1H !!ModifyUserModifyUser修改者string364G !!%DeleteTimeDeleteTime删除时间DateTime1F !!DeleteUserDeleteUser删除者string364E !!%CreateTimeCreateTime创建时间DateTime1D !!CreateUserCreateUser创建者string365C !!%UrlControlUrlControl菜单地址string500&B NameName菜单名string1001A %MenuCodeMenuCode菜单编码string100@   IdId1guid0? %UserCodeUserCode用户编码string36.> %IsDeletedIsDeleted是否删除bool4= !!%DeleteTimeDeleteTime删除时间DateTime-< !!DeleteUserDeleteUser删除者guid4; !!%ModifyTimeModifyTime修改时间DateTime-: !!ModifyUserModifyUser修改者guid49 !!%CreateTimeCreateTime创建时间DateTime-8 !!CreateUserCreateUser创建者guid07  %MenuCodeMenuCode菜单编码string3606  %RoleCodeRoleCode角色编码string365   IdId1guid.4 %IsDeletedIsDeleted是否删除bool.3 %IsDeletedIsDeleted是否删除bool42 !!%DeleteTimeDeleteTime删除时间DateTime-1 !!DeleteUserDeleteUser删除者guid40 !!%ModifyTimeModifyTime修改时间DateTime-/ !!ModifyUserModifyUser修改者guid4. !!%CreateTimeCreateTime创建时间DateTime-- !!CreateUserCreateUser创建者guid2,  %RolseCodeRolseCode角色编码string363+ # %UserCodeUserAccount用户编码string36*   IdId1guid4) !!%DeleteTimeDeleteTime删除时间DateTime-( !!DeleteUserDeleteUser删除者guid4' !!%DeleteTimeDeleteTime删除时间DateTime-& !!DeleteUserDeleteUser删除者guid4% !!%ModifyTimemodifyTime修改时间DateTime)$ !ModifyUsermodify修改者guid4# !!%CreateTimecreateTime创建时间DateTime*" !CreateUsercreater创建者guid3! %RolseCoderolseCode角色编码string1003 %RolseNamerolseName角色名称string1000 !!ParentCodeParentCode父Codestring100   IdIdIdguid4 !!%ModifyTimeModifyTime修改时间DateTime- !!ModifyUserModifyUser修改者guid4 !!%CreateTimeCreateTime创建时间DateTime- !!CreateUserCreateUser创建者guid' FaceIdFaceId脸纹string100+ FingerIdFingerId指纹string100& CardIdCardId卡号string10+  PasswordPassword密码string100(  AccountAccount账号string36   IdId1guid4 !!%ModifyTimeModifyTime修改时间DateTime1 !!ModifyUserModifyUser修改者string364 !!%DeleteTimeDeleteTime删除时间DateTime1 !!DeleteUserDeleteUser删除者string364 !!%CreateTimeCreateTime创建时间DateTime1 !!CreateUserCreateUser创建者string365 !!%UrlControlUrlControl菜单地址string5000 !!ParentCodeParentCode父Codestring100* MenuNameName菜单名string1001
%MenuCodeMenuCode菜单编码string100   IdId1guid   GenderGenderstring10  AgeAgeint  NameNamestring100   IdId1int   GenderGenderstring10   AgeAgeint   NameNamestring100    IdId1int <02>Q<00><0F><0F>e6<0E><0E><0E>Q <0A> <0A> <0A> ` 1 <0C> <0C> <0C> <0C> e 8  <0B> <0B> t >
<EFBFBD>
<EFBFBD>
<EFBFBD>
_
+ <09> <09> <09> a 2<08><08><08><08>X <07><07><07>J<06><06>{<00>7<05><05><05>~T;<04>;<03>u]6<02><02>`)<01><01><01>yN <00><00><00><00><00><14>   IdIdguid+<2B>+ FingerIdFingerId指纹string100&<26>* CardIdCardId卡号string10+<2B>)  PasswordPassword密码string100(<28>(  AccountAccount账号string36<15>'   IdId1guid.<2E>& %IsDeletedIsDeleted是否删除bool4<>% !!%DeleteTimeDeleteTime删除时间DateTime-<2D>$ !!DeleteUserDeleteUser删除者guid4<># !!%ModifyTimeModifyTime修改时间DateTime-<2D>" !!ModifyUserModifyUser修改者guid4<>! !!%CreateTimeCreateTime创建时间DateTime-<2D> !!CreateUserCreateUser创建者guid<03> %MenuCodeMe$<24>  MenuIdMenuId菜单Idguid$<24>  RoleIdRoleId角色Idguid<15>   IdId1guid4<> !!%DeleteTimeDeleteTime删除时间DateTime-<2D> !!DeleteUserDeleteUser删除者guidr+!!%ModifyTimemodifyTime修改时1<E697B6> %RoleNameRoleName角色名称string1004<> !!%CreateTimeCreateTime创建时间DateTime<04>*Creatercreater创建者guide1<65>  %RoleCodeRoleCode角色编码string100e6%RolseNamerolseName角色名称string1000<> !!ParentCodeParentCode父Codestring100<16>   IdIdIdguid'<27>  ExceptionExceptionstring200%<25>  CallSiteCallSitestring200!<21>  LoggerLoggerstring200#<23>  MessageMessagestring200<1F>  LevelLevelstring200"<22>  !LoggedLoggedstring2000+<2B> ## ApplicationApplicationstring200 IdIdint.<2E>
%IsDeletedIsDeleted是否删除bool0<> !!ParentCodeParentCode父Codestring1004<> !!%ModifyTimeModifyTime修改时间DateTime1<> !!ModifyUserModifyUser修改者string364<> !!%DeleteTimeDeleteTime删除时间DateTime1<> !!DeleteUserDeleteUser删除者string364<> !!%CreateTimeCreateTime创建时间DateTime1<> !!CreateUserCreateUser创建者string365<> !!%UrlControlUrlControl菜单地址string500&<26> NameName菜单名string1001<>  %MenuCodeMenuCode菜单编码string100   IdId1guid.~ %IsDeletedIsDeleted是否删除bool 4} !!%DeleteTimeDeleteTime删除时间DateTime -| !!DeleteUserDeleteUser删除者guid 4{ !!%ModifyTimeModifyTime修改时间DateTime -z !!ModifyUserModifyUser修改者guid 4y !!%CreateTimeCreateTime创建时间DateTime -x !!CreateUserCreateUser创建者guid 2w  %RolseCodeRolseCode角色编码string36 6v ## %UserAccountUserAccount用户编码string36 u   IdId1guid -t !!ModifyUserModifyUser修改者guid -s !!CreateUserCreateUser创建者guid 0r %UserCodeUserCode用户编码string36 4q !!%DeleteTimeDeleteTime删除时间DateTime -p !!DeleteUserDeleteUser删除者guid 4o !!%ModifyTimeModifyTime修改时间DateTime 4n !!%CreateTimeCreateTime创建时间DateTime 'm FaceIdFaceId脸纹string100 +l FingerIdFingerId指纹string100 &k CardIdCardId卡号string10 +j  PasswordPassword密码string100 (i  AccountAccount账号string36 h   IdId1guid 4g !!%DeleteTimeDeleteTime删除时间DateTime -f !!DeleteUserDeleteUser删除者guid 4e !!%ModifyTimemodifyTime修改时间DateTime %d Modifymodify修改者guid 4c !!%CreateTimecreateTime创建时间DateTime 'b Creatercreater创建者guid 3a %RolseCoderolseCode角色编码string100 3` %RolseNamerolseName角色名称string100 0_ !!ParentCodeParentCode父Codestring100 ^   IdIdIdguid .] %IsDeletedIsDeleted是否删除bool
4\ !!%DeleteTimeDeleteTime删除时间DateTime
-[ !!DeleteUserDeleteUser删除者guid
4Z !!%ModifyTimeModifyTime修改时间DateTime
-Y !!ModifyUserModifyUser修改者guid
4X !!%CreateTimeCreateTime创建时间DateTime
R<00><0F><0F>h8<0E><0E>nV <0A> <0A> <0A> Q  <0C> <0C> <0C> j 3
<EFBFBD>  <0B> <0B> i 6
<EFBFBD>
<EFBFBD>
e
. <09> <09> <09> f /<08><08><08>a0 <07><07><07>V<06><06><06>N<05><05><05>}T&<04><04><04>^'<03><03><03>bJ<02><02><02>p<00>9<01><01>h8<00><15>}   IdId1guid.<2E>u %OrgCodeOrgCode组织编码string36-<2D>| !!ModifyUserModifyUser修改者guid-<2D>{ !!CreateUserCreateUser创建者guid0<>z %UserCodeUserCode用户编码string364<>y !!%DeleteTimeDeleteTime删除时间DateTime-<2D>x !!DeleteUserDeleteUser删除者guid4<>w !!%ModifyTimeModifyTime修改时间DateTime4<>v !!%CreateTimeCreateTime创建时间DateTime'<27>t FaceIdFaceId脸纹string100+<2B>s FingerIdFingerId指纹string100&<26>r CardIdCardId卡号string10+<2B>q  PasswordPassword密码string100(<28>p  AccountAccount账号string36<15>o   IdId1guid/<2F>n %OrgCodeRoleCode组织编码string36-<2D>m !!ModifyUserModifyUser修改者guid-<2D>l !!CreateUserCreateUser创建者guid0<>k %UserCodeUserCode用户编码string364<>j !!%DeleteTimeDeleteTime删除时间DateTime-<2D>i !!DeleteUserDeleteUser删除者guid4<>h !!%ModifyTimeModifyTime修改时间DateTime4<>g !!%CreateTimeCreateTime创建时间DateTime'<27>f FaceIdFaceId脸纹string100+<2B>e FingerIdFingerId指纹string100&<26>d CardIdCardId卡号string10+<2B>c  PasswordPassword密码string100(<28>b  AccountAccount账号string36<15>a   IdId1guid-<2D>` !!ModifyUserModifyUser修改者guid-<2D>_ !!CreateUserCreateUser创建者guid0<>^ %UserCodeUserCode用户编码string364<>] !!%DeleteTimeDeleteTime删除时间DateTime-<2D>\ !!DeleteUserDeleteUser删除者guid4<>[ !!%ModifyTimeModifyTime修改时间DateTime4<>Z !!%CreateTimeCreateTime创建时间DateTime'<27>Y FaceIdFaceId脸纹string100+<2B>X FingerIdFingerId指纹string100&<26>W CardIdCardId卡号string10+<2B>V  PasswordPassword密码string100(<28>U  AccountAccount账号string36.<2E>S %IsDeletedIsDeleted是否删除bool4<>R !!%DeleteTimeDeleteTime删除时间DateTime-<2D>Q !!DeleteUserDeleteUser删除者guid4<>P !!%ModifyTimeModifyTime修改时间DateTime-<2D>O !!ModifyUserModifyUser修改者guid4<>N !!%CreateTimeCreateTime创建时间DateTime-<2D>M !!CreateUserCreateUser创建者guid.<2E>L %IsDeletedIsDeleted是否删除bool4<>K !!%DeleteTimeDeleteTime删除时间DateTime-<2D>J !!DeleteUserDeleteUser删除者guid4<>I !!%ModifyTimeModifyTime修改时间DateTime-<2D>H !!ModifyUserModifyUser修改者guid4<>G !!%CreateTimeCreateTime创建时间DateTime-<2D>F !!CreateUserCreateUser创建者guid7<>@  /LoginTypeLoginTypeDictCode字典项string360<>E DictValueDictValue节点值string1000<>D  %DictNameDictName节点名称string367<>C !! +ParentCodeParentCode父节点编码string36*<2A>B  DictCodeDictCode编码string36<15>A   IdId1guid<15>T   IdId1guid4<>?  1NeedLoginNeedLogin是否需要登录bool<15>>   IdId1guid.<2E>= %IsDeletedIsDeleted是否删除bool4<>< !!%DeleteTimeDeleteTime删除时间DateTime-<2D>; !!DeleteUserDeleteUser删除者guid4<>: !!%ModifyTimeModifyTime修改时间DateTime-<2D>9 !!ModifyUserModifyUser修改者guid4<>8 !!%CreateTimeCreateTime创建时间DateTime-<2D>7 !!CreateUserCreateUser创建者guid0<>6  %RoleCodeRoleCode角色编码string366<>5 ## %UserAccountUserAccount用户编码string36<15>4   IdId1guid-<2D>3 !!ModifyUserModifyUser修改者guid-<2D>2 !!CreateUserCreateUser创建者guid0<>1 %UserCodeUserCode用户编码string364<>0 !!%DeleteTimeDeleteTime删除时间DateTime-<2D>/ !!DeleteUserDeleteUser删除者guid4<>. !!%ModifyTimeModifyTime修改时间DateTime4<>- !!%CreateTimeCreateTime创建时间DateTime'<27>, FaceIdFaceId脸纹string100 sS<00><0F><0F>pB<0E><0E><0E>hD <0A> <0A> <0A> u A <0C> <0C> o >  <0B> <0B> <0B> h A 
<EFBFBD>
<EFBFBD>
s
C
<09> <09> <09> j A <08><08><08>J<07><07><07>P*<06><06><06>X(<05><05><05>Z#<04><04><04>@ <03><03>v?<02><02><02>X<01><01><01>P <00><00><00>
.<2E>v %IsDeletedIsDeleted是否删除bool-4<>u !!%DeleteTimeDeleteTime删除时间DateTime--<2D>t !!DeleteUserDeleteUser删除者guid-4<>s !!%ModifyTimeModifyTime修改时间DateTime--<2D>r !!ModifyUserModifyUser修改者guid-4<>q !!%CreateTimeCreateTime创建时间DateTime--<2D>p !!CreateUserCreateUser创建者guid-7<>o  /LoginTypeLoginTypeDictCode字典项string36-4<>n  1NeedLoginNeedLogin是否需要登录bool-<15>m   IdId1guid-.<2E>l %IsDeletedIsDeleted是否删除bool,4<>k !!%DeleteTimeDeleteTime删除时间DateTime,-<2D>j !!DeleteUserDeleteUser删除者guid,4<>i !!%ModifyTimeModifyTime修改时间DateTime,-<2D>h !!ModifyUserModifyUser修改者guid,4<>g !!%CreateTimeCreateTime创建时间DateTime,-<2D>f !!CreateUserCreateUser创建者guid,0<>e DictValueDictValue节点值string100,0<>d  %DictTypeDictType字典类型string36,:!! +ParentCodeParentCode父节点编码string36,(<28>b  DictKeyDictKey编码string36,<15>a   IdId1guid,.<2E>` %IsDeletedIsDeleted是否删除bool+4<>_ !!%DeleteTimeDeleteTime删除时间DateTime+-<2D>^ !!DeleteUserDeleteUser删除者guid+4<>] !!%ModifyTimeModifyTime修改时间DateTime+-<2D>\ !!ModifyUserModifyUser修改者guid+4<>[ !!%CreateTimeCreateTime创建时间DateTime+-<2D>Z !!CreateUserCreateUser创建者guid+$<24>Y  RoleIdRoleId角色idguid+$<24>X  UserIdUserId用户idguid+<15>W   IdId1guid+.<2E>V %IsDeletedIsDeleted是否删除bool*8<>U ''SecurityStampSecurityStamp时间戳string200*#<23>T NameName姓名string100*-<2D>S !!ModifyUserModifyUser修改者guid*-<2D>R !!CreateUserCreateUser创建者guid*0<>Q %UserCodeUserCode用户编码string36*4<>P !!%DeleteTimeDeleteTime删除时间DateTime*-<2D>O !!DeleteUserDeleteUser删除者guid*4<>N !!%ModifyTimeModifyTime修改时间DateTime*4<>M !!%CreateTimeCreateTime创建时间DateTime*.<2E>L %OrgCodeOrgCode组织编码string36*'<27>K FaceIdFaceId脸纹string100*+<2B>J FingerIdFingerId指纹string100*&<26>I CardIdCardId卡号string10*+<2B>H  PasswordPassword密码string100*(<28>G  AccountAccount账号string36*<15>F   IdId1guid*.<2E>E %IsDeletedIsDeleted是否删除bool)4<>D !!%DeleteTimeDeleteTime删除时间DateTime)-<2D>C !!DeleteUserDeleteUser删除者guid)4<>B !!%ModifyTimeModifyTime修改时间DateTime)-<2D>A !!ModifyUserModifyUser修改者guid)4<>@ !!%CreateTimeCreateTime创建时间DateTime)-<2D>? !!CreateUserCreateUser创建者guid)$<24>>  MenuIdMenuId菜单Idguid)$<24>=  RoleIdRoleId角色Idguid)<15><   IdId1guid)4<>; !!%ModifyTimeModifyTime修改时间DateTime(-<2D>: !!ModifyUserModifyUser修改者guid(-<2D>9 !!CreateUserCreateUser创建者guid(.<2E>8 %IsDeletedIsDeleted是否删除bool(4<>7 !!%DeleteTimeDeleteTime删除时间DateTime(-<2D>6 !!DeleteUserDeleteUser删除者guid(4<>5 !!%CreateTimeCreateTime创建时间DateTime(1<>4  %RoleCodeRoleCode角色编码string100(1<>3 %RoleNameRoleName角色名称string100(0<>2 !!ParentCodeParentCode父Codestring100(<16>1   IdIdIdguid(.<2E>0 %IsDeletedIsDeleted是否删除bool''<27>/  ExceptionExceptionstring200'%<25>.  CallSiteCallSitestring200'!<21>-  LoggerLoggerstring200'#<23>,  MessageMessagestring200'<1F>+  LevelLevelstring200'"<22>*  !LoggedLoggedstring2000'+<2B>) ## ApplicationApplicationstring200'<14>(   IdIdguid'%<25>' %LevelLevel菜单层级int&+<2B>& %TypeCodeTypeCode菜单类型int&.<2E>% %IsDeletedIsDeleted是否删除bool&%<25>$ ParentIdParentId父Idguid&4<># !!%ModifyTimeModifyTime修改时间DateTime& R<00><0F><0F>}d1<0E><0E><0E>b+ <0A> <0A> <0A> c K $ <0C> <0C> <0C> f / <0B> <0B> <0B>  T &
<EFBFBD>
<EFBFBD>
<EFBFBD>
t
=
 <09> <09> l < <08><08>zb;<07><07>}F<06><06><06>i/<05><05><05>b2<04><04><04>cK<03><03>sC <02><02>t\(<01><01><01>X(<00><00>-<2D>" !!ModifyUserModifyUser修改者guid&4<>! !!%DeleteTimeDeleteTime删除时间DateTime&-<2D> !!DeleteUserDeleteUser删除者guid&4<> !!%CreateTimeCreateTime创建时间DateTime&-<2D> !!CreateUserCreateUser创建者guid&5<> !!%UrlControlUrlControl菜单地址string500&.<2E> MenuNameMenuName菜单名string100&1<>  %MenuCodeMenuCode菜单编码string100&<15>   IdId1guid&.<2E> %IsDeletedIsDeleted是否删除bool%4<> !!%DeleteTimeDeleteTime删除时间DateTime%-<2D> !!DeleteUserDeleteUser删除者guid%4<> !!%ModifyTimeModifyTime修改时间DateTime%-<2D> !!ModifyUserModifyUser修改者guid%4<> !!%CreateTimeCreateTime创建时间DateTime%-<2D> !!CreateUserCreateUser创建者guid%7<>  /LoginTypeLoginTypeDictCode字典项string36%4<>  1NeedLoginNeedLogin是否需要登录bool%<15>   IdId1guid%.<2E> %IsDeletedIsDeleted是否删除bool$4<> !!%DeleteTimeDeleteTime删除时间DateTime$-<2D> !!DeleteUserDeleteUser删除者guid$4<> !!%ModifyTimeModifyTime修改时间DateTime$-<2D> !!ModifyUserModifyUser修改者guid$4<>
2022-04-09 16:16:32 +08:00
!!%CreateTimeCreateTime创建时间DateTime$-<2D> !!CreateUserCreateUser创建者guid$0<> DictValueDictValue节点值string100$0<>  %DictNameDictName节点名称string36$7<> !! +ParentCodeParentCode父节点编码string36$*<2A>  DictCodeDictCode编码string36$<15>   IdId1guid$.<2E> %IsDeletedIsDeleted是否删除bool#4<> !!%DeleteTimeDeleteTime删除时间DateTime#-<2D> !!DeleteUserDeleteUser删除者guid#4<> !!%ModifyTimeModifyTime修改时间DateTime#-<2D> !!ModifyUserModifyUser修改者guid#4<>~ !!%CreateTimeCreateTime创建时间DateTime#-<2D>} !!CreateUserCreateUser创建者guid#$<24>|  RoleIdRoleId角色idguid#$<24>{  UserIdUserId用户idguid#<15>z   IdId1guid#.<2E>y %IsDeletedIsDeleted是否删除bool"8<>x ''SecurityStampSecurityStamp时间戳string200"#<23>w NameName姓名string100"-<2D>v !!ModifyUserModifyUser修改者guid"-<2D>u !!CreateUserCreateUser创建者guid"0<>t %UserCodeUserCode用户编码string36"4<>s !!%DeleteTimeDeleteTime删除时间DateTime"-<2D>r !!DeleteUserDeleteUser删除者guid"4<>q !!%ModifyTimeModifyTime修改时间DateTime"4<>p !!%CreateTimeCreateTime创建时间DateTime".<2E>o %OrgCodeOrgCode组织编码string36"'<27>n FaceIdFaceId脸纹string100"+<2B>m FingerIdFingerId指纹string100"&<26>l CardIdCardId卡号string10"+<2B>k  PasswordPassword密码string100"(<28>j  AccountAccount账号string36"<15>i   IdId1guid".<2E>h %IsDeletedIsDeleted是否删除bool!4<>g !!%DeleteTimeDeleteTime删除时间DateTime!-<2D>f !!DeleteUserDeleteUser删除者guid!4<>e !!%ModifyTimeModifyTime修改时间DateTime!-<2D>d !!ModifyUserModifyUser修改者guid!4<>c !!%CreateTimeCreateTime创建时间DateTime!-<2D>b !!CreateUserCreateUser创建者guid!$<24>a  MenuIdMenuId菜单Idguid!$<24>`  RoleIdRoleId角色Idguid!<15>_   IdId1guid!4<>^ !!%ModifyTimeModifyTime修改时间DateTime -<2D>] !!ModifyUserModifyUser修改者guid -<2D>\ !!CreateUserCreateUser创建者guid .<2E>[ %IsDeletedIsDeleted是否删除bool 4<>Z !!%DeleteTimeDeleteTime删除时间DateTime -<2D>Y !!DeleteUserDeleteUser删除者guid 4<>X !!%CreateTimeCreateTime创建时间DateTime 1<>W  %RoleCodeRoleCode角色编码string100 1<>V %RoleNameRoleName角色名称string100 0<>U !!ParentCodeParentCode父Codestring100 <16>T   IdIdIdguid .<2E>S %IsDeletedIsDeleted是否删除bool'<27>R  ExceptionExceptionstring200%<25>Q  CallSiteCallSitestring200 B><0F><0F><0F>K<0E><0E>}M <0A> <0A> <0A> g P " <0C> <0C> <0C> <0C> i ?  <0B> <0B> <0B> Z #
2022-04-03 23:36:31 +08:00
<EFBFBD>
<EFBFBD>
<EFBFBD>
[
2022-04-09 16:16:32 +08:00
+ <09> <09> <09> <09> ^ '<08><08><08>Y(<07><07><07>`6<06><06>g0<05><05><05>w< <04><04><04>u><03><03>p?'<02><02><02>Y)<01><01><01>N<00><00>/%UserIconUserIcon头像图标guid2C  IdId1guid5+%%%ResourceTypeResourceType资源类型string1047<34>G ''ResourceValueResourceValue资源值string3646<34>F %%!ResourceCodeResourceCode资源Codestring364.<2E>E %IsDeletedIsDeleted是否删除bool44<34>D !!%DeleteTimeDeleteTime删除时间DateTime4-<2D>C !!DeleteUserDeleteUser删除者guid44<34>B !!%ModifyTimeModifyTime修改时间DateTime4-<2D>A !!ModifyUserModifyUser修改者guid44<34>@ !!%CreateTimeCreateTime创建时间DateTime4-<2D>? !!CreateUserCreateUser创建者guid4<15>>   IdId1guid4.<2E>= %IsDeletedIsDeleted是否删除bool34<33>< !!%DeleteTimeDeleteTime删除时间DateTime3-<2D>; !!DeleteUserDeleteUser删除者guid34<33>: !!%ModifyTimeModifyTime修改时间DateTime3-<2D>9 !!ModifyUserModifyUser修改者guid34<33>8 !!%CreateTimeCreateTime创建时间DateTime3-<2D>7 !!CreateUserCreateUser创建者guid3$<24>6  RoleIdRoleId角色idguid3$<24>5  UserIdUserId用户idguid3<15>4   IdId1guid3.<2E>3 %IsDeletedIsDeleted是否删除bool28<32>2 ''SecurityStampSecurityStamp时间戳string2002#<23>1 NameName姓名string1002-<2D>0 !!ModifyUserModifyUser修改者guid2-<2D>/ !!CreateUserCreateUser创建者guid20<32>. %UserCodeUserCode用户编码string3624<32>- !!%DeleteTimeDeleteTime删除时间DateTime2-<2D>, !!DeleteUserDeleteUser删除者guid24<32>+ !!%ModifyTimeModifyTime修改时间DateTime24<32>* !!%CreateTimeCreateTime创建时间DateTime2.<2E>) %OrgCodeOrgCode组织编码string362'<27>( FaceIdFaceId脸纹string1002+<2B>' FingerIdFingerId指纹string1002&<26>& CardIdCardId卡号string102+<2B>%  PasswordPassword密码string1002(<28>$  AccountAccount账号string362<15>#   IdId1guid2.<2E>" %IsDeletedIsDeleted是否删除bool14<31>! !!%DeleteTimeDeleteTime删除时间DateTime1-<2D> !!DeleteUserDeleteUser删除者guid14<31> !!%ModifyTimeModifyTime修改时间DateTime1-<2D> !!ModifyUserModifyUser修改者guid14<31> !!%CreateTimeCreateTime创建时间DateTime1-<2D> !!CreateUserCreateUser创建者guid1$<24>  MenuIdMenuId菜单Idguid1$<24>  RoleIdRoleId角色Idguid1<15>   IdId1guid14<31> !!%ModifyTimeModifyTime修改时间DateTime0-<2D> !!ModifyUserModifyUser修改者guid0-<2D> !!CreateUserCreateUser创建者guid0.<2E> %IsDeletedIsDeleted是否删除bool04<30> !!%DeleteTimeDeleteTime删除时间DateTime0-<2D> !!DeleteUserDeleteUser删除者guid04<30> !!%CreateTimeCreateTime创建时间DateTime01<30>  %RoleCodeRoleCode角色编码string10001<30> %RoleNameRoleName角色名称string10000<30> !!ParentCodeParentCode父Codestring1000<16>   IdIdIdguid0.<2E> %IsDeletedIsDeleted是否删除bool/'<27>  ExceptionExceptionstring200/%<25>  CallSiteCallSitestring200/!<21>
 LoggerLoggerstring200/#<23>  MessageMessagestring200/<1F>  LevelLevelstring200/"<22>  !LoggedLoggedstring2000/+<2B> ## ApplicationApplicationstring200/<14>   IdIdguid/%<25> %LevelLevel菜单层级int.+<2B> %TypeCodeTypeCode路由类型int..<2E> %IsDeletedIsDeleted是否删除bool.%<25> ParentIdParentId父Idguid.4<EFBFBD> !!%ModifyTimeModifyTime修改时间DateTime.-<2D> !!ModifyUserModifyUser修改者guid.4<EFBFBD>~ !!%DeleteTimeDeleteTime删除时间DateTime.-<2D>} !!DeleteUserDeleteUser删除者guid.4<EFBFBD>| !!%CreateTimeCreateTime创建时间DateTime.-<2D>{ !!CreateUserCreateUser创建者guid.5<EFBFBD>z !!%UrlControlUrlControl菜单地址string500..<2E>y MenuNameMenuName菜单名string100.1<EFBFBD>x  %MenuCodeMenuCode菜单编码string100.<15>w   IdId1guid. >e<07><07>X!<06><06><06>qA
2022-04-09 16:16:32 +08:00
<05><05>r9<04><04><04>}<0F><0F>i2E<0E>|<0E> <0A> <0A> w G  <0C> <0C> <0C> p 9 <0B> <0B> n 7
<EFBFBD>
<EFBFBD>
<EFBFBD>
|
Q
& <09> <09> <09> z O $<08><08><08>V&<07>e_G<03><03>xK<02><02><02><02>U*<01><01><01><01>e:<00><00>, IsDeletedIsDeletedbool<(<28> !! ModifyTimeModifyTimeDateTime<$<24> !! ModifyUserModifyUserlong<(<28> !! CreateTimeCreateTimeDateTime<$<24> !! CreateUserCreateUserlong<<15>  AgeAgeint<<1C>  NameNamestring10<<14>   IdIdlong<(<28> !! TenantNameTenantNamestring10;"<22>  IsDeletedIsDeletedbool;(<28> !! ModifyTimeModifyTimeDateTime;(<28> !! CreateTimeCreateTimeDateTime;$<24> !! CreateUserCreateUserlong;<14>   IdIdlong;1<> !!TenantNameTenantName租户名string36:(<28>  %SaltSalt加密盐值string369+<2B>  PasswordPassword密码string1009*<2A>  UserNameUserName账户string369.<2E> %IsDeletedIsDeleted是否删除bool:4<> !!%ModifyTimeModifyTime修改时间DateTime:4<> !!%CreateTimeCreateTime创建时间DateTime:-<2D> !!CreateUserCreateUser创建者guid:<15>   IdId1long:(<28>
2022-09-09 15:53:11 +08:00
<15>v   IdId1guid8<15>J   IdId1guid5,<2C>I %UserIconUserIcon头像图标guid28<32>H %%%ResourceTypeResourceType资源类型string1047<34>G ''ResourceValueResourceValue资源值string3646<34>F %%!ResourceCodeResourceCode资源Codestring364.<2E>E %IsDeletedIsDeleted是否删除bool44<34>D !!%DeleteTimeDeleteTime删除时间DateTime4-<2D>C !!DeleteUserDeleteUser删除者guid44<34>B !!%ModifyTimeModifyTime修改时间DateTime4-<2D>A !!ModifyUserModifyUser修改者guid44<34>@ !!%CreateTimeCreateTime创建时间DateTime4-<2D>? !!CreateUserCreateUser创建者guid4<15>>   IdId1guid4.<2E>= %IsDeletedIsDeleted是否删除bool34<33>< !!%DeleteTimeDeleteTime删除时间DateTime3-<2D>; !!DeleteUserDeleteUser删除者guid34<33>: !!%ModifyTimeModifyTime修改时间DateTime3-<2D>9 !!ModifyUserModifyUser修改者guid34<33>u !!%DeleteTimeDeleteTime删除时间DateTime/-<2D>t !!DeleteUserDeleteUser删除者guid/4<>s !!%ModifyTimeModifyTime修改时间DateTime/-<2D>r !!ModifyUserModifyUser修改者guid/4<>q !!%CreateTimeCreateTime创建时间DateTime/-<2D>p !!CreateUserCreateUser创建者guid/(<28>o  TenantIdTenantId租户Idguid3(<28>n  TenantIdTenantId租户Idguid2(<28>m  TenantIdTenantId租户Idguid1(<28>l  TenantIdTenantId租户Idguid0(<28>k  TenantIdTenantId租户Idguid4(<28>j  TenantIdTenantId租户Idguid/(<28>i  TenantIdTenantId租户Idguid.(<28>h  TenantIdTenantId租户Idguid-(<28>g  TenantIdTenantId租户Idguid,(<28>f  TenantIdTenantId租户Idguid6(<28>e  TenantIdTenantId租户Idguid57<35>d 1FilePathFilePath物理文件路径string10074<37>c +FileNameFileName文件完整名string10070<37>b %FileTypeFileType文件类型string367.<2E>a %IsDeletedIsDeleted是否删除bool74<37>` !!%DeleteTimeDeleteTime删除时间DateTime7-<2D>_ !!DeleteUserDeleteUser删除者guid74<37>^ !!%CreateTimeCreateTime创建时间DateTime7-<2D>] !!CreateUserCreateUser创建者guid7<15>\   IdId1guid7$<24>[ UserIdUserId用户idguid6.<2E>Z %IsDeletedIsDeleted是否删除bool64<36>Y !!%DeleteTimeDeleteTime删除时间DateTime6-<2D>X !!DeleteUserDeleteUser删除者guid64<36>W !!%ModifyTimeModifyTime修改时间DateTime6-<2D>V !!ModifyUserModifyUser修改者guid64<36>U !!%CreateTimeCreateTime创建时间DateTime6-<2D>T !!CreateUserCreateUser创建者guid64<36>P +FileNameFileName文件完整名string10050<35>R %FileTypeFileType文件类型string365<15>S   IdId1guid67<36>Q 1FilePathFilePath物理文件路径string1005.<2E>O %IsDeletedIsDeleted是否删除bool54<35>N !!%DeleteTimeDeleteTime删除时间DateTime5-<2D>M !!DeleteUserDeleteUser删除者guid54<35>L !!%CreateTimeCreateTime创建时间DateTime5-<2D>K !!CreateUserCreateUser创建者guid5 *>t<0E><0E>l5 <0A> <0A> r D ,  <0C> <0C> <0C> R  <0B> <0B> <0B> w @
2022-04-24 23:09:34 +08:00
<EFBFBD>
<EFBFBD>
}
R

2022-09-09 15:53:11 +08:00
 <09> <09> <09> e : # <08><08><08>sH#<0F><0F><07>O<0F><07><07><07><06>T<05><05><05>Z<04><04>tttttttC<03>s<03><03>N<02><02><02>G/<01><01><01>~_@<00>7<03>!!%CreateTimeCreateTime创建时间DateTimeA-<2D>Q !!CreateUserCreateUser创建者longA<1C>P  MenuIdMenuIdlongB<1C>O  RoleIdRoleIdlongB<15>N   IdId1longB <20>M  ParentIdParentIdlongA*<2A>L ) PermissionCodeMenuCodestring36A<1F>K  MenuTypeMenuTypeintA$<24>J  MenuNameMenuNamestring36A<15>I   IdId1longA)<29>H MessageMessage消息string200@7  IdId1long@(<28>G TenantIdTenantId租户Idlong@.<2E>F %IsDeletedIsDeleted是否删除bool@4<>E !!%ModifyTimeModifyTime修改时间DateTime@-<2D>D !!ModifyUserModifyUser修改者long@4<>C !!%CreateTimeCreateTime创建时间DateTime@-<2D>B !!CreateUserCreateUser创建者long@.<2E>A ''  LogCreateTimeLogCreateTimeDateTime@7<00>%MessageMessage日志信息string200?(<28>> TenantIdTenantId租户Idlong?.<2E>= %IsDeletedIsDeleted是否删除bool?4<>< !!%ModifyTimeModifyTime修改时间DateTime?4<>; !!%CreateTimeCreateTime创建时间DateTime?-<2D>: !!CreateUserCreateUser创建者long?<15>9   IdId1long?<06>0!!ModifyUserModifyUser修改者long=-<2D>7 !!ModifyUserModifyUser修改者long>(<28>6 TenantIdTenantId租户Idlong>.<2E>5 %IsDeletedIsDeleted是否删除bool>4<>4 !!%ModifyTimeModifyTime修改时间DateTime>4<>3 !!%CreateTimeCreateTime创建时间DateTime>-<2D>2 !!CreateUserCreateUser创建者long>$<24>1  RoleNameRoleNamestring36>7<00>TenantIdTenantId租户Idlong=7<00>%IsDeletedIsDeleted是否删除bool=7<00>!!%ModifyTimeModifyTime修改时间DateTime=7g!!%CreateTimeCreateTime创建时间DateTime=70!!CreateUserCreateUser创建者long=<15>+   IdId1long><1C>*  UserIdUserIdlong=<1C>)  RoleIdRoleIdlong=%<25>$   PasswordPasswordstring100<"<22>!  IsDeletedIsDeletedbool<(<28> !! ModifyTimeModifyTimeDateTime<$<24> !! ModifyUserModifyUserlong<(<28> !! CreateTimeCreateTimeDateTime<$<24> !! CreateUserCreateUserlong<<15>  AgeAgeint<<1C>  NameNamestring10<<14>   IdIdlong<(<28> !! TenantNameTenantNamestring10;"<22>  IsDeletedIsDeletedbool;(<28> !! ModifyTimeModifyTimeDateTime;(<28> !! CreateTimeCreateTimeDateTime;$<24> !! CreateUserCreateUserlong;<14>   IdIdlong;1<> !!TenantNameTenantName租户名string36:(<28>  %SaltSalt加密盐值string369+<2B>  PasswordPassword密码string1009*<2A>  UserNameUserName账户string369.<2E> %IsDeletedIsDeleted是否删除bool:4<> !!%ModifyTimeModifyTime修改时间DateTime:4<> !!%CreateTimeCreateTime创建时间DateTime:-<2D> !!CreateUserCreateUser创建者guid:<15>   IdId1long:(<28>
2022-09-13 17:05:53 +08:00
TenantIdTenantId租户Idguid9.<2E> %IsDeletedIsDeleted是否删除bool94<39> !!%ModifyTimeModifyTime修改时间DateTime9-<2D> !!ModifyUserModifyUser修改者guid94<39> !!%CreateTimeCreateTime创建时间DateTime9-<2D> !!CreateUserCreateUser创建者guid9<1B> AgeAge年龄int9"<22> NameName姓名string109<15>   IdId1long9+<2B> %MenuTypeMenuType菜单类型int.(<28>  TenantIdTenantId租户Idguid7.<2E>~ %IsDeletedIsDeleted是否删除bool84<38>} !!%DeleteTimeDeleteTime删除时间DateTime8-<2D>| !!DeleteUserDeleteUser删除者guid84<38>{ !!%ModifyTimeModifyTime修改时间DateTime8-<2D>z !!ModifyUserModifyUser修改者guid84<38>y !!%CreateTimeCreateTime创建时间DateTime8-<2D>x !!CreateUserCreateUser创建者guid81<38>w !!TenantNameTenantName租户名string368  IdId1guid8-<2D>& !!ModifyUserModifyUser修改者long;<1C>%   SaltSaltstring36<<15>(   IdId1long=$<24>#   UserNameUserNamestring10< <20>"  TenantIdTenantIdlong< <07>V<00> <0B> t B  
2022-09-10 20:05:45 +08:00
<EFBFBD>
<EFBFBD>
t
C
2022-09-13 17:05:53 +08:00
 <09> <09> <09> <09><07> ; # <08><08>~<0F><0F>h= <0A> <0A> <0A> i 9  <0C> <0C>. l J / <0B> <0B>NI<00> <0C><07>S <06><06>vF<05><05> ^<04><04><04>d: <03><03><03>\2<02><00><02>w@<01><01>}O% <0E><0E>o>0<>o %RoleCodeRoleCode角色编码string36>0<> %DictNameDictName字典名称string36E'<27> RemarkRemark描述string100E+<2B> %OrderNumOrderNum排序字段intE(<28> TenantIdTenantId租户IdlongE.<2E> %IsDeletedIsDeleted是否删除boolE4<45> !!%ModifyTimeModifyTime修改时间DateTimeE-<2D> !!ModifyUserModifyUser修改者longE4<45> !!%CreateTimeCreateTime创建时间DateTimeE-<2D> !!CreateUserCreateUser创建者longE0<45> %DictTypeDictType字典类型string36E'<27> RemarkRemark描述string100<+<2B> %OrderNumOrderNum排序字段int<'<27> RemarkRemark描述string100C+<2B> %OrderNumOrderNum排序字段intC'<27> RemarkRemark描述string100>+<2B> %OrderNumOrderNum排序字段int>'<27> RemarkRemark描述string100A+<2B> %OrderNumOrderNum排序字段intA'<27> RemarkRemark描述string100@+<2B> %OrderNumOrderNum排序字段int@'<27> RemarkRemark描述string100D+<2B>~ %OrderNumOrderNum排序字段intD(<28>} %IsShowIsShow是否显示boolA1<41>{ 7IsLinkIsLink是否为外部链接boolA3<41>n 1RouterRouter菜单组件路由string100A1<41>m %MenuIconMenuIcon菜单图标string100A(<28>z TenantIdTenantId租户IdlongD.<2E>y %IsDeletedIsDeleted是否删除boolD4<44>x !!%ModifyTimeModifyTime修改时间DateTimeD-<2D>w !!ModifyUserModifyUser修改者longD4<44>v !!%CreateTimeCreateTime创建时间DateTimeD-<2D>u !!CreateUserCreateUser创建者longD@<40>t IIsDefaultIsDefault是否为该类型的默认值boolD0<44>s DictValueDictValue字典值string200D3<44>r %DictLabelDictLabel字典标签string100D0<44>q %DictTypeDictType字典类型string36D' RoleCodeRoleCodestring36>0<>L )) PermissionCodePermissionCodestring36A<15>
2022-09-10 20:05:45 +08:00
  IdId1longE<1D>e  IconIconstring200<-<2D>l %% IntroductionIntroductionstring200<4<>R !!%CreateTimeCreateTime创建时间DateTimeA-<2D>Q !!CreateUserCreateUser创建者longA<1C>P  MenuIdMenuIdlongB<1C>O  RoleIdRoleIdlongB<15>N   IdId1longB <20>M  ParentIdParentIdlongA*<2A>| %IsCacheIsCache是否缓存boolA<1F>K  MenuTypeMenuTypeintA$<24>J  MenuNameMenuNamestring36A<15>I   IdId1longA)<29>H MessageMessage消息string200@(<28>G TenantIdTenantId租户Idlong@.<2E>F %IsDeletedIsDeleted是否删除bool@4<>E !!%ModifyTimeModifyTime修改时间DateTime@-<2D>D !!ModifyUserModifyUser修改者long@4<>C !!%CreateTimeCreateTime创建时间DateTime@-<2D>B !!CreateUserCreateUser创建者long@/<2F>? %MessageMessage日志信息string200?(<28>> TenantIdTenantId租户Idlong?.<2E>= %IsDeletedIsDeleted是否删除bool?<1E>k  PhonePhonestring36<#<23>j  AddressAddressstring100<<15>@   IdId1long@<18>h  IpIpstring36<<1F>g  EmailEmailstring100<<1C>f  NickNickstring36<<15>p   IdId1longD(<28>d TenantIdTenantId租户IdlongC.<2E>c %IsDeletedIsDeleted是否删除boolC4<43>b !!%ModifyTimeModifyTime修改时间DateTimeC-<2D>a !!ModifyUserModifyUser修改者longC4<43>` !!%CreateTimeCreateTime创建时间DateTimeC-<2D>_ !!CreateUserCreateUser创建者longC(<28>^ !! TenantNameTenantNamestring36C<15>]   IdId1longC(<28> TenantIdTenantId租户IdlongB.<2E> %IsDeletedIsDeleted是否删除boolB4<42> !!%ModifyTimeModifyTime修改时间DateTimeB-<2D> !!ModifyUserModifyUser修改者longB4<42> !!%CreateTimeCreateTime创建时间DateTimeB-<2D> !!CreateUserCreateUser创建者longB(<28>V TenantIdTenantId租户IdlongA.<2E>U %IsDeletedIsDeleted是否删除boolA4<41>T !!%ModifyTimeModifyTime修改时间DateTimeA-<2D>S !!ModifyUserModifyUser修改者longA 'Z<0F>2<0E>t <0A> - <0C> m <0B> $
2022-09-09 15:53:11 +08:00
<EFBFBD>
2022-09-13 17:05:53 +08:00
E <09> q <08>8<07><07><06>P<05><05><04>V<03><01>Z<03>@H<02>h<00>r= 7C33UserRoleUserRole用户角色关系表2022-09-09 14:19:46.02501560001-01-01 00:00:000001-01-01 00:00:00xD ))+C33DictionaryInfoDictionaryInfo字典信息表2022-09-09 14:15:02.19521360001-01-01 00:00:000001-01-01 00:00:00^A C33MenuMenu菜单表2022-09-09 17:15:36.04845850001-01-01 00:00:000001-01-01 00:00:00^< C33UserUser用户表2022-09-13 16:30:15.01834550001-01-01 00:00:000001-01-01 00:00:00^> C33RoleRole角色表2022-09-13 16:18:22.78965770001-01-01 00:00:000001-01-01 00:00:00bC C33TenantTenant租户表2022-04-24 22:59:46.45382380001-01-01 00:00:000001-01-01 00:00:00qB 7A33RoleMenuRoleMenu角色菜单关系表2022-09-09 14:19:29.0582260001-01-01 00:00:000001-01-01 00:00:00\@ C33LogLog日志表2022-09-09 14:40:48.36248690001-01-01 00:00:000001-01-01 00:00:00\? C33 LogLog日志表2022-04-22 23:58:58.83233760001-01-01 00:00:000001-01-01 00:00:00X;  A33 TenantTenant2022-04-09 15:12:23.8181050001-01-01 00:00:000001-01-01 00:00:00b8 C33TenantTenant租户表2022-03-28 16:16:33.09423260001-01-01 00:00:000001-01-01 00:00:00V7 333Filefile文件表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00t6 7C33UserDtailUserDtail用户信息详情表2022-03-25 14:28:10.76269650001-01-01 00:00:000001-01-01 00:00:00^5 C33FileFile文件表2022-03-25 10:22:37.89735490001-01-01 00:00:000001-01-01 00:00:00f4 C33Resourceresource资源表2022-03-21 15:17:40.73929170001-01-01 00:00:000001-01-01 00:00:00j3 7333UserRoleuserrole用户角色关系表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00^2 C33Useruser用户表2022-03-25 14:03:44.43159470001-01-01 00:00:000001-01-01 00:00:00j1 7333RoleMenurolemenu角色权限关系表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00V0 333Rolerole角色表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00V/ 333Nlognlog日志表0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00^. C33Menumenu菜单表2022-03-29 15:18:35.16337120001-01-01 00:00:000001-01-01 00:00:00k- ''%333LoginSettingsloginsettings登录配置0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00j, !!C33Dictionarydictionary字典表2022-03-22 15:16:15.55104670001-01-01 00:00:000001-01-01 00:00:00^ C33 Useruser用户表2022-03-11 12:57:48.17542340001-01-01 00:00:000001-01-01 00:00:00r 7C33 UserRoleuserRole用户角色关系表2022-03-11 12:53:55.32206730001-01-01 00:00:000001-01-01 00:00:00q ##+C33MachineInfoMachineInfo设备信息表2021-12-24 14:34:43.93439540001-01-01 00:00:000001-01-01 00:00:00j !!C33 DictionaryDictionary字典表2021-12-22 17:48:38.70087150001-01-01 00:00:000001-01-01 00:00:00s ''%C33 LoginSettingsLoginSettings登录配置2021-12-22 17:50:42.00952470001-01-01 00:00:000001-01-01 00:00:00r 7C33 RoleMenuRoleMenu角色权限关系表2022-03-11 12:54:33.29967950001-01-01 00:00:000001-01-01 00:00:00^ C33 RoleRole角色表2022-03-11 12:57:03.52199710001-01-01 00:00:000001-01-01 00:00:00^ C33 NlogNlog日志表2021-12-22 17:52:05.16184450001-01-01 00:00:000001-01-01 00:00:00^ C33 MenuMenu菜单表2022-03-11 12:57:24.52281230001-01-01 00:00:000001-01-01 00:00:00q 7C33 RoleMenuRoleMenu角色权限关系表2021-12-21 22:01:35.80446610001-01-01 00:00:000001-01-01 00:00:00q 7C33 UserRoleUserRole用户角色关系表2021-12-21 22:03:34.39833640001-01-01 00:00:000001-01-01 00:00:00_ C33 RolseRolse角色表2021-12-21 22:06:11.65244180001-01-01 00:00:000001-01-01 00:00:00] C33 UserUser用户表2021-12-21 22:23:05.84113360001-01-01 00:00:000001-01-01 00:00:00] C33 MenuMenu菜单表2021-12-21 22:05:28.87833530001-01-01 00:00:000001-01-01 00:00:00a '333 DemouserdemouserCodeFirstTest0001-01-01 00:00:000001-01-01 00:00:000001-01-01 00:00:00i 'C33DemoUserDemoUserCodeFirstTest2021-11-26 11:04:09.18852790001-01-01 00:00:000001-01-01 00:00:00  <0A><0F>4<0E>` <0A> <0A>
<EFBFBD>
<EFBFBD>
h
=
 <09> <09> <09> <09> k D  <08><08><08>d-<07><07><07>j<<06><06>{D<05><05><05>'<27>U RemarkRemark描述string100H+<2B>T %OrderNumOrderNum排序字段intH(<28>S TenantIdTenantId租户IdlongH.<2E>R %IsDeletedIsDeleted是否删除boolH4<48>Q !!%ModifyTimeModifyTime修改时间DateTimeH-<2D>P !!ModifyUserModifyUser修改者longH4<48>O !!%CreateTimeCreateTime创建时间DateTimeH-<2D>N !!CreateUserCreateUser创建者longH'<27>M RemarkRemark描述string100J+<2B>L %OrderNumOrderNum排序字段intJ(<28>K TenantIdTenantId租户IdlongJ.<2E>J %IsDeletedIsDeleted是否删除boolJ4<4A>I !!%ModifyTimeModifyTime修改时间DateTimeJ-<2D>H !!ModifyUserModifyUser修改者longJ4<4A>G !!%CreateTimeCreateTime创建时间DateTimeJ-<2D>F !!CreateUserCreateUser创建者longJ$<24>E DeptIdDeptId部门idlong< <20>D PostPost岗位idlongJ$<24>C UserIdUserId用户idlongJ<15>B   IdId1longJ$<24>A DeptIdDeptId部门idlongI$<24>@ UserIdUserId用户idlongI<15>?   IdId1longI <20>> DeptDept部门idlongH$<24>= RoleIdRoleId角色idlongH<15><   IdId1longH'<27>; RemarkRemark描述string100G+<2B>: %OrderNumOrderNum排序字段intG(<28>9 TenantIdTenantId租户IdlongG.<2E>8 %IsDeletedIsDeleted是否删除boolG4<47>7 !!%ModifyTimeModifyTime修改时间DateTimeG-<2D>6 !!ModifyUserModifyUser修改者longG4<47>5 !!%CreateTimeCreateTime创建时间DateTimeG-<2D>4 !!CreateUserCreateUser创建者longG(<28>3 ParentIdParentId父级idlongG)<29>2 LeaderLeader负责人string36G0<47>1 %DeptCodeDeptCode部门编码string36G0<47>0 %DeptNameDeptName部门名称string36G<15>/   IdId1longG3<47>. 1DataScopeDataScope角色数据范围int>'<27>- RemarkRemark描述string100F+<2B>, %OrderNumOrderNum排序字段intF(<28>+ TenantIdTenantId租户IdlongF.<2E>* %IsDeletedIsDeleted是否删除boolF4<46>) !!%ModifyTimeModifyTime修改时间DateTimeF-<2D>( !!ModifyUserModifyUser修改者longF4<46>' !!%CreateTimeCreateTime创建时间DateTimeF-<2D>& !!CreateUserCreateUser创建者longF0<46>% %PostNamePostName岗位名称string36F0<46>$ %PostCodePostCode岗位编码string36F<15>#   IdId1longF+<2B>" %QueryQuery路由参数string100A3<41>! %ComponentComponent组件路径string100A(<28> TenantIdTenantId租户Idlong=.<2E> %IsDeletedIsDeleted是否删除bool=4<> !!%ModifyTimeModifyTime修改时间DateTime=-<2D> !!ModifyUserModifyUser修改者long=4<> !!%CreateTimeCreateTime创建时间DateTime=-<2D> !!CreateUserCreateUser创建者long= <0E>Z<0E>
2022-09-10 20:05:45 +08:00
<EFBFBD>=<03><00><00>7<>!MC U FurionApi.Application<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionApi.Application</name>
</assembly>
<members>
<member name="T:FurionApi.Application.SystemAppService">
<summary>
系统服务接口
</summary>
</member>
<member name="M:FurionApi.Application.SystemAppService.GetDescription">
<summary>
获取系统描述
</summary>
<returns></returns>
</member>
</members>
</doc>
{"name":"FurionApi.Application"}.xml<03>2022-09-10 20:02:45.098883100000000-0000-0000-0000-0000000000001<30>57<>_MC U FurionApi.Application<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionApi.Application.xml</DocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="System\**" />
<EmbeddedResource Remove="System\**" />
<None Remove="System\**" />
</ItemGroup>
<ItemGroup>
<None Remove="applicationsettings.json" />
<None Remove="FurionApi.Application.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="applicationsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionApi.Core\FurionApi.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionApi.Application"}.csproj<03>2022-09-10 20:02:45.098401500000000-0000-0000-0000-0000000000001<30>63<>mIC U applicationsettings{
"SpecificationDocumentSettings": {
"DocumentTitle": "Furion | 规范化接口",
"GroupOpenApiInfos": [
{
"Group": "Default",
"Title": "规范化接口演示",
"Description": "让 .NET 开发更简单,更通用,更流行。",
"Version": "1.0.0",
"TermsOfService": "https://furion.icu",
"Contact": {
"Name": "百小僧",
"Url": "https://gitee.com/monksoul",
"Email": "monksoul@outlook.com"
},
"License": {
"Name": "Apache-2.0",
"Url": "https://gitee.com/dotnetchina/Furion/blob/rc1/LICENSE"
}
}
]
},
"CorsAccessorSettings": {
"WithExposedHeaders": [
"access-token",
"x-access-token",
"environment"
]
}
}{"name":"applicationsettings"}.json<03>2022-09-10 20:02:45.097848400000000-0000-0000-0000-0000000000001<30>>c<>ky'C U/FurionApi.Core.GeneratedMSBuildEditorConfigis_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = FurionApi.Core
build_property.ProjectDir = E:\Git\WebFirst\SoEasyPlatform\wwwroot\template\Projects\FurionSqlSugarApi\FurionApi.Core\
{"name":"FurionApi.Core.GeneratedMSBuildEditorConfig"}.editorconfig<03>2022-09-10 20:02:45.092837100000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>C [qC U/FurionApi.Core.csproj.AssemblyReferenceU{"name":"FurionApi.Core.csproj.AssemblyReference"}.cache<03>2022-09-10 20:02:45.083662400000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>  7MC U/FurionApi.Core.assetsPKGA
{"name":"FurionApi.Core.assets"}.cache<03>2022-09-10 20:02:45.078462400000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>] OaeC U/FurionApi.Core.AssemblyInfoInputs9d163b26bb5606fbf1f75dba80239915faf0ee33
{"name":"FurionApi.Core.AssemblyInfoInputs"}.cache<03>2022-09-10 20:02:45.077823600000000-0000-0000-0000-0000000000001obj\Debug\net6.0\ > }zC><00>#<23>%9C U appsettings{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"AllowedHosts": "*",
"ConnectionConfigs": [
{
"ConnectionString": "[ConStr]",
"DbType": "[DbType]",
"IsAutoCloseConnection": true
}
]
}{"name":"appsettings"}.json<03>2022-09-10 20:02:45.101009700000000-0000-0000-0000-0000000000001<30>4;<3B>YQC U appsettings.Development{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}{"name":"appsettings.Development"}.json<03>2022-09-10 20:02:45.100718400000000-0000-0000-0000-0000000000001<30>U<>3kC UFurionApi.Application.csproj.nuget.g<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">C:\Users\Administrator\.nuget\packages\newtonsoft.json\10.0.3</PkgNewtonsoft_Json>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
</PropertyGroup>
</Project>{"name":"FurionApi.Application.csproj.nuget.g"}.props<03>2022-09-10 20:02:45.099454300000000-0000-0000-0000-0000000000001obj\<5C>%<25>#;A U GlobalUsingsglobal using Furion;
global using Furion.DataEncryption;
global using Furion.DataValidation;
global using Furion.DependencyInjection;
global using Furion.DynamicApiController;
global using Furion.Extensions;
global using Furion.FriendlyException;
global using Mapster;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.CodeAnalysis;
global using SqlSugar;
global using System.ComponentModel.DataAnnotations;
{"name":"GlobalUsings"}.cs<03>2022-09-10 20:02:45.09917700000000-0000-0000-0000-0000000000001 <01> $ <0B><07>(<01><00>7<>!MA U FurionApi.Application<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionApi.Application</name>
</assembly>
<members>
<member name="T:FurionApi.Application.SystemAppService">
<summary>
系统服务接口
</summary>
</member>
<member name="M:FurionApi.Application.SystemAppService.GetDescription">
<summary>
获取系统描述
</summary>
<returns></returns>
</member>
</members>
</doc>
{"name":"FurionApi.Application"}.xml<03>2022-09-10 20:02:45.10679400000000-0000-0000-0000-0000000000001<30>57<>_MC U FurionApi.Application<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionApi.Application.xml</DocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="System\**" />
<EmbeddedResource Remove="System\**" />
<None Remove="System\**" />
</ItemGroup>
<ItemGroup>
<None Remove="applicationsettings.json" />
<None Remove="FurionApi.Application.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="applicationsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionApi.Core\FurionApi.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionApi.Application"}.csproj<03>2022-09-10 20:02:45.106547300000000-0000-0000-0000-0000000000001<30>53<>mIA U applicationsettings{
"SpecificationDocumentSettings": {
"DocumentTitle": "Furion | 规范化接口",
"GroupOpenApiInfos": [
{
"Group": "Default",
"Title": "规范化接口演示",
"Description": "让 .NET 开发更简单,更通用,更流行。",
"Version": "1.0.0",
"TermsOfService": "https://furion.icu",
"Contact": {
"Name": "百小僧",
"Url": "https://gitee.com/monksoul",
"Email": "monksoul@outlook.com"
},
"License": {
"Name": "Apache-2.0",
"Url": "https://gitee.com/dotnetchina/Furion/blob/rc1/LICENSE"
}
}
]
},
"CorsAccessorSettings": {
"WithExposedHeaders": [
"access-token",
"x-access-token",
"environment"
]
}
}{"name":"applicationsettings"}.json<03>2022-09-10 20:02:45.10622400000000-0000-0000-0000-0000000000001<30>  I1C U ProgramServe.Run(RunOptions.Default);{"name":"Program"}.cs<03>2022-09-10 20:02:45.104568700000000-0000-0000-0000-0000000000001<30>Y3<>/IC U FurionApi.Web.Entry<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Controllers\**" />
<Compile Remove="wwwroot\**" />
<Content Remove="Controllers\**" />
<Content Remove="wwwroot\**" />
<EmbeddedResource Remove="Controllers\**" />
<EmbeddedResource Remove="wwwroot\**" />
<None Remove="Controllers\**" />
<None Remove="wwwroot\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionApi.Web.Core\FurionApi.Web.Core.csproj" />
</ItemGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties properties_4launchsettings_1json__JsonSchema="" />
</VisualStudio>
</ProjectExtensions>
</Project>
{"name":"FurionApi.Web.Entry"}.csproj<03>2022-09-10 20:02:45.101294900000000-0000-0000-0000-0000000000001  |y5 <00>"1<>+GC U FurionApi.Web.Core<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionApi.Web.Core</name>
</assembly>
<members>
</members>
</doc>
{"name":"FurionApi.Web.Core"}.xml<03>2022-09-10 20:02:45.108886700000000-0000-0000-0000-0000000000001<30>A!1<>GC U FurionApi.Web.Core<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionApi.Web.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionApi.Web.Core.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionApi.Application\FurionApi.Application.csproj" />
</ItemGroup>
</Project>
{"name":"FurionApi.Web.Core"}.csproj<03>2022-09-10 20:02:45.108526500000000-0000-0000-0000-0000000000001<30> U<>3kC UFurionApi.Application.csproj.nuget.g<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">C:\Users\Administrator\.nuget\packages\newtonsoft.json\10.0.3</PkgNewtonsoft_Json>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
</PropertyGroup>
</Project>{"name":"FurionApi.Application.csproj.nuget.g"}.props<03>2022-09-10 20:02:45.107272400000000-0000-0000-0000-0000000000001obj\<5C>%<25>#;C U GlobalUsingsglobal using Furion;
global using Furion.DataEncryption;
global using Furion.DataValidation;
global using Furion.DependencyInjection;
global using Furion.DynamicApiController;
global using Furion.Extensions;
global using Furion.FriendlyException;
global using Mapster;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.CodeAnalysis;
global using SqlSugar;
global using System.ComponentModel.DataAnnotations;
{"name":"GlobalUsings"}.cs<03>2022-09-10 20:02:45.107021400000000-0000-0000-0000-0000000000001 <08> :<08><00>$!<21>7C UJwtHandlerusing Furion.Authorization;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using System.Threading.Tasks;
namespace FurionApi.Web.Core
{
public class JwtHandler : AppAuthorizeHandler
{
public override Task<bool> PipelineAsync(AuthorizationHandlerContext context, DefaultHttpContext httpContext)
{
// 这里写您的授权判断逻辑,授权通过返回 true否则返回 false
return Task.FromResult(true);
}
}
}{"name":"JwtHandler"}.cs<03>2022-09-10 20:02:45.109670300000000-0000-0000-0000-0000000000001Handlers\<5C>C#<1B>;1C U Startupusing Furion;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace FurionApi.Web.Core
{
public class Startup : AppStartup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddJwt<JwtHandler>();
services.AddCorsAccessor();
services.AddControllers()
.AddInjectWithUnifyResult();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseHttpsRedirection();
app.UseRouting();
app.UseCorsAccessor();
app.UseAuthentication();
app.UseAuthorization();
app.UseInject(string.Empty);
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}{"name":"Startup"}.cs<03>2022-09-10 20:02:45.109184400000000-0000-0000-0000-0000000000001 "https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Furion.Extras.Authentication.JwtBearer": {
"target": "Package",
"version": "[3.6.4, )"
},
"Furion.Extras.ObjectMapper.Mapster": {
"target": "Package",
"version": "[3.6.4, )"
},
"Furion.Pure": {
"target": "Package",
"version": "[3.6.4, )"
},
"SqlSugarCore": {
"target": "Package",
"version": "[5.0.9.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj",
"projectName": "FurionApi.Web.Core",
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj": {
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}{"name":"FurionApi.Web.Core.csproj.nuget.dgspec"}.json<03>2022-09-10 20:02:45.109971200000000-0000-0000-0000-0000000000001obj\ <00><00><00>%Y<>eoC UFurionApi.Web.Core.csproj.nuget.dgspec{
"format": 1,
"restore": {
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj": {}
},
"projects": {
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj",
"projectName": "FurionApi.Application",
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\FurionApi.Core.csproj": {
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\FurionApi.Core.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\FurionApi.Core.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\FurionApi.Core.csproj",
"projectName": "FurionApi.Core",
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\FurionApi.Core.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Core\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- <03><06><03><00><>e()<29><>U?C Uproject.assets{
"version": 3,
"targets": {
"net6.0": {
"Ben.Demystifier/0.4.1": {
"type": "package",
"dependencies": {
"System.Reflection.Metadata": "5.0.0"
},
"compile": {
"lib/netstandard2.1/Ben.Demystifier.dll": {}
},
"runtime": {
"lib/netstandard2.1/Ben.Demystifier.dll": {}
}
},
"BouncyCastle.NetCore/1.8.5": {
"type": "package",
"compile": {
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
},
"runtime": {
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
}
},
"Furion.Extras.Authentication.JwtBearer/3.6.4"0<><'O<>3eC UFurionApi.Web.Core.csproj.nuget.g<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />{"name":"FurionApi.Web.Core.csproj.nuget.g"}.targets<03>2022-09-10 20:02:45.122338400000000-0000-0000-0000-0000000000001obj\<5C>z&O<>3eC UFurionApi.Web.Core.csproj.nuget.g<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgNewtonsoft_Json Condition=" '$(PkgNewtonsoft_Json)' == '' ">C:\Users\Administrator\.nuget\packages\newtonsoft.json\10.0.3</PkgNewtonsoft_Json>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
</PropertyGroup>
</Project>{"name":"FurionApi.Web.Core.csproj.nuget.g"}.props<03>2022-09-10 20:02:45.118468500000000-0000-0000-0000-0000000000001obj\1: {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.6"
},
"compile": {
"lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll": {}
},
"runtime": {
"lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll": {}
}
},
"Furion.Extras.ObjectMapper.Mapster/3.6.4": {
"type": "package",
"dependencies": {
"Mapster": "7.3.0",
"Mapster.DependencyInjection": "1.0.0"
},
"compile": {
"lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll": {}
},
"runtime": {
"lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"Furion.Pure/3.6.4": {
"type": "package",
"dependencies": {
"Furion.Pure.Extras.DependencyModel.CodeAnalysis": "3.6.4",
"MiniProfiler.AspNetCore.Mvc": "4.2.22",
"Swashbuckle.AspNetCore": "6.3.1"
},
"compile": {
"lib/net6.0/Furion.Pure.dll": {}
},
"runtime": {
"lib/net6.0/Furion.Pure.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"Furion.Pure.Extras.DependencyModel.CodeAnalysis/3.6.4": {
"type": "package",
"dependencies": {
"Ben.Demystifier": "0.4.1",
"Microsoft.AspNetCore.Razor.Language": "6.0.6",
"Microsoft.CodeAnalysis.CSharp": "4.2.0",
"Microsoft.Extensions.DependencyModel": "6.0.0",
"System.Text.Json": "6.0.5"
},
"compile": {
"lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll": {}
},
"runtime": {
"lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll": {}
}
},
"Google.Protobuf/3.19.4": {
"type": "package",
"compile": {
"lib/net5.0/Google.Protobuf.dll": {}
},
"runtime": {
"lib/net5.0/Google.Protobuf.dll": {}
}
},
"K4os.Compression.LZ4/1.2.6": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.4"
},
"compile": {
"lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
},
"runtime": {
"lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
}
},
"K4os.Compression.LZ4.Streams/1.2.6": {
"type": "package",
"dependencies": {
"K4os.Compression.LZ4": "1.2.6",
"K4os.Hash.xxHash": "1.0.6"
},
"compile": {
"lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
},
"runtime": {
"lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
}
},
"K4os.Hash.xxHash/1.0.6": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.3"
},
"compile": {
"lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
},
"runtime": {
"lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
}
},
"Mapster/7.3.0": {
"type": "package",
"dependencies": {
"Mapster.Core": "1.2.0",
"Microsoft.CSharp": "4.3.0",
"System.Reflection.Emit": "4.3.0"
},
"compile": {
"lib/netstandard2.0/Mapster.dll": {}
},
"runtime": {
"lib/netstandard2.0/Mapster.dll": {}
}
},
"Mapster.Core/1.2.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/Mapster.Core.dll": {}
},
"runtime": {
"lib/netstandard2.0/Mapster.Core.dll": {}
}
},
"Mapster.DependencyInjection/1.0.0": {
"type": "package",
"dependencies": {
"Mapster": "5.0.0"
},
"comp2ile": {
"lib/netstandard2.0/Mapster.DependencyInjection.dll": {}
},
"runtime": {
"lib/netstandard2.0/Mapster.DependencyInjection.dll": {}
}
},
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"Microsoft.AspNetCore.Razor.Language/6.0.6": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
}
},
"Microsoft.CodeAnalysis.Analyzers/3.3.3": {
"type": "package",
"build": {
"build/_._": {}
}
},
"Microsoft.CodeAnalysis.Common/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.3.3",
"System.Collections.Immutable": "5.0.0",
"System.Memory": "4.5.4",
"System.Reflection.Metadata": "5.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
"System.Text.Encoding.CodePages": "6.0.0",
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
},
"resource": {
"lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
"locale": "de"
},
"lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
"locale": "es"
},
"lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
"locale": "it"
},
"lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
"locale": "zh-Hant"
}
}
},
"Microsoft.CodeAnalysis.CSharp/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.CodeAnalysis.Common": "[4.2.0]"
},
"compile": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
},
"resource": {
"lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "cs"
},
"lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "de"
},
"lib/netco3reapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "es"
},
"lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "fr"
},
"lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "it"
},
"lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ja"
},
"lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ko"
},
"lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pl"
},
"lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "pt-BR"
},
"lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "ru"
},
"lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "tr"
},
"lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hans"
},
"lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
"locale": "zh-Hant"
}
}
},
"Microsoft.CSharp/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"Microsoft.Data.SqlClient/2.1.1": {
"type": "package",
"dependencies": {
"Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
"Microsoft.Identity.Client": "4.21.1",
"Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
"Microsoft.Win32.Registry": "4.7.0",
"System.Configuration.ConfigurationManager": "4.7.0",
"System.Diagnostics.DiagnosticSource": "4.7.0",
"System.Runtime.Caching": "4.7.0",
"System.Security.Principal.Windows": "4.7.0",
"System.Text.Encoding.CodePages": "4.7.0"
},
"compile": {
"ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
},
"runtime": {
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
"type": "package",
"runtimeTargets": {
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
"assetType": "native",
"rid": "win-arm"
},
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
"assetType": "native",
"rid": "win-arm64"
},
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
"assetType": "native",
"rid": "win-x86"
}
}
},
"Microsoft.Data.Sqlite/5.0.5": {
"type": "package",
"dependencies": {
"Microsoft.Data.Sqlite.Core": "5.0.5",
"SQLitePCLRaw.bundle_e_sqlite3": "2.0.4"
},
"compile": {
"lib/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/_._": {}
}
},
"Microsoft.Data.Sqlite.Core/5.0.5": {
"type": "package",
"dependencies": {
"SQLitePCLRaw.core": "2.0.4"
4},
"compile": {
"lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
}
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"type": "package",
"build": {
"build/_._": {}
},
"buildMultiTargeting": {
"buildMultiTargeting/_._": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyModel/6.0.0": {
"type": "package",
"dependencies": {
"System.Buffers": "4.5.1",
"System.Memory": "4.5.4",
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
"System.Text.Encodings.Web": "6.0.0",
"System.Text.Json": "6.0.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
}
},
"Microsoft.Identity.Client/4.21.1": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
}
},
"Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Tokens": "6.10.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
}
},
"Microsoft.IdentityModel.Logging/6.10.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
}
},
"Microsoft.IdentityModel.Protocols/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Logging": "6.10.0",
"Microsoft.IdentityModel.Tokens": "6.10.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
}
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.Protocols": "6.10.0",
"System.IdentityModel.Tokens.Jwt": "6.10.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
}
},
"Microsoft.IdentityModel.Tokens/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.5.0",
"Microsoft.IdentityModel.Logging": "6.10.0",
"System.Security.Cryptography.Cng": "4.5.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
}
},
"Microsoft.NETCore.Platforms/3.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "p5ackage",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.OpenApi/1.2.3": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.OpenApi.dll": {}
}
},
"Microsoft.Win32.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.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Microsoft.Win32.Registry/4.7.0": {
"type": "package",
"dependencies": {
"System.Security.AccessControl": "4.7.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"Microsoft.Win32.SystemEvents/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
"ref/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"MiniProfiler.AspNetCore/4.2.22": {
"type": "package",
"dependencies": {
"MiniProfiler.Shared": "4.2.22",
"System.Text.Json": "4.6.0"
},
"compile": {
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {}
},
"runtime": {
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"MiniProfiler.AspNetCore.Mvc/4.2.22": {
"type": "package",
"dependencies": {
"MiniProfiler.AspNetCore": "4.2.22"
},
"compile": {
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {}
},
"runtime": {
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"MiniProfiler.Shared/4.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
"Newtonsoft.Json": "10.0.3",
"System.ComponentModel.Primitives": "4.3.0",
"System.Data.Common": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.4.1",
"System.Diagnostics.StackTrace": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Threading.Tasks.Parallel": "4.3.0"
},
"compile": {
"lib/netstandard2.0/MiniProfiler.Shared.dll": {}
},
"runtime": {
"lib/netstandard2.0/MiniProfiler.Shared.dll": {}
}
},
"MySql.Data/8.0.29": {
"type": "package",
"dependencies": {
"BouncyCastle.NetCore": "1.8.5",
"Google.Protobuf": "3.19.4",
6 "K4os.Compression.LZ4.Streams": "1.2.6",
"System.Buffers": "4.5.1",
"System.Configuration.ConfigurationManager": "4.4.1",
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
"System.Security.Permissions": "4.7.0",
"System.Text.Encoding.CodePages": "4.4.0"
},
"compile": {
"lib/net6.0/MySql.Data.dll": {},
"lib/net6.0/Ubiety.Dns.Core.dll": {},
"lib/net6.0/ZstdNet.dll": {}
},
"runtime": {
"lib/net6.0/MySql.Data.dll": {},
"lib/net6.0/Ubiety.Dns.Core.dll": {},
"lib/net6.0/ZstdNet.dll": {}
}
},
"NETStandard.Library/1.6.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.Win32.Primitives": "4.3.0",
"System.AppContext": "4.3.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Console": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.IO.Compression.ZipFile": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Net.Http": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/10.0.3": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"NETStandard.Library": "1.6.1",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
}
},
"Npgsql/5.0.7": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.6.0"
},
"compile": {
"lib/net5.0/Npgsql.dll": {}
},
"runtime": {
"lib/net5.0/Npgsql.dll": {}
}
},
"Oracle.ManagedDataAccess.Core/3.21.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.PerformanceCounter": "4.7.0",
"System.DirectoryServices": "4.7.0",
"System.DirectoryServices.Protocols7": "4.7.0",
"System.Text.Json": "4.7.1"
},
"compile": {
"lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
},
"runtime": {
"lib/netstandard2.1/Oracle.ManagedDataAccess.dll": {}
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "debian.8-x64"
}
}
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "fedora.23-x64"
}
}
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "fedora.24-x64"
}
}
},
"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/_._": {}
}
},
"runtime.native.System.IO.Compression/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/_._": {}
}
},
"runtime.native.System.Net.Http/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/_._": {}
}
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
8 "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "opensuse.13.2-x64"
}
}
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "opensuse.42.1-x64"
}
}
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
"assetType": "native",
"rid": "osx.10.10-x64"
}
}
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
"assetType": "native",
"rid": "osx.10.10-x64"
}
}
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "rhel.7-x64"
}
}
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "ubuntu.14.04-x64"
}
}
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "ubuntu.16.04-x64"
}
}
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
"assetType": "native",
"rid": "ubuntu.16.10-x64"
}
}
},
"SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
"type": "package",
"dependencies": {
"SQLitePCLRaw.core": "2.0.4",
"SQLitePCLRaw.lib.e_sqlite3": "2.0.4",
"SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4"
},
"compile": {
"lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
"lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
},
"runtime": {
"lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {},
"lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {}
}
},
"SQLitePCLRaw.core/2.0.4": {
"type": "package",
"dependencies": {
"System.Memory": "4.5.3"
},
"compile": {
"lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
},
"runtime": {
"lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
}
},
"SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
"type": "package",
"compile": {
"lib/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/_._": {}
},
"runtimeTargets": {
"runtimes/alpine-x64/native/libe_sqlite3.so": {
"assetType"9: "native",
"rid": "alpine-x64"
},
"runtimes/linux-arm/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-arm"
},
"runtimes/linux-arm64/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-arm64"
},
"runtimes/linux-armel/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-armel"
},
"runtimes/linux-mips64/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-mips64"
},
"runtimes/linux-musl-x64/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-musl-x64"
},
"runtimes/linux-x64/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-x64"
},
"runtimes/linux-x86/native/libe_sqlite3.so": {
"assetType": "native",
"rid": "linux-x86"
},
"runtimes/osx-x64/native/libe_sqlite3.dylib": {
"assetType": "native",
"rid": "osx-x64"
},
"runtimes/win-arm/native/e_sqlite3.dll": {
"assetType": "native",
"rid": "win-arm"
},
"runtimes/win-arm64/native/e_sqlite3.dll": {
"assetType": "native",
"rid": "win-arm64"
},
"runtimes/win-x64/native/e_sqlite3.dll": {
"assetType": "native",
"rid": "win-x64"
},
"runtimes/win-x86/native/e_sqlite3.dll": {
"assetType": "native",
"rid": "win-x86"
}
}
},
"SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
"type": "package",
"dependencies": {
"SQLitePCLRaw.core": "2.0.4"
},
"compile": {
"lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
},
"runtime": {
"lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {}
}
},
"SqlSugarCore/5.0.9.1": {
"type": "package",
"dependencies": {
"Microsoft.Data.SqlClient": "2.1.1",
"Microsoft.Data.Sqlite": "5.0.5",
"MySql.Data": "8.0.29",
"Newtonsoft.Json": "10.0.3",
"Npgsql": "5.0.7",
"Oracle.ManagedDataAccess.Core": "3.21.1",
"SqlSugarCore.Dm": "1.0.0",
"SqlSugarCore.Kdbndp": "1.0.0",
"System.Data.Common": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0"
},
"compile": {
"lib/netstandard2.1/SqlSugar.dll": {}
},
"runtime": {
"lib/netstandard2.1/SqlSugar.dll": {}
}
},
"SqlSugarCore.Dm/1.0.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/DmProvider.dll": {}
},
"runtime": {
"lib/netstandard2.0/DmProvider.dll": {}
}
},
"SqlSugarCore.Kdbndp/1.0.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/Kdbndp.dll": {}
},
"runtime": {
"lib/netstandard2.0/Kdbndp.dll": {}
}
},
"Swashbuckle.AspNetCore/6.3.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.ApiDescription.Server": "3.0.0",
"Swashbuckle.AspNetCore.Swagger": "6.3.1",
"Swashbuckle.AspNetCore.SwaggerGen": "6.3.1",
"Swashbuckle.AspNetCore.SwaggerUI": "6.3.1"
},
"build": {
"build/_._": {}
}
},
"Swashbuckle.AspNetCore.Swagger/6.3.1": {
"type": "package",
"dependencies": {
"Microsoft.OpenApi": "1.2.3"
},
"compile": {
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
},
"runtime": {
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
: },
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
"type": "package",
"dependencies": {
"Swashbuckle.AspNetCore.Swagger": "6.3.1"
},
"compile": {
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
},
"runtime": {
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
}
},
"Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
"type": "package",
"compile": {
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
},
"runtime": {
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
},
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
},
"System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
"System.Buffers/4.5.1": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"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.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Reflection": "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.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/5.0.0": {
"type": "package",
"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/_._": {}
},
"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.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.Configuration.ConfigurationManager/4.7.0": {
"type": "package",
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.7.0",
"System.Security.Permissions": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
}
},
"System.Console/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
"System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "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.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.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.Debug.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/4.7.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Di<agnostics.PerformanceCounter/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.Win32.Registry": "4.7.0",
"System.Configuration.ConfigurationManager": "4.7.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
"System.IO.FileSystem": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Metadata": "1.4.1",
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/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.Diagnostics.Tools.dll": {}
}
},
"System.Diagnostics.Tracing/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.Diagnostics.Tracing.dll": {}
}
},
"System.DirectoryServices/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0",
"System.IO.FileSystem.AccessControl": "4.7.0",
"System.Security.AccessControl": "4.7.0",
"System.Security.Permissions": "4.7.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.DirectoryServices.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.DirectoryServices.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.DirectoryServices.Protocols/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Drawing.Common/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
"ref/netcoreapp3.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.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.Calendars/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.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.IdentityModel.Tokens.Jwt/6.10.0": {
"type": "package",
"dependencies": {
"Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
"Microsoft.IdentityModel.Tokens": "6.10.0"
},
"compile": {
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
}
},
"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.Compression/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Buffers": "4.3.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "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.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0">,
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
"System.Buffers": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "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.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.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.dll": {}
}
},
"System.IO.FileSystem.AccessControl/4.7.0": {
"type": "package",
"dependencies": {
"System.Security.AccessControl": "4.7.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"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.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.Memory/4.5.4": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
"System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.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.N@ETCore.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/System.Reflection.Emit.Lightweight.dll": {}
},
"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.Extensions.dll": {}
}
},
"System.Reflection.Metadata/5.0.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.Resources.ResourceManager.dll": {}
}
},
"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.Caching/4.7.0": { A
"type": "package",
"dependencies": {
"System.Configuration.ConfigurationManager": "4.7.0"
},
"compile": {
"ref/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/System.Runtime.Caching.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"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.Extensions.dll": {}
}
},
"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.Handles.dll": {}
}
},
"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/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
},
B "compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
},
"runtime": {
"lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Security.AccessControl/4.7.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0",
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
"ref/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Collections": "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.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.Apple": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
"runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "osx"
},
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
},
"runtime": {
"lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0C"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "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.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
},
"runtime": {
"lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
"assetType": "runtime",
"rid": "unix"
}
}
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
"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.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
"ref/netstandard2.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.X509CeDrtificates/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.Globalization.Calendars": "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.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Cng": "4.3.0",
"System.Security.Cryptography.Csp": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Permissions/4.7.0": {
"type": "package",
"dependencies": {
"System.Security.AccessControl": "4.7.0",
"System.Windows.Extensions": "4.7.0"
},
"compile": {
"ref/netcoreapp3.0/System.Security.Permissions.dll": {}
},
"runtime": {
"lib/netcoreapp3.0/System.Security.Permissions.dll": {}
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
"ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"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/6.0.0": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
"lib/net6.0/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"lib/net6.0/System.Text.Encoding.CodePages.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
E "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.Encoding.Extensions.dll": {}
}
},
"System.Text.Encodings.Web/6.0.0": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
"lib/net6.0/System.Text.Encodings.Web.dll": {}
},
"runtime": {
"lib/net6.0/System.Text.Encodings.Web.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
},
"runtimeTargets": {
"runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
"assetType": "runtime",
"rid": "browser"
}
}
},
"System.Text.Json/6.0.5": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
"System.Text.Encodings.Web": "6.0.0"
},
"compile": {
"lib/net6.0/System.Text.Json.dll": {}
},
"runtime": {
"lib/net6.0/System.Text.Json.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.3.0"
},
"compile": {
"ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"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/System.Threading.dll": {}
},
"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.4": {
"type": "package",
"compile": {
"ref/netcoreapp2.1/_._": {}
},
"runtime": {
"lib/netcoreapp2.1/_._": {}
}
},
"System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "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.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/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.2/System.Threading.Timer.dll": {}
}
},
"System.Windows.Extensions/4.7.0": {
"type": "package",
"dependencies": {
"System.Drawing.Common": "4.7.0"
},
"compile": {
"ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtime": F{
"lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"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.XDocument/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "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.XDocument.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.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": {}
}
},
"FurionApi.Application/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"FurionApi.Core": "1.0.0"
},
"compile": {
"bin/placeholder/FurionApi.Application.dll": {}
},
"runtime": {
"bin/placeholder/FurionApi.Application.dll": {}
}
},
"FurionApi.Core/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"Furion.Extras.Authentication.JwtBearer": "3.6.4",
"Furion.Extras.ObjectMapper.Mapster": "3.6.4",
"Furion.Pure": "3.6.4",
"SqlSugarCore": "5.0.9.1"
},
"compile": {
"bin/placeholder/FurionApi.Core.dll": {}
},
"runtime": {
"bin/placeholder/FurionApi.Core.dll": {}
}
}
}
},
"libraries": {
"Ben.Demystifier/0.4.1": {
"sha512": "axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==",
"type": "package",
"path": "ben.demystifier/0.4.1",
"files": [
".nupkg.metadata"G,
".signature.p7s",
"ben.demystifier.0.4.1.nupkg.sha512",
"ben.demystifier.nuspec",
"icon.png",
"lib/net45/Ben.Demystifier.dll",
"lib/netstandard2.0/Ben.Demystifier.dll",
"lib/netstandard2.1/Ben.Demystifier.dll",
"readme.md"
]
},
"BouncyCastle.NetCore/1.8.5": {
"sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
"type": "package",
"path": "bouncycastle.netcore/1.8.5",
"files": [
".nupkg.metadata",
".signature.p7s",
"bouncycastle.netcore.1.8.5.nupkg.sha512",
"bouncycastle.netcore.nuspec",
"lib/Mono/BouncyCastle.Crypto.dll",
"lib/Mono/BouncyCastle.Crypto.xml",
"lib/MonoAndroid/BouncyCastle.Crypto.dll",
"lib/MonoAndroid/BouncyCastle.Crypto.xml",
"lib/MonoMac/BouncyCastle.Crypto.dll",
"lib/MonoMac/BouncyCastle.Crypto.xml",
"lib/MonoTouch/BouncyCastle.Crypto.dll",
"lib/MonoTouch/BouncyCastle.Crypto.xml",
"lib/net20/BouncyCastle.Crypto.dll",
"lib/net20/BouncyCastle.Crypto.xml",
"lib/netstandard2.0/BouncyCastle.Crypto.dll",
"lib/netstandard2.0/BouncyCastle.Crypto.xml",
"lib/xamarinios/BouncyCastle.Crypto.dll",
"lib/xamarinios/BouncyCastle.Crypto.xml"
]
},
"Furion.Extras.Authentication.JwtBearer/3.6.4": {
"sha512": "GjvIPQX1YayxJif/O4QY3vb9WXGudXednNfM4EL5ChXNLKEmZhNNq8fWfdXZ0D77k6Wv02K4YzXWayYi38MHHg==",
"type": "package",
"path": "furion.extras.authentication.jwtbearer/3.6.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"furion.extras.authentication.jwtbearer.3.6.4.nupkg.sha512",
"furion.extras.authentication.jwtbearer.nuspec",
"icon.png",
"lib/net6.0/Furion.Extras.Authentication.JwtBearer.dll",
"lib/net6.0/Furion.Extras.Authentication.JwtBearer.xml"
]
},
"Furion.Extras.ObjectMapper.Mapster/3.6.4": {
"sha512": "q57PyTgo/LDNzANqsjJhx8KTRRAD1yYMlZ9Tb3wRpvoALywwiNodETX1UAAlSNY9mbYQxTCutVC5CKGzkEjZ7w==",
"type": "package",
"path": "furion.extras.objectmapper.mapster/3.6.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"furion.extras.objectmapper.mapster.3.6.4.nupkg.sha512",
"furion.extras.objectmapper.mapster.nuspec",
"icon.png",
"lib/net6.0/Furion.Extras.ObjectMapper.Mapster.dll",
"lib/net6.0/Furion.Extras.ObjectMapper.Mapster.xml"
]
},
"Furion.Pure/3.6.4": {
"sha512": "mfWCYb9Ps7bjFcIReWcCmgfXJjNFbCQAo3xEC905RQ5XVoHpQNTrBmnNK3vRh9kbHgoC+YRLl+w/02VrC3OYpQ==",
"type": "package",
"path": "furion.pure/3.6.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"furion.pure.3.6.4.nupkg.sha512",
"furion.pure.nuspec",
"icon.png",
"lib/net6.0/Furion.Pure.dll",
"lib/net6.0/Furion.Pure.xml"
]
},
"Furion.Pure.Extras.DependencyModel.CodeAnalysis/3.6.4": {
"sha512": "+6+ZDok36BEHuFk70fXa2BrVHxUKJwpxMt3IrqP6+vafI5CBc0mmE1z0/jg9M4VbM8HB/9IsNvufuPLBqeCkNg==",
"type": "package",
"path": "furion.pure.extras.dependencymodel.codeanalysis/3.6.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"furion.pure.extras.dependencymodel.codeanalysis.3.6.4.nupkg.sha512",
"furion.pure.extras.dependencymodel.codeanalysis.nuspec",
"icon.png",
"lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.dll",
"lib/net6.0/Furion.Pure.Extras.DependencyModel.CodeAnalysis.xml"
]
},
"Google.Protobuf/3.19.4": {
"sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==",
"type": "package",
"path": "google.protobuf/3.19.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"google.protobuf.3.19.4.nupkg.sha51H2",
"google.protobuf.nuspec",
"lib/net45/Google.Protobuf.dll",
"lib/net45/Google.Protobuf.pdb",
"lib/net45/Google.Protobuf.xml",
"lib/net5.0/Google.Protobuf.dll",
"lib/net5.0/Google.Protobuf.pdb",
"lib/net5.0/Google.Protobuf.xml",
"lib/netstandard1.1/Google.Protobuf.dll",
"lib/netstandard1.1/Google.Protobuf.pdb",
"lib/netstandard1.1/Google.Protobuf.xml",
"lib/netstandard2.0/Google.Protobuf.dll",
"lib/netstandard2.0/Google.Protobuf.pdb",
"lib/netstandard2.0/Google.Protobuf.xml"
]
},
"K4os.Compression.LZ4/1.2.6": {
"sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
"type": "package",
"path": "k4os.compression.lz4/1.2.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"k4os.compression.lz4.1.2.6.nupkg.sha512",
"k4os.compression.lz4.nuspec",
"lib/net45/K4os.Compression.LZ4.dll",
"lib/net45/K4os.Compression.LZ4.xml",
"lib/net46/K4os.Compression.LZ4.dll",
"lib/net46/K4os.Compression.LZ4.xml",
"lib/netstandard1.6/K4os.Compression.LZ4.dll",
"lib/netstandard1.6/K4os.Compression.LZ4.xml",
"lib/netstandard2.0/K4os.Compression.LZ4.dll",
"lib/netstandard2.0/K4os.Compression.LZ4.xml"
]
},
"K4os.Compression.LZ4.Streams/1.2.6": {
"sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
"type": "package",
"path": "k4os.compression.lz4.streams/1.2.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
"k4os.compression.lz4.streams.nuspec",
"lib/net45/K4os.Compression.LZ4.Streams.dll",
"lib/net45/K4os.Compression.LZ4.Streams.xml",
"lib/net46/K4os.Compression.LZ4.Streams.dll",
"lib/net46/K4os.Compression.LZ4.Streams.xml",
"lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
"lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
"lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
"lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
]
},
"K4os.Hash.xxHash/1.0.6": {
"sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
"type": "package",
"path": "k4os.hash.xxhash/1.0.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"k4os.hash.xxhash.1.0.6.nupkg.sha512",
"k4os.hash.xxhash.nuspec",
"lib/net45/K4os.Hash.xxHash.dll",
"lib/net45/K4os.Hash.xxHash.xml",
"lib/net46/K4os.Hash.xxHash.dll",
"lib/net46/K4os.Hash.xxHash.xml",
"lib/netstandard1.6/K4os.Hash.xxHash.dll",
"lib/netstandard1.6/K4os.Hash.xxHash.xml",
"lib/netstandard2.0/K4os.Hash.xxHash.dll",
"lib/netstandard2.0/K4os.Hash.xxHash.xml"
]
},
"Mapster/7.3.0": {
"sha512": "NrCUX/rJa5PTyo6iW4AL5dZLU9PDNlYnrJOVjgdpo5OQM9EtWH2CMHnC5sSuJWC0d0b0SnmeRrIviEem6WxtuQ==",
"type": "package",
"path": "mapster/7.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"icon.png",
"lib/netstandard1.3/Mapster.dll",
"lib/netstandard2.0/Mapster.dll",
"mapster.7.3.0.nupkg.sha512",
"mapster.nuspec"
]
},
"Mapster.Core/1.2.0": {
"sha512": "TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==",
"type": "package",
"path": "mapster.core/1.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"icon.png",
"lib/net40/Mapster.Core.dll",
"lib/net45/Mapster.Core.dll",
"lib/netstandard1.3/Mapster.Core.dlIl",
"lib/netstandard2.0/Mapster.Core.dll",
"mapster.core.1.2.0.nupkg.sha512",
"mapster.core.nuspec"
]
},
"Mapster.DependencyInjection/1.0.0": {
"sha512": "nNSGrgu5GirZ8nmuFXHGct+GwXjmbAAb+UqBl3Bwx/vbkCOypuvOziC+wTaNEjz/OE6LMg8yMCZzOtl59Lxw9Q==",
"type": "package",
"path": "mapster.dependencyinjection/1.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"icon.png",
"lib/net40/Mapster.DependencyInjection.dll",
"lib/net45/Mapster.DependencyInjection.dll",
"lib/netstandard1.3/Mapster.DependencyInjection.dll",
"lib/netstandard2.0/Mapster.DependencyInjection.dll",
"mapster.dependencyinjection.1.0.0.nupkg.sha512",
"mapster.dependencyinjection.nuspec"
]
},
"Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
"sha512": "lrfPEeisa0xCmZKKQIKxuks37aGE6jgGqDq1ikZDwNLWfIt2/ajOQpHMSE6a5uLjEVqkChKpXpvA7ZvfIKvdzA==",
"type": "package",
"path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
"lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
"microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512",
"microsoft.aspnetcore.authentication.jwtbearer.nuspec"
]
},
"Microsoft.AspNetCore.Razor.Language/6.0.6": {
"sha512": "I1WUhNrZA38OQ95WydhNE/EmAuf05+4RWdyWpi332l9f6NCN3R041/181wvYVvn6rdbOaDDUWZuUpmcH7NwSOA==",
"type": "package",
"path": "microsoft.aspnetcore.razor.language/6.0.6",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
"microsoft.aspnetcore.razor.language.6.0.6.nupkg.sha512",
"microsoft.aspnetcore.razor.language.nuspec"
]
},
"Microsoft.CodeAnalysis.Analyzers/3.3.3": {
"sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
"type": "package",
"path": "microsoft.codeanalysis.analyzers/3.3.3",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
"analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
"analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
"analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
"analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/es/Microsoft.CodeAJnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
"build/Microsoft.CodeAnalysis.Analyzers.props",
"build/Microsoft.CodeAnalysis.Analyzers.targets",
"build/config/analysislevel_2_9_8_all.editorconfig",
"build/config/analysislevel_2_9_8_default.editorconfig",
"build/config/analysislevel_2_9_8_minimum.editorconfig",
"build/config/analysislevel_2_9_8_none.editorconfig",
"build/config/analysislevel_2_9_8_recommended.editorconfig",
"build/config/analysislevel_3_3_all.editorconfig",
"build/config/analysislevel_3_3_default.editorconfig",
"build/config/analysislevel_3_3_minimum.editorconfig",
"build/config/analysislevel_3_3_none.editorconfig",
"build/config/analysislevel_3_3_recommended.editorconfig",
"build/config/analysislevel_3_all.editorconfig",
"build/config/analysislevel_3_default.editorconfig",
"build/config/analysislevel_3_minimum.editorconfig",
"build/config/analysislevel_3_none.editorconfig",
"build/config/analysislevel_3_recommended.editorconfig",
"build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
"build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
"build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
"build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
"build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
"build/config/analysislevelcorrectness_3_3_all.editorconfig",
"build/config/analysislevelcorrectness_3_3_default.editorconfig",
"build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
"build/config/analysislevelcorrectness_3_3_none.editorconfig",
"build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
"build/config/analysislevelcorrectness_3_all.editorconfig",
"build/config/analysislevelcorrectness_3_default.editorconfig",
"build/config/analysislevelcorrectness_3_minimum.editorconfig",
"build/config/analysislevelcorrectness_3_none.editorconfig",
"build/config/analysislevelcorrectness_3_recommended.editorconfig",
"build/config/analysislevellibrary_2_9_8_all.editorconfig",
"build/config/analysislevellibrary_2_9_8_default.editorconfig",
"build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
"build/config/analysislevellibrary_2_9_8_none.editorconfig",
"build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
"build/config/analysislevellibrary_3_3_all.editorconfig",
"build/config/analysislevellibrary_3_3_default.editorconfig",
"build/config/analysislevellibrary_3_3_minimum.editorconfig",
"build/config/analysislevellibrary_3_3_none.editorconfig",
"build/config/analysislevellibrary_3_3_recommended.editorconfig",
"build/config/analysislevellibrary_3_all.editorconfig",
"build/config/analysislevellibrary_3_default.editorconfig",
"build/config/analysislevellibrary_3_minimum.editorconfig",
"build/config/analysislevellibrary_3_none.editorconfig",
"build/config/analysislevellibrary_3_recommended.eKditorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
L"build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanMalysisperformance_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
"build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig",
"documentation/Analyzer Configuration.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.md",
"documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
"editorconfig/AllRulesDefault/.editorconfig",
"editorconfig/AllRulesDisabled/.editorconfig",
"editorconfig/AllRulesEnabled/.editorconfig",
"editorconfig/CorrectnessRulesDefault/.editorconfig",
"editorconfig/CorrectnessRulesEnabled/.editorconfig",
"editorconfig/DataflowRulesDefault/.editorconfig",
"editorconfig/DataflowRulesEnabled/.editorconfig",
"editorconfig/LibraryRulesDefault/.editorconfig",
"editorconfig/LibraryRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
"editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
"editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
"editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
"microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
"microsoft.codeanalysis.analyzers.nuspec",
"rulesets/AllRulesDefault.rulesetN",
"rulesets/AllRulesDisabled.ruleset",
"rulesets/AllRulesEnabled.ruleset",
"rulesets/CorrectnessRulesDefault.ruleset",
"rulesets/CorrectnessRulesEnabled.ruleset",
"rulesets/DataflowRulesDefault.ruleset",
"rulesets/DataflowRulesEnabled.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",
"rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
"rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
"rulesets/PortedFromFxCopRulesDefault.ruleset",
"rulesets/PortedFromFxCopRulesEnabled.ruleset",
"tools/install.ps1",
"tools/uninstall.ps1"
]
},
"Microsoft.CodeAnalysis.Common/4.2.0": {
"sha512": "lbusGcuE7D8FtZawQ4G++UFsRQArPzZN1GGXjPQwu3gvCbw7FXDcBq1zDZrZN1vRzPTVe1qyZMvfGhVUzs1TDg==",
"type": "package",
"path": "microsoft.codeanalysis.common/4.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
"lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
"lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
"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/MicrosOoft.CodeAnalysis.resources.dll",
"lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
"microsoft.codeanalysis.common.4.2.0.nupkg.sha512",
"microsoft.codeanalysis.common.nuspec"
]
},
"Microsoft.CodeAnalysis.CSharp/4.2.0": {
"sha512": "5IDwr8zGNBmDpxtzxxZj9IHwoA6HJ1/WWT/JacqPQJ4Vz/oZXaHNlzcBPVCZRGWUw+QvVdAhCKwEyJyuAuH/wg==",
"type": "package",
"path": "microsoft.codeanalysis.csharp/4.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"ThirdPartyNotices.rtf",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
"lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
"lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
"lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
"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.4.2.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.nuspec"
]
},
"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.cshaPrp.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.Data.SqlClient/2.1.1": {
"sha512": "qxPmA2q0/oqqzZiwgN2QcoFRMPPQOCOxJP9h8X/bLXkPRsIo8xy182td9Txt0WhobW1dBBSYj96/Wf9cmhpm7Q==",
"type": "package",
"path": "microsoft.data.sqlclient/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"dotnet.png",
"lib/net46/Microsoft.Data.SqlClient.dll",
"lib/net46/Microsoft.Data.SqlClient.pdb",
"lib/net46/Microsoft.Data.SqlClient.xml",
"lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
"lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
"lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
"lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
"lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
"lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
"lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
"lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
"lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
"lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
"lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
"microsoft.data.sqlclient.2.1.1.nupkg.sha512",
"microsoft.data.sqlclient.nuspec",
"ref/net46/Microsoft.Data.SqlClient.dll",
"ref/net46/Microsoft.Data.SqlClient.pdb",
"ref/net46/Microsoft.Data.SqlClient.xml",
"ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
"ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
"ref/netcoreapp2.1/Microsoft.Data.SqlCliQent.xml",
"ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
"ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
"ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
"ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
"ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
"ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
"ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
"ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
"runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
"runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
"runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
"runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
"runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
"runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
"runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
"runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
"runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
"runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
"runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
"runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
"runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
]
},
"Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
"sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
"type": "package",
"path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"dotnet.png",
"microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
"microsoft.data.sqlclient.sni.runtime.nuspec",
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
]
},
"Microsoft.Data.Sqlite/5.0.5": {
"sha512": "zTeCkFsBHZ1/iBd0GqyAUrtb3xuaiUeJyhd9hjuW9yo/ylRhWqxORKznR0bR1g/joUTohGTHAXr/KIuSNyjH/Q==",
"type": "package",
"path": "microsoft.data.sqlite/5.0.5",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/netstandard2.0/_._",
"microsoft.data.sqlite.5.0.5.nupkg.sha512",
"microsoft.data.sqlite.nuspec"
]
},
"Microsoft.Data.Sqlite.Core/5.0.5": {
"sha512": "tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==",
"type": "package",
"path": "microsoft.data.sqlite.core/5.0.5",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
"lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
"microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
"microsoft.data.sqlite.core.nuspec"
]
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
"type": "package",
"path": "microsoft.extensions.apidescription.server/3.0.0",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"build/Microsoft.Extensions.ApiDescription.Server.props",
R "build/Microsoft.Extensions.ApiDescription.Server.targets",
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
"microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"microsoft.extensions.apidescription.server.nuspec",
"tools/Newtonsoft.Json.dll",
"tools/dotnet-getdocument.deps.json",
"tools/dotnet-getdocument.dll",
"tools/dotnet-getdocument.runtimeconfig.json",
"tools/net461-x86/GetDocument.Insider.exe",
"tools/net461-x86/GetDocument.Insider.exe.config",
"tools/net461/GetDocument.Insider.exe",
"tools/net461/GetDocument.Insider.exe.config",
"tools/netcoreapp2.1/GetDocument.Insider.deps.json",
"tools/netcoreapp2.1/GetDocument.Insider.dll",
"tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"sha512": "eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec"
]
},
"Microsoft.Extensions.DependencyModel/6.0.0": {
"sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
"type": "package",
"path": "microsoft.extensions.dependencymodel/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.DependencyModel.dll",
"lib/net461/Microsoft.Extensions.DependencyModel.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
"microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
"microsoft.extensions.dependencymodel.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Identity.Client/4.21.1": {
"sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
"type": "package",
"path": "microsoft.identity.client/4.21.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/monoandroid10.0/Microsoft.Identity.Client.dll",
"lib/monoandroid10.0/Microsoft.Identity.Client.xml",
"lib/monoandroid90/Microsoft.Identity.Client.dll",
"lib/monoandroid90/Microsoft.Identity.Client.xml",
"lib/net45/Microsoft.Identity.Client.dll",
"lib/net45/Microsoft.Identity.Client.xml",
"lib/net461/Microsoft.Identity.Client.dll",
"lib/net461/Microsoft.Identity.Client.xml",
"lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
"lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
"lib/netstandard1.3/Microsoft.Identity.Client.dll",
"lib/netstandard1.3/Microsoft.Identity.Client.xml",
"lib/uap10.0/Microsoft.Identity.Client.dll",
"lib/uap10.0/Microsoft.Identity.Client.pri",
"lib/uap10.0/Microsoft.Identity.Client.xml",
"lib/xamarinios10/Microsoft.Identity.Client.dll",
"lib/xamarinios10/Microsoft.Identity.Client.xml",
"lib/xamarinmac20/Microsoft.Identity.Client.dll",
"lib/xamarinmac20/Microsoft.Identity.Client.xml",
"microsoft.identity.client.4.21.1.nupkg.sha512",
"microsoft.identity.client.nuspec",
"ref/MonoAndroid10.0/Microsoft.Identity.Client.dll"S,
"ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
"ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
"ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
"ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
"ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
"ref/net45/Microsoft.Identity.Client.dll",
"ref/net45/Microsoft.Identity.Client.xml",
"ref/net461/Microsoft.Identity.Client.dll",
"ref/net461/Microsoft.Identity.Client.xml",
"ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
"ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
"ref/netstandard1.3/Microsoft.Identity.Client.dll",
"ref/netstandard1.3/Microsoft.Identity.Client.xml",
"ref/uap10.0/Microsoft.Identity.Client.dll",
"ref/uap10.0/Microsoft.Identity.Client.xml",
"ref/xamarinmac20/Microsoft.Identity.Client.dll",
"ref/xamarinmac20/Microsoft.Identity.Client.xml"
]
},
"Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
"sha512": "0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
"type": "package",
"path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
"microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
"microsoft.identitymodel.jsonwebtokens.nuspec"
]
},
"Microsoft.IdentityModel.Logging/6.10.0": {
"sha512": "zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
"type": "package",
"path": "microsoft.identitymodel.logging/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Logging.dll",
"lib/net45/Microsoft.IdentityModel.Logging.xml",
"lib/net461/Microsoft.IdentityModel.Logging.dll",
"lib/net461/Microsoft.IdentityModel.Logging.xml",
"lib/net472/Microsoft.IdentityModel.Logging.dll",
"lib/net472/Microsoft.IdentityModel.Logging.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
"microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
"microsoft.identitymodel.logging.nuspec"
]
},
"Microsoft.IdentityModel.Protocols/6.10.0": {
"sha512": "DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
"type": "package",
"path": "microsoft.identitymodel.protocols/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Protocols.dll",
"lib/net45/Microsoft.IdentityModel.Protocols.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
"microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
"microsoft.identitymodel.protocols.nuspec"
]
},
"Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
"sha512": "LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
"type": "package",
T "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
"microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
"microsoft.identitymodel.protocols.openidconnect.nuspec"
]
},
"Microsoft.IdentityModel.Tokens/6.10.0": {
"sha512": "qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
"type": "package",
"path": "microsoft.identitymodel.tokens/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/Microsoft.IdentityModel.Tokens.dll",
"lib/net45/Microsoft.IdentityModel.Tokens.xml",
"lib/net461/Microsoft.IdentityModel.Tokens.dll",
"lib/net461/Microsoft.IdentityModel.Tokens.xml",
"lib/net472/Microsoft.IdentityModel.Tokens.dll",
"lib/net472/Microsoft.IdentityModel.Tokens.xml",
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
"lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
"microsoft.identitymodel.tokens.6.10.0.nupkg.sha512",
"microsoft.identitymodel.tokens.nuspec"
]
},
"Microsoft.NETCore.Platforms/3.1.0": {
"sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
"type": "package",
"path": "microsoft.netcore.platforms/3.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/netstandard1.0/_._",
"microsoft.netcore.platforms.3.1.0.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",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"microsoft.netcore.targets.1.1.0.nupkg.sha512",
"microsoft.netcore.targets.nuspec",
"runtime.json"
]
},
"Microsoft.OpenApi/1.2.3": {
"sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
"type": "package",
"path": "microsoft.openapi/1.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net46/Microsoft.OpenApi.dll",
"lib/net46/Microsoft.OpenApi.pdb",
"lib/net46/Microsoft.OpenApi.xml",
"lib/netstandard2.0/Microsoft.OpenApi.dll",
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
"lib/netstandard2.0/Microsoft.OpenApi.xml",
"microsoft.openapi.1.2.3.nupkg.sha512",
"microsoft.openapi.nuspec"
]
},
"Microsoft.Win32.Primitives/4.3.0": {
"sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
"path": "microsoft.win32.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
U "lib/MonoTouch10/_._",
"lib/net46/Microsoft.Win32.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"microsoft.win32.primitives.4.3.0.nupkg.sha512",
"microsoft.win32.primitives.nuspec",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Microsoft.Win32.Registry/4.7.0": {
"sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
"type": "package",
"path": "microsoft.win32.registry/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net46/Microsoft.Win32.Registry.dll",
"lib/net461/Microsoft.Win32.Registry.dll",
"lib/net461/Microsoft.Win32.Registry.xml",
"lib/netstandard1.3/Microsoft.Win32.Registry.dll",
"lib/netstandard2.0/Microsoft.Win32.Registry.dll",
"lib/netstandard2.0/Microsoft.Win32.Registry.xml",
"microsoft.win32.registry.4.7.0.nupkg.sha512",
"microsoft.win32.registry.nuspec",
"ref/net46/Microsoft.Win32.Registry.dll",
"ref/net461/Microsoft.Win32.Registry.dll",
"ref/net461/Microsoft.Win32.Registry.xml",
"ref/net472/Microsoft.Win32.Registry.dll",
"ref/net472/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/Microsoft.Win32.Registry.dll",
"ref/netstandard1.3/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
"ref/netstandard2.0/Microsoft.Win32.Registry.dll",
"ref/netstandard2.0/Microsoft.Win32.Registry.xml",
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
"runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
"runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
"runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"Microsoft.Win32.SystemEvents/4.7.0": {
"sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
"type": "package",
"path": "microsoft.win32.systemevents/4.7.0",
"files": [
".nupkg.mVetadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Win32.SystemEvents.dll",
"lib/net461/Microsoft.Win32.SystemEvents.xml",
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
"microsoft.win32.systemevents.4.7.0.nupkg.sha512",
"microsoft.win32.systemevents.nuspec",
"ref/net461/Microsoft.Win32.SystemEvents.dll",
"ref/net461/Microsoft.Win32.SystemEvents.xml",
"ref/net472/Microsoft.Win32.SystemEvents.dll",
"ref/net472/Microsoft.Win32.SystemEvents.xml",
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"MiniProfiler.AspNetCore/4.2.22": {
"sha512": "bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==",
"type": "package",
"path": "miniprofiler.aspnetcore/4.2.22",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"lib/net461/MiniProfiler.AspNetCore.dll",
"lib/net461/MiniProfiler.AspNetCore.xml",
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll",
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.xml",
"lib/netstandard2.0/MiniProfiler.AspNetCore.dll",
"lib/netstandard2.0/MiniProfiler.AspNetCore.xml",
"miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
"miniprofiler.aspnetcore.nuspec"
]
},
"MiniProfiler.AspNetCore.Mvc/4.2.22": {
"sha512": "nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==",
"type": "package",
"path": "miniprofiler.aspnetcore.mvc/4.2.22",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"lib/net461/MiniProfiler.AspNetCore.Mvc.dll",
"lib/net461/MiniProfiler.AspNetCore.Mvc.xml",
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll",
"lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.xml",
"lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.dll",
"lib/netstandard2.0/MiniProfiler.AspNetCore.Mvc.xml",
"miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
"miniprofiler.aspnetcore.mvc.nuspec"
]
},
"MiniProfiler.Shared/4.2.22": {
"sha512": "OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==",
"type": "package",
"path": "miniprofiler.shared/4.2.22",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.txt",
"lib/net461/MiniProfiler.Shared.dll",
"lib/net461/MiniProfiler.Shared.xml",
"lib/netstandard2.0/MiniProfiler.Shared.dll",
"lib/netstandard2.0/MiniProfiler.Shared.xml",
"miniprofiler.shared.4.2.22.nupkg.sha512",
"miniprofiler.shared.nuspec"
]
},
"MySql.Data/8.0.29": {
"sha512": "3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==",
"type": "package",
"path": "mysql.data/8.0.29",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net452/MySql.Data.dll",
"lib/net452/MySql.Data.xml",
"lib/net452/Ubiety.Dns.Core.dll",
"lib/net452/ZstdNet.dll",
"lib/net48/MySql.Data.dll",
"lib/net48/MySql.Data.xml",
"lib/net48/Ubiety.Dns.Core.dll",
"lib/net48/ZstdNet.dll",
"lib/net5.0/MySql.Data.dll",
"lib/net5.0/MySql.Data.xml",
"lib/net5.0/Ubiety.Dns.Core.dll",
W "lib/net5.0/ZstdNet.dll",
"lib/net6.0/MySql.Data.dll",
"lib/net6.0/MySql.Data.xml",
"lib/net6.0/Ubiety.Dns.Core.dll",
"lib/net6.0/ZstdNet.dll",
"lib/netstandard2.0/MySql.Data.dll",
"lib/netstandard2.0/MySql.Data.xml",
"lib/netstandard2.0/Ubiety.Dns.Core.dll",
"lib/netstandard2.0/ZstdNet.dll",
"lib/netstandard2.1/MySql.Data.dll",
"lib/netstandard2.1/MySql.Data.xml",
"lib/netstandard2.1/Ubiety.Dns.Core.dll",
"lib/netstandard2.1/ZstdNet.dll",
"mysql.data.8.0.29.nupkg.sha512",
"mysql.data.nuspec"
]
},
"NETStandard.Library/1.6.1": {
"sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
"path": "netstandard.library/1.6.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"netstandard.library.1.6.1.nupkg.sha512",
"netstandard.library.nuspec"
]
},
"Newtonsoft.Json/10.0.3": {
"sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
"type": "package",
"path": "newtonsoft.json/10.0.3",
"hasTools": true,
"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/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.10.0.3.nupkg.sha512",
"newtonsoft.json.nuspec",
"tools/install.ps1"
]
},
"Npgsql/5.0.7": {
"sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==",
"type": "package",
"path": "npgsql/5.0.7",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Npgsql.dll",
"lib/net5.0/Npgsql.xml",
"lib/netcoreapp3.1/Npgsql.dll",
"lib/netcoreapp3.1/Npgsql.xml",
"lib/netstandard2.0/Npgsql.dll",
"lib/netstandard2.0/Npgsql.xml",
"lib/netstandard2.1/Npgsql.dll",
"lib/netstandard2.1/Npgsql.xml",
"npgsql.5.0.7.nupkg.sha512",
"npgsql.nuspec",
"postgresql.png"
]
},
"Oracle.ManagedDataAccess.Core/3.21.1": {
"sha512": "SJM0qRVz6a7xMJtPPHAObq7MEzo42T+6+MImuuUK7ZCTXc2BIXbc9cenN7006FcOuX8x4OeTpPbFfQTVlhk9bw==",
"type": "package",
"path": "oracle.manageddataaccess.core/3.21.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"PerfCounters/register_odpc_perfmon_counters.ps1",
"PerfCounters/unregister_odpc_perfmon_counters.ps1",
"info.txt",
"lib/netstandard2.1/Oracle.ManagedDataAccess.dll",
"oracle.manageddataaccess.core.3.21.1.nupkg.sha512",
"oracle.manageddataaccess.core.nuspec",
"readme.txt"
]
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
"type": "package",
"path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.meXtadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
"path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
"type": "package",
"path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.native.System/4.3.0": {
"sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"type": "package",
"path": "runtime.native.system/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.4.3.0.nupkg.sha512",
"runtime.native.system.nuspec"
]
},
"runtime.native.System.IO.Compression/4.3.0": {
"sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
"path": "runtime.native.system.io.compression/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.io.compression.4.3.0.nupkg.sha512",
"runtime.native.system.io.compression.nuspec"
]
},
"runtime.native.System.Net.Http/4.3.0": {
"sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
"path": "runtime.native.system.net.http/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.net.http.4.3.0.nupkg.sha512",
"runtime.native.system.net.http.nuspec"
]
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
"type": "package",
"path": "runtime.native.system.security.cryptography.apple/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.security.cryptography.appYle.4.3.0.nupkg.sha512",
"runtime.native.system.security.cryptography.apple.nuspec"
]
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
"path": "runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.native.system.security.cryptography.openssl.nuspec"
]
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
"type": "package",
"path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
"type": "package",
"path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
"type": "package",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
"runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
]
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
"type": "package",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
]
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
"type": "package",
Z"path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
"type": "package",
"path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
"type": "package",
"path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
"type": "package",
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
"runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
"SQLitePCLRaw.bundle_e_sqlite3/2.0.4": {
"sha512": "f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==",
"type": "package",
"path": "sqlitepclraw.bundle_e_sqlite3/2.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
"lib/Xamarin.tvOS10/SQLitePCLRaw.batteries_v2.dll",
"lib/net461/SQLitePCLRaw.batteries_v2.dll",
"lib/net461/SQLitePCLRaw.nativelibrary.dll",
"lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll",
"lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll",
"lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
"sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
"sqlitepclraw.bundle_e_sqlite3.nuspec"
]
},
"SQLitePCLRaw.core/2.0.4": {
"sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==",
"type": "package",
"path": "sqlitepclraw.core/2.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/SQLitePCLRaw.core.dll",
"sqlitepclraw[.core.2.0.4.nupkg.sha512",
"sqlitepclraw.core.nuspec"
]
},
"SQLitePCLRaw.lib.e_sqlite3/2.0.4": {
"sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==",
"type": "package",
"path": "sqlitepclraw.lib.e_sqlite3/2.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"build/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
"lib/net461/_._",
"lib/netstandard2.0/_._",
"runtimes/alpine-x64/native/libe_sqlite3.so",
"runtimes/linux-arm/native/libe_sqlite3.so",
"runtimes/linux-arm64/native/libe_sqlite3.so",
"runtimes/linux-armel/native/libe_sqlite3.so",
"runtimes/linux-mips64/native/libe_sqlite3.so",
"runtimes/linux-musl-x64/native/libe_sqlite3.so",
"runtimes/linux-x64/native/libe_sqlite3.so",
"runtimes/linux-x86/native/libe_sqlite3.so",
"runtimes/osx-x64/native/libe_sqlite3.dylib",
"runtimes/win-arm/native/e_sqlite3.dll",
"runtimes/win-arm64/native/e_sqlite3.dll",
"runtimes/win-x64/native/e_sqlite3.dll",
"runtimes/win-x86/native/e_sqlite3.dll",
"runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
"runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
"runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
"runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
"sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
"sqlitepclraw.lib.e_sqlite3.nuspec"
]
},
"SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": {
"sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==",
"type": "package",
"path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll",
"sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
"sqlitepclraw.provider.dynamic_cdecl.nuspec"
]
},
"SqlSugarCore/5.0.9.1": {
"sha512": "3NemW4YKNn2g/52DI5pOTPJAIv1tIskeoNqoNUeZcquBq7Ew2lszjWiot48h0mmC3Ls6bz/36vmQSbjD7jBdYw==",
"type": "package",
"path": "sqlsugarcore/5.0.9.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.1/SqlSugar.dll",
"sqlsugarcore.5.0.9.1.nupkg.sha512",
"sqlsugarcore.nuspec"
]
},
"SqlSugarCore.Dm/1.0.0": {
"sha512": "TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==",
"type": "package",
"path": "sqlsugarcore.dm/1.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/DmProvider.dll",
"sqlsugarcore.dm.1.0.0.nupkg.sha512",
"sqlsugarcore.dm.nuspec"
]
},
"SqlSugarCore.Kdbndp/1.0.0": {
"sha512": "xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==",
"type": "package",
"path": "sqlsugarcore.kdbndp/1.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Kdbndp.dll",
"sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
"sqlsugarcore.kdbndp.nuspec"
]
},
"Swashbuckle.AspNetCore/6.3.1": {
"sha512": "JFk0+HHUPdjYuPhkpGBMLi2JtnEuWkE2pp0yXQp64DmeMe+Fb0hZyVNq/ENJ2vQNso7Zg+C758WmR/xyAl36bA==",
"type": "package",
"path": "swashbuckle.aspnetcore/6.3.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"build/Swashbuckle.AspNetCore.props",
"swashbuckle.aspnetcore.6.3.1.nupkg.sha512",
"swashbuckle.aspnetcore.nuspec"
]
},
"Swashbuckle.AspNetCore.Swagger/6.3.1": {
"sha512": "idAFh4xhyJHYHfdLVOOn+BmscBul1OQbWsnL6YPJE8tO/0y6S79hDCvs6OY5VI093/9+1pYY3j31Zet9yaDZjA==",
"type": "package",
"path": "swashbuckle.aspnetcore.swagger/6.3.1",
\ "files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
"swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512",
"swashbuckle.aspnetcore.swagger.nuspec"
]
},
"Swashbuckle.AspNetCore.SwaggerGen/6.3.1": {
"sha512": "+uoBV4h/6NhCPLoTofSmuOnZ+usu4PW1jP6l4OHwPyu2frbYXGNpJsHs5uUXXn929OiVQkT8wo3Lj/o+P99Ejg==",
"type": "package",
"path": "swashbuckle.aspnetcore.swaggergen/6.3.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
"swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512",
"swashbuckle.aspnetcore.swaggergen.nuspec"
]
},
"Swashbuckle.AspNetCore.SwaggerUI/6.3.1": {
"sha512": "JLm9hN67jh7RHsX3H30+tb432Li8xm/qV5lRyMMkyHYMfWitIuKAAdrpo2ILcHOIeH7CLMuOO2hp/iLBmE+Bkw==",
"type": "package",
"path": "swashbuckle.aspnetcore.swaggerui/6.3.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
"swashbuckle.aspnetcore.swaggerui.6.3.1.nupkg.sha512",
"swashbuckle.aspnetcore.swaggerui.nuspec"
]
},
"System.AppContext/4.3.0": {
"sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
"path": "system.appcontext/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.AppContext.dll",
"lib/net463/System.AppContext.dll",
"lib/netcore50/System.AppContext.dll",
"lib/netstandard1.6/System.AppContext.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
] "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.AppContext.dll",
"ref/net463/System.AppContext.dll",
"ref/netstandard/_._",
"ref/netstandard1.3/System.AppContext.dll",
"ref/netstandard1.3/System.AppContext.xml",
"ref/netstandard1.3/de/System.AppContext.xml",
"ref/netstandard1.3/es/System.AppContext.xml",
"ref/netstandard1.3/fr/System.AppContext.xml",
"ref/netstandard1.3/it/System.AppContext.xml",
"ref/netstandard1.3/ja/System.AppContext.xml",
"ref/netstandard1.3/ko/System.AppContext.xml",
"ref/netstandard1.3/ru/System.AppContext.xml",
"ref/netstandard1.3/zh-hans/System.AppContext.xml",
"ref/netstandard1.3/zh-hant/System.AppContext.xml",
"ref/netstandard1.6/System.AppContext.dll",
"ref/netstandard1.6/System.AppContext.xml",
"ref/netstandard1.6/de/System.AppContext.xml",
"ref/netstandard1.6/es/System.AppContext.xml",
"ref/netstandard1.6/fr/System.AppContext.xml",
"ref/netstandard1.6/it/System.AppContext.xml",
"ref/netstandard1.6/ja/System.AppContext.xml",
"ref/netstandard1.6/ko/System.AppContext.xml",
"ref/netstandard1.6/ru/System.AppContext.xml",
"ref/netstandard1.6/zh-hans/System.AppContext.xml",
"ref/netstandard1.6/zh-hant/System.AppContext.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.AppContext.dll",
"system.appcontext.4.3.0.nupkg.sha512",
"system.appcontext.nuspec"
]
},
"System.Buffers/4.5.1": {
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
"type": "package",
"path": "system.buffers/4.5.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Buffers.dll",
"lib/net461/System.Buffers.xml",
"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.1.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",
".signature.p7s",
"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/netco^re50/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.Concurrent/4.3.0": {
"sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
"path": "system.collections.concurrent/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Collections.Concurrent.dll",
"lib/netstandard1.3/System.Collections.Concurrent.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/netcore50/System.Collections.Concurrent.dll",
"ref/netcore50/System.Collections.Concurrent.xml",
"ref/netcore50/de/System.Collections.Concurrent.xml",
"ref/netcore50/es/System.Collections.Concurrent.xml",
"ref/netcore50/fr/System.Collections.Concurrent.xml",
"ref/netcore50/it/System.Collections.Concurrent.xml",
"ref/netcore50/ja/System.Collections.Concurrent.xml",
"ref/netcore50/ko/System.Collections.Concurrent.xml",
"ref/netcore50/ru/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.1/System.Collections.Concurrent.dll",
"ref/netstandard1.1/System.Collections.Concurrent.xml",
"ref/netstandard1.1/de/System.Collections.Concurrent.xml",
"ref/netstandard1.1/es/System.Collections.Concurrent.xml",
"ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.1/it/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ru/System.Collections.Co_ncurrent.xml",
"ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.3/System.Collections.Concurrent.dll",
"ref/netstandard1.3/System.Collections.Concurrent.xml",
"ref/netstandard1.3/de/System.Collections.Concurrent.xml",
"ref/netstandard1.3/es/System.Collections.Concurrent.xml",
"ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.3/it/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.collections.concurrent.4.3.0.nupkg.sha512",
"system.collections.concurrent.nuspec"
]
},
"System.Collections.Immutable/5.0.0": {
"sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
"type": "package",
"path": "system.collections.immutable/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Collections.Immutable.dll",
"lib/net461/System.Collections.Immutable.xml",
"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.5.0.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",
".signature.p7s",
"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",
".signature.p7s",
"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",
".signature.p7s",
"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/Sysatem.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.Primitives/4.3.0": {
"sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
"path": "system.componentmodel.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
"path": "system.componentmodel.typeconverter/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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.CombponentModel.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.Configuration.ConfigurationManager/4.7.0": {
"sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
"type": "package",
"path": "system.configuration.configurationmanager/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Configuration.ConfigurationManager.dll",
"lib/net461/System.Configuration.ConfigurationManager.xml",
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
"lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
"ref/net461/System.Configuration.ConfigurationManager.dll",
"ref/net461/System.Configuration.ConfigurationManager.xml",
"ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
"ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
"system.configuration.configurationmanager.4.7.0.nupkg.sha512",
"system.configuration.configurationmanager.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Console/4.3.0": {
"sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
"path": "system.console/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Console.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Console.dll",
"ref/netstandard1.3/System.Console.dll",
"ref/netstandard1.3/System.Console.xml",
"ref/netstandard1.3/de/System.Console.xml",
"ref/netstandard1.3/es/System.Console.xml",
"ref/netstandard1.3/fr/System.Console.xml",
"ref/netstandard1.3/it/System.Console.xml",
"ref/netstandard1.3/ja/System.Console.xml",
"ref/netstandard1.3/ko/System.Console.xml",
"ref/netstandard1.3/ru/System.Console.xml",
"ref/netstandard1.3/zh-hans/System.Console.xml",
"ref/netstandard1.3/zh-hant/System.Console.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.console.4.3.0.nupkg.sha512",
"system.console.nuspec"
]
},
"System.Data.Commcon/4.3.0": {
"sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
"path": "system.data.common/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/System.Data.Common.dll",
"lib/netstandard1.2/System.Data.Common.dll",
"lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.xml",
"ref/netstandard1.2/de/System.Data.Common.xml",
"ref/netstandard1.2/es/System.Data.Common.xml",
"ref/netstandard1.2/fr/System.Data.Common.xml",
"ref/netstandard1.2/it/System.Data.Common.xml",
"ref/netstandard1.2/ja/System.Data.Common.xml",
"ref/netstandard1.2/ko/System.Data.Common.xml",
"ref/netstandard1.2/ru/System.Data.Common.xml",
"ref/netstandard1.2/zh-hans/System.Data.Common.xml",
"ref/netstandard1.2/zh-hant/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.data.common.4.3.0.nupkg.sha512",
"system.data.common.nuspec"
]
},
"System.Diagnostics.Debug/4.3.0": {
"sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
"path": "system.diagnostics.debug/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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",
"rdef/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.Diagnostics.PerformanceCounter/4.7.0": {
"sha512": "kE9szT4i3TYT9bDE/BPfzg9/BL6enMiZlcUmnUEBrhRtxWvurKoa8qhXkLTRhrxMzBqaDleWlRfIPE02tulU+w==",
"type": "package",
"path": "system.diagnostics.performancecounter/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.Diagnostics.PerformanceCounter.dll",
"lib/net461/System.Diagnostics.PerformanceCounter.xml",
"lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
"lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net461/System.Diagnostics.PerformanceCounter.dll",
"ref/net461/System.Diagnostics.PerformanceCounter.xml",
"ref/net472/System.Diagnostics.PerformanceCounter.dll",
"ref/net472/System.Diagnostics.PerformeanceCounter.xml",
"ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
"ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
"runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
"system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
"system.diagnostics.performancecounter.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Diagnostics.StackTrace/4.3.0": {
"sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
"path": "system.diagnostics.stacktrace/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Diagnostics.StackTrace.dll",
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
"system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
"system.diagnostics.stacktrace.nuspec"
]
},
"System.Diagnostics.Tools/4.3.0": {
"sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
"path": "system.diagnostics.tools/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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.Tools.dll",
"ref/netcore50/System.Diagnostics.Tools.xml",
"ref/netcore50/de/System.Diagnostics.Tools.xml",
"ref/netcore50/es/System.Diagnostics.Tools.xml",
"ref/netcore50/fr/System.Diagnostics.Tools.xml",
"ref/netcore50/it/System.Diagnostics.Tools.xml",
"ref/netcore50/ja/System.Diagnostics.Tools.xml",
"ref/netcore50/ko/System.Diagnostics.Tools.xml",
"ref/netcore50/ru/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/System.Diafgnostics.Tools.dll",
"ref/netstandard1.0/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.diagnostics.tools.4.3.0.nupkg.sha512",
"system.diagnostics.tools.nuspec"
]
},
"System.Diagnostics.Tracing/4.3.0": {
"sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
"path": "system.diagnostics.tracing/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.xml",
"ref/netcore50/de/System.Diagnostics.Tracing.xml",
"ref/netcore50/es/System.Diagnostics.Tracing.xml",
"ref/netcore50/fr/System.Diagnostics.Tracing.xml",
"ref/netcore50/it/System.Diagnostics.Tracing.xml",
"ref/netcore50/ja/System.Diagnostics.Tracing.xml",
"ref/netcore50/ko/System.Diagnostics.Tracing.xml",
"ref/netcore50/ru/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/System.Diagnostics.Tracing.dll",
"ref/netstandard1.1/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/System.Diagnostics.Tracing.dll",
"ref/netstandard1.2/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/System.Diagnostics.Tracging.dll",
"ref/netstandard1.3/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/System.Diagnostics.Tracing.dll",
"ref/netstandard1.5/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.diagnostics.tracing.4.3.0.nupkg.sha512",
"system.diagnostics.tracing.nuspec"
]
},
"System.DirectoryServices/4.7.0": {
"sha512": "NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
"type": "package",
"path": "system.directoryservices/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net45/_._",
"lib/netstandard2.0/System.DirectoryServices.dll",
"lib/netstandard2.0/System.DirectoryServices.xml",
"ref/net45/_._",
"ref/netstandard2.0/System.DirectoryServices.dll",
"ref/netstandard2.0/System.DirectoryServices.xml",
"runtimes/win/lib/net45/_._",
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll",
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml",
"system.directoryservices.4.7.0.nupkg.sha512",
"system.directoryservices.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.DirectoryServices.Protocols/4.7.0": {
"sha512": "yy0a+E/yksdoMWfZEmWpI5LuCbJ/E6P5d4QRbqUDj/xC4MV7Vw5DiW3KREA9LFbWedoGx90KikUfSN0xhE1j1g==",
"type": "package",
"path": "system.directoryservices.protocols/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net45/_._",
"lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
"lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
"ref/net45/_._",
"ref/netstandard2.0/System.DirectoryServices.Protocols.dll",
"ref/netstandard2.0/System.DirectoryServices.Protocols.xml",
"runtimes/win/lib/net45/_._",
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll",
"runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml",
"system.directoryservices.protocols.4.7.0.nupkg.sha512",
"system.directoryservices.protocols.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Drawing.Common/4.7.0": {
"sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
"type": "package",
"path": "system.drawing.common/4.7.0",
h "files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.Drawing.Common.dll",
"lib/netstandard2.0/System.Drawing.Common.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net461/System.Drawing.Common.dll",
"ref/netcoreapp3.0/System.Drawing.Common.dll",
"ref/netcoreapp3.0/System.Drawing.Common.xml",
"ref/netstandard2.0/System.Drawing.Common.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
"system.drawing.common.4.7.0.nupkg.sha512",
"system.drawing.common.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Dynamic.Runtime/4.3.0": {
"sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
"path": "system.dynamic.runtime/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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",
i "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",
".signature.p7s",
"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.Calendars/4.3.0": {
"sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
"path": "system.globalization.calendars/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
j "ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.xml",
"ref/netstandard1.3/de/System.Globalization.Calendars.xml",
"ref/netstandard1.3/es/System.Globalization.Calendars.xml",
"ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
"ref/netstandard1.3/it/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.globalization.calendars.4.3.0.nupkg.sha512",
"system.globalization.calendars.nuspec"
]
},
"System.Globalization.Extensions/4.3.0": {
"sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
"path": "system.globalization.extensions/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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.IdentityModel.Tokens.Jwt/6.10.0": {
"sha512": "C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
"type": "package",
"path": "system.identitymodel.tokens.jwt/6.10.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net45/System.IdentityModel.Tokens.Jwt.dll",
"lib/net45/System.IdentityModel.Tokens.Jwt.xml",
"lib/net461/System.IdentityModel.Tokens.Jwt.dll",
"lib/net461/System.IdentityModel.Tokens.Jwt.xml",
"lib/net472k/System.IdentityModel.Tokens.Jwt.dll",
"lib/net472/System.IdentityModel.Tokens.Jwt.xml",
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
"lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
"system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
"system.identitymodel.tokens.jwt.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.Compression/4.3.0": {
"sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
"path": "system.io.compression/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/lnet45/_._",
"lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.xml",
"ref/netcore50/de/System.IO.Compression.xml",
"ref/netcore50/es/System.IO.Compression.xml",
"ref/netcore50/fr/System.IO.Compression.xml",
"ref/netcore50/it/System.IO.Compression.xml",
"ref/netcore50/ja/System.IO.Compression.xml",
"ref/netcore50/ko/System.IO.Compression.xml",
"ref/netcore50/ru/System.IO.Compression.xml",
"ref/netcore50/zh-hans/System.IO.Compression.xml",
"ref/netcore50/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.1/System.IO.Compression.dll",
"ref/netstandard1.1/System.IO.Compression.xml",
"ref/netstandard1.1/de/System.IO.Compression.xml",
"ref/netstandard1.1/es/System.IO.Compression.xml",
"ref/netstandard1.1/fr/System.IO.Compression.xml",
"ref/netstandard1.1/it/System.IO.Compression.xml",
"ref/netstandard1.1/ja/System.IO.Compression.xml",
"ref/netstandard1.1/ko/System.IO.Compression.xml",
"ref/netstandard1.1/ru/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.3/System.IO.Compression.dll",
"ref/netstandard1.3/System.IO.Compression.xml",
"ref/netstandard1.3/de/System.IO.Compression.xml",
"ref/netstandard1.3/es/System.IO.Compression.xml",
"ref/netstandard1.3/fr/System.IO.Compression.xml",
"ref/netstandard1.3/it/System.IO.Compression.xml",
"ref/netstandard1.3/ja/System.IO.Compression.xml",
"ref/netstandard1.3/ko/System.IO.Compression.xml",
"ref/netstandard1.3/ru/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
"runtimes/win/lib/net46/System.IO.Compression.dll",
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
"system.io.compression.4.3.0.nupkg.sha512",
"system.io.compression.nuspec"
]
},
"System.IO.Compression.ZipFile/4.3.0": {
"sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
"path": "system.io.compression.zipfile/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.Compression.ZipFile.dll",
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
"ref/mnetstandard1.3/it/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.io.compression.zipfile.4.3.0.nupkg.sha512",
"system.io.compression.zipfile.nuspec"
]
},
"System.IO.FileSystem/4.3.0": {
"sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
"path": "system.io.filesystem/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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.AccessControl/4.7.0": {
"sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
"type": "package",
"path": "system.io.filesystem.accesscontrol/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net46/System.IO.FileSystem.AccessControl.dll",
"lib/net461/System.IO.FileSystem.AccessControl.dll",
"lib/net461/System.IO.FileSystem.AccessControl.xml",
"lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
"lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
"lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
"ref/net46/System.IO.FileSystem.AccessControl.dll",
"ref/net461/System.IO.FileSystem.AccessControl.dll",
"ref/net461/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
"ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
"ref/netstandard2.0/System.nIO.FileSystem.AccessControl.dll",
"ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
"runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
"runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
"runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
"runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
"runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
"runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
"system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
"system.io.filesystem.accesscontrol.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.IO.FileSystem.Primitives/4.3.0": {
"sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
"path": "system.io.filesystem.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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",
".signature.p7s",
"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-hoant/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.Expressions/4.3.0": {
"sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
"path": "system.linq.expressions/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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/netstpandard1.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.Memory/4.5.4": {
"sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
"type": "package",
"path": "system.memory/4.5.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Memory.dll",
"lib/net461/System.Memory.xml",
"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.4.nupkg.sha512",
"system.memory.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Net.Http/4.3.0": {
"sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
"path": "system.net.http/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/Xamarinmac20/_._",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.Http.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/Xamarinmac20/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.Http.dll",
"ref/net46/System.Net.Http.xml",
"ref/net46/de/System.Net.Http.xml",
"ref/net46/es/System.Net.Http.xml",
"ref/net46/fr/System.Net.Http.xml",
"ref/net46/it/System.Net.Http.xml",
"ref/net46/ja/System.Net.Http.xml",
"ref/net46/ko/System.Net.Http.xml",
"ref/net46/ru/System.Net.Http.xml",
"ref/net46/zh-hans/System.Net.Http.xml",
"ref/net46/zh-hant/System.Net.Http.xml",
"ref/netcore50/System.Net.Http.dll",
"ref/netcore50/System.Net.Http.xml",
"ref/netcore50/de/System.Net.Http.xml",
"ref/netcore50/es/System.Net.Http.xml",
"ref/netcore50/fr/System.Net.Http.xml",
"ref/netcore50/it/System.Net.Http.xml",
"ref/netcore50/ja/System.Net.Http.xml",
"ref/qnetcore50/ko/System.Net.Http.xml",
"ref/netcore50/ru/System.Net.Http.xml",
"ref/netcore50/zh-hans/System.Net.Http.xml",
"ref/netcore50/zh-hant/System.Net.Http.xml",
"ref/netstandard1.1/System.Net.Http.dll",
"ref/netstandard1.1/System.Net.Http.xml",
"ref/netstandard1.1/de/System.Net.Http.xml",
"ref/netstandard1.1/es/System.Net.Http.xml",
"ref/netstandard1.1/fr/System.Net.Http.xml",
"ref/netstandard1.1/it/System.Net.Http.xml",
"ref/netstandard1.1/ja/System.Net.Http.xml",
"ref/netstandard1.1/ko/System.Net.Http.xml",
"ref/netstandard1.1/ru/System.Net.Http.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.xml",
"ref/netstandard1.3/System.Net.Http.dll",
"ref/netstandard1.3/System.Net.Http.xml",
"ref/netstandard1.3/de/System.Net.Http.xml",
"ref/netstandard1.3/es/System.Net.Http.xml",
"ref/netstandard1.3/fr/System.Net.Http.xml",
"ref/netstandard1.3/it/System.Net.Http.xml",
"ref/netstandard1.3/ja/System.Net.Http.xml",
"ref/netstandard1.3/ko/System.Net.Http.xml",
"ref/netstandard1.3/ru/System.Net.Http.xml",
"ref/netstandard1.3/zh-hans/System.Net.Http.xml",
"ref/netstandard1.3/zh-hant/System.Net.Http.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
"runtimes/win/lib/net46/System.Net.Http.dll",
"runtimes/win/lib/netcore50/System.Net.Http.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
"system.net.http.4.3.0.nupkg.sha512",
"system.net.http.nuspec"
]
},
"System.Net.Primitives/4.3.0": {
"sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
"path": "system.net.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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.Net.Primitives.dll",
"ref/netcore50/System.Net.Primitives.xml",
"ref/netcore50/de/System.Net.Primitives.xml",
"ref/netcore50/es/System.Net.Primitives.xml",
"ref/netcore50/fr/System.Net.Primitives.xml",
"ref/netcore50/it/System.Net.Primitives.xml",
"ref/netcore50/ja/System.Net.Primitives.xml",
"ref/netcore50/ko/System.Net.Primitives.xml",
"ref/netcore50/ru/System.Net.Primitives.xml",
"ref/netcore50/zh-hans/System.Net.Primitives.xml",
"ref/netcore50/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.0/System.Net.Primitives.dll",
"ref/netstandard1.0/System.Net.Primitives.xml",
"ref/netstandard1.0/de/System.Net.Primitives.xml",
"ref/netstandard1.0/es/System.Net.Primitives.xml",
"ref/netstandard1.0/fr/System.Net.Primitives.xml",
"ref/netstandard1.0/it/System.Net.Primitives.xml",
"ref/netstandard1.0/ja/System.Net.Primitives.xml",
"ref/netstandard1.0/ko/System.Net.Primitives.xml",
"ref/netstandard1.0/ru/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.1/System.Net.Primitives.dll",
"ref/netstarndard1.1/System.Net.Primitives.xml",
"ref/netstandard1.1/de/System.Net.Primitives.xml",
"ref/netstandard1.1/es/System.Net.Primitives.xml",
"ref/netstandard1.1/fr/System.Net.Primitives.xml",
"ref/netstandard1.1/it/System.Net.Primitives.xml",
"ref/netstandard1.1/ja/System.Net.Primitives.xml",
"ref/netstandard1.1/ko/System.Net.Primitives.xml",
"ref/netstandard1.1/ru/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.3/System.Net.Primitives.dll",
"ref/netstandard1.3/System.Net.Primitives.xml",
"ref/netstandard1.3/de/System.Net.Primitives.xml",
"ref/netstandard1.3/es/System.Net.Primitives.xml",
"ref/netstandard1.3/fr/System.Net.Primitives.xml",
"ref/netstandard1.3/it/System.Net.Primitives.xml",
"ref/netstandard1.3/ja/System.Net.Primitives.xml",
"ref/netstandard1.3/ko/System.Net.Primitives.xml",
"ref/netstandard1.3/ru/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.net.primitives.4.3.0.nupkg.sha512",
"system.net.primitives.nuspec"
]
},
"System.Net.Sockets/4.3.0": {
"sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
"path": "system.net.sockets/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Sockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.xml",
"ref/netstandard1.3/de/System.Net.Sockets.xml",
"ref/netstandard1.3/es/System.Net.Sockets.xml",
"ref/netstandard1.3/fr/System.Net.Sockets.xml",
"ref/netstandard1.3/it/System.Net.Sockets.xml",
"ref/netstandard1.3/ja/System.Net.Sockets.xml",
"ref/netstandard1.3/ko/System.Net.Sockets.xml",
"ref/netstandard1.3/ru/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.net.sockets.4.3.0.nupkg.sha512",
"system.net.sockets.nuspec"
]
},
"System.ObjectModel/4.3.0": {
"sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
"path": "system.objectmodel/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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/_s._",
"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",
"rtef/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",
".signature.p7s",
"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",
".signature.p7s",
"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/wpu80/_._",
"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",
".signature.p7s",
"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",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"vlib/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/5.0.0": {
"sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
"type": "package",
"path": "system.reflection.metadata/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Reflection.Metadata.dll",
"lib/net461/System.Reflection.Metadata.xml",
"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.5.0.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",
".signature.p7s",
"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",
w "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",
".signature.p7s",
"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/rxu/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",
".signature.p7s",
"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/_y._",
"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.Caching/4.7.0": {
"sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
"type": "package",
"path": "system.runtime.caching/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netstandard2.0/System.Runtime.Caching.dll",
"lib/netstandard2.0/System.Runtime.Caching.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/znet45/_._",
"ref/netstandard2.0/System.Runtime.Caching.dll",
"ref/netstandard2.0/System.Runtime.Caching.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/net45/_._",
"runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
"runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
"system.runtime.caching.4.7.0.nupkg.sha512",
"system.runtime.caching.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"type": "package",
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"system.runtime.compilerservices.unsafe.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Runtime.Extensions/4.3.0": {
"sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
"path": "system.runtime.extensions/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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-han{s/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",
".signature.p7s",
"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",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
"lib/net463/System.Runtime.InteropServ|ices.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.InteropServices.RuntimeInformation/4.3.0": {
"sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
"path": "system.runtime.interopservices.runtimeinformation/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
"system.runtime.interopservices.runtimeinformation.nuspec"
]
},
"System.Runtime.Numerics/4.3.0": {
"sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
"path": "system.runtime.numerics/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Numerics.dll",
"lib/netstandard1.3/System.Runtime.Numerics.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/netcore50/System.Runtime.Numerics.dll",
"ref/netcore50/System.Runtime.Numerics.xml",
"ref/netcore50/de/System.Runtime.Numerics.xml",
"ref/netcore50/es/System.Runtime.Numerics.xml",
"ref/netcore50/fr/System.Runtime.Numerics.xml",
"ref/netcore50/it/System.Runtime.Numerics.xml",
"ref/netcore50/ja/System.Runtime.Numerics.xml",
"ref/netcore50/ko/System.Runtime.Numerics.xml",
"ref/netcore50/ru/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
"ref/netstandard1.1/System.Runtime.Numerics.dll",
"ref/netstandard1.1/System.Runtime.Numerics.xml",
"ref/netstandard1.1/de/S~ystem.Runtime.Numerics.xml",
"ref/netstandard1.1/es/System.Runtime.Numerics.xml",
"ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
"ref/netstandard1.1/it/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.runtime.numerics.4.3.0.nupkg.sha512",
"system.runtime.numerics.nuspec"
]
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"type": "package",
"path": "system.runtime.serialization.formatters/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Runtime.Serialization.Formatters.dll",
"lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Runtime.Serialization.Formatters.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
"system.runtime.serialization.formatters.nuspec"
]
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
"path": "system.runtime.serialization.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Runtime.Serialization.Primitives.dll",
"lib/netcore50/System.Runtime.Serialization.Primitives.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.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.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.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.Runtime.Serialization.Primitives.dll",
"system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
"system.runtime.serialization.primitives.nuspec"
]
},
"System.Security.AccessControl/4.7.0": {
"sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
"type": "package",
"path": "system.security.accesscontrol/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net46/System.Security.AccessControl.dll",
"lib/net461/System.Security.AccessControl.dll",
"lib/net461/System.Security.AccessControl.xml",
"lib/netstandard1.3/System.Security.AccessControl.dll",
"lib/netstandard2.0/System.Security.AccessControl.dll",
"lib/netstandard2.0/System.Security.AccessControl.xml",
"lib/uap10.0.16299/_._",
"ref/net46/System.Security.AccessControl.dll",
"ref/net461/System.Security.AccessControl.dll",
"ref/net461/System.Security.AccessControl.xml",
"ref/netstandard1.3/System.Security.AccessControl.dll",
"ref/netstandard1.3/System.Security.AccessControl.xml",
"ref/netstandard1.3/de/System.Security.AccessControl.xml",
"ref/netstandard1.3/es/System.Security.AccessControl.xml",
"ref/netstandard1.3/fr/System.Security.AccessControl.xml",
"ref/netstandard1.3/it/System.Security.AccessControl.xml",
"ref/netstandard1.3/ja/System.Security.AccessControl.xml",
"ref/netstandard1.3/ko/System.Security.AccessControl.xml",
"ref/netstandard1.3/ru/System.Security.AccessControl.xml",
"ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
"ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
"ref/netstandard2.0/System.Security.AccessControl.dll",
"ref/netstandard2.0/System.Security.AccessControl.xml",
"ref/uap10.0.16299/_._",
"runtimes/win/lib/net46/System.Security.AccessControl.dl<00>l",
"runtimes/win/lib/net461/System.Security.AccessControl.dll",
"runtimes/win/lib/net461/System.Security.AccessControl.xml",
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
"runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
"runtimes/win/lib/uap10.0.16299/_._",
"system.security.accesscontrol.4.7.0.nupkg.sha512",
"system.security.accesscontrol.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
"path": "system.security.cryptography.algorithms/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/net461/System.Security.Cryptography.Algorithms.dll",
"lib/net463/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Algorithms.dll",
"ref/net461/System.Security.Cryptography.Algorithms.dll",
"ref/net463/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"system.security.cryptography.algorithms.nuspec"
]
},
"System.Security.Cryptography.Cng/4.5.0": {
"sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"type": "package",
"path": "system.security.cryptography.cng/4.5.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Cng.dll",
"lib/net461/System.Security.Cryptography.Cng.dll",
"lib/net462/System.Security.Cryptography.Cng.dll",
"lib/net47/System.Security.Cryptography.Cng.dll",
"lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
"lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
"lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
"lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
"lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
"lib/uap10.0.16299/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Cng.dll", <00>
"ref/net461/System.Security.Cryptography.Cng.dll",
"ref/net461/System.Security.Cryptography.Cng.xml",
"ref/net462/System.Security.Cryptography.Cng.dll",
"ref/net462/System.Security.Cryptography.Cng.xml",
"ref/net47/System.Security.Cryptography.Cng.dll",
"ref/net47/System.Security.Cryptography.Cng.xml",
"ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
"ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
"ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
"ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
"ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
"ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
"ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
"ref/uap10.0.16299/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/uap10.0.16299/_._",
"system.security.cryptography.cng.4.5.0.nupkg.sha512",
"system.security.cryptography.cng.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Security.Cryptography.Csp/4.3.0": {
"sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
"path": "system.security.cryptography.csp/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Csp.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Csp.dll",
"ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
"runtimes/win/lib/netcore50/_._",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
"system.security.cryptography.csp.4.3.0.nupkg.sha512",
"system.security.cryptography.csp.nuspec"
]
},
"System.Security.Cryptography.Encoding/4.3.0": {
"sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
"path": "system.security.cryptography.encoding/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"re<00>f/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"system.security.cryptography.encoding.nuspec"
]
},
"System.Security.Cryptography.OpenSsl/4.3.0": {
"sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
"path": "system.security.cryptography.openssl/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
"system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"system.security.cryptography.openssl.nuspec"
]
},
"System.Security.Cryptography.Primitives/4.3.0": {
"sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
"path": "system.security.cryptography.primitives/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Primitives.dll",
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"system.security.cryptography.primitives.nuspec"
]
},
"System.Security.Cryptography.ProtectedData/4.7.0": {
"sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
"type": "package",
"path": "system.security.cryptography.protecteddata/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.ProtectedData.dll",
"lib/net461/System.Security.Cryptography.ProtectedData.dll",
"lib/net461/System.Security.Cry<00>ptography.ProtectedData.xml",
"lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.ProtectedData.dll",
"ref/net461/System.Security.Cryptography.ProtectedData.dll",
"ref/net461/System.Security.Cryptography.ProtectedData.xml",
"ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
"ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
"ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
"system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
"system.security.cryptography.protecteddata.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
"path": "system.security.cryptography.x509certificates/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/net461/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.X509Certificates.dll",
"ref/net461/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates<00>.xml",
"ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"system.security.cryptography.x509certificates.nuspec"
]
},
"System.Security.Permissions/4.7.0": {
"sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
"type": "package",
"path": "system.security.permissions/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/System.Security.Permissions.dll",
"lib/net461/System.Security.Permissions.xml",
"lib/netcoreapp3.0/System.Security.Permissions.dll",
"lib/netcoreapp3.0/System.Security.Permissions.xml",
"lib/netstandard2.0/System.Security.Permissions.dll",
"lib/netstandard2.0/System.Security.Permissions.xml",
"ref/net461/System.Security.Permissions.dll",
"ref/net461/System.Security.Permissions.xml",
"ref/netcoreapp3.0/System.Security.Permissions.dll",
"ref/netcoreapp3.0/System.Security.Permissions.xml",
"ref/netstandard2.0/System.Security.Permissions.dll",
"ref/netstandard2.0/System.Security.Permissions.xml",
"system.security.permissions.4.7.0.nupkg.sha512",
"system.security.permissions.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Security.Principal.Windows/4.7.0": {
"sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
"type": "package",
"path": "system.security.principal.windows/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net46/System.Security.Principal.Windows.dll",
"lib/net461/System.Security.Principal.Windows.dll",
"lib/net461/System.Security.Principal.Windows.xml",
"lib/netstandard1.3/System.Security.Principal.Windows.dll",
"lib/netstandard2.0/System.Security.Principal.Windows.dll",
"lib/netstandard2.0/System.Security.Principal.Windows.xml",
"lib/uap10.0.16299/_._",
"ref/net46/System.Security.Principal.Windows.dll",
"ref/net461/System.Security.Principal.Windows.dll",
"ref/net461/System.Security.Principal.Windows.xml",
"ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
"ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/System.Security.Principal.Windows.dll",
"ref/netstandard1.3/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
"ref<00>/netstandard1.3/ja/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
"ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
"ref/netstandard2.0/System.Security.Principal.Windows.dll",
"ref/netstandard2.0/System.Security.Principal.Windows.xml",
"ref/uap10.0.16299/_._",
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
"runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
"runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
"runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
"runtimes/win/lib/uap10.0.16299/_._",
"system.security.principal.windows.4.7.0.nupkg.sha512",
"system.security.principal.windows.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Text.Encoding/4.3.0": {
"sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
"path": "system.text.encoding/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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",
"re<00>f/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/6.0.0": {
"sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
"type": "package",
"path": "system.text.encoding.codepages/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.Text.Encoding.CodePages.dll",
"lib/net461/System.Text.Encoding.CodePages.xml",
"lib/net6.0/System.Text.Encoding.CodePages.dll",
"lib/net6.0/System.Text.Encoding.CodePages.xml",
"lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
"lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
"system.text.encoding.codepages.6.0.0.nupkg.sha512",
"system.text.encoding.codepages.nuspec",
"useSharedDesignerContext.txt"
]
},
"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",
".signature.p7s",
"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.En<00>coding.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/6.0.0": {
"sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
"type": "package",
"path": "system.text.encodings.web/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Text.Encodings.Web.dll",
"lib/net461/System.Text.Encodings.Web.xml",
"lib/net6.0/System.Text.Encodings.Web.dll",
"lib/net6.0/System.Text.Encodings.Web.xml",
"lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
"lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
"lib/netstandard2.0/System.Text.Encodings.Web.dll",
"lib/netstandard2.0/System.Text.Encodings.Web.xml",
"runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
"runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
"system.text.encodings.web.6.0.0.nupkg.sha512",
"system.text.encodings.web.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Text.Json/6.0.5": {
"sha512": "SSH+YYrMpvLcy7Orzb5K1tSyffnFacWahyxCCjYH1PbSHdAF4dekmIetBurFKgtTHDmwEe/J2Csi/7niRH6d/g==",
"type": "package",
"path": "system.text.json/6.0.5",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
"analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
<00> "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
"analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
"build/System.Text.Json.targets",
"buildTransitive/netcoreapp2.0/System.Text.Json.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Text.Json.dll",
"lib/net461/System.Text.Json.xml",
"lib/net6.0/System.Text.Json.dll",
"lib/net6.0/System.Text.Json.xml",
"lib/netcoreapp3.1/System.Text.Json.dll",
"lib/netcoreapp3.1/System.Text.Json.xml",
"lib/netstandard2.0/System.Text.Json.dll",
"lib/netstandard2.0/System.Text.Json.xml",
"system.text.json.6.0.5.nupkg.sha512",
"system.text.json.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Text.RegularExpressions/4.3.0": {
"sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
"path": "system.text.regularexpressions/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"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/Syste<00>m.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/xamarinmac<00>20/_._",
"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",
".signature.p7s",
"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.Task<00>s.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.4": {
"sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
"type": "package",
"path": "system.threading.tasks.extensions/4.5.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net461/System.Threading.Tasks.Extensions.dll",
"lib/net461/System.Threading.Tasks.Extensions.xml",
"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.4.nupkg.sha512",
"system.threading.tasks.extensions.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"System.Threading.Tasks.Parallel/4.3.0": {
"sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
"path": "system.threading.tasks.parallel/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Tasks.Parallel.dll",
"lib/netstandard1.3/System.Threading.Tasks.Parallel.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/netcore50/System.Threading.Tasks.Parallel.dll",
"ref/netcore50/System.Threading.Tasks.Pa<00>rallel.xml",
"ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.threading.tasks.parallel.4.3.0.nupkg.sha512",
"system.threading.tasks.parallel.nuspec"
]
},
"System.Threading.Timer/4.3.0": {
"sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
"path": "system.threading.timer/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/win81/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/_._",
"ref/netcore50/System.Threading.Timer.dll",
"ref/netcore50/System.Threading.Timer.xml",
"ref/netcore50/de/System.Threading.Timer.xml",
"ref/netcore50/es/System.Threading.Timer.xml",
"ref/netcore50/fr/System.Threading.Timer.xml",
"ref/netcore50/it/System.Threading.Timer.xml",
"ref/netcore50/ja/System.Threading.Timer.xml",
"ref/netcore50/ko/System.Threading.Timer.xml",
"ref/netcore50/ru/System.Threading.Timer.xml",
"ref/netcore50/zh-hans/System.Threading.Timer.xml",
"ref/netcore50/zh-hant/System.Threading.Timer.xml",
"ref/netstandard1.2/System.Threading.Timer.dll",
"ref/netstandard1.2/System.Threading.Timer.xml",
"ref/netstandard1.2/de/System.Threading.Timer.xml",
"ref/netstandard1.2/es/System.Threading.Timer.xml",
"ref/netstandard1.2/fr/System.Threading.Timer.xml",
"ref/netstandard1.2/it/System.Threading.Timer.xml",
"ref/netstandard1.2/ja/System.Threading.Timer.xml",
"ref/netstandard1.2/ko/System.Threading.Timer.xml",
"ref/netstandard1.2/ru/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
"ref/portable-net451+win81+wpa81/_._",
"ref/win81/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.threadi<00>ng.timer.4.3.0.nupkg.sha512",
"system.threading.timer.nuspec"
]
},
"System.Windows.Extensions/4.7.0": {
"sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
"type": "package",
"path": "system.windows.extensions/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/netcoreapp3.0/System.Windows.Extensions.dll",
"lib/netcoreapp3.0/System.Windows.Extensions.xml",
"ref/netcoreapp3.0/System.Windows.Extensions.dll",
"ref/netcoreapp3.0/System.Windows.Extensions.xml",
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
"system.windows.extensions.4.7.0.nupkg.sha512",
"system.windows.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",
".signature.p7s",
"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<00>/_._",
"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.XDocument/4.3.0": {
"sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
"path": "system.xml.xdocument/4.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.XDocument.dll",
"lib/netstandard1.3/System.Xml.XDocument.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.Xml.XDocument.dll",
"ref/netcore50/System.Xml.XDocument.xml",
"ref/netcore50/de/System.Xml.XDocument.xml",
"ref/netcore50/es/System.Xml.XDocument.xml",
"ref/netcore50/fr/System.Xml.XDocument.xml",
"ref/netcore50/it/System.Xml.XDocument.xml",
"ref/netcore50/ja/System.Xml.XDocument.xml",
"ref/netcore50/ko/System.Xml.XDocument.xml",
"ref/netcore50/ru/System.Xml.XDocument.xml",
"ref/netcore50/zh-hans/System.Xml.XDocument.xml",
"ref/netcore50/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.0/System.Xml.XDocument.dll",
"ref/netstandard1.0/System.Xml.XDocument.xml",
"ref/netstandard1.0/de/System.Xml.XDocument.xml",
"ref/netstandard1.0/es/System.Xml.XDocument.xml",
"ref/netstandard1.0/fr/System.Xml.XDocument.xml",
"ref/netstandard1.0/it/System.Xml.XDocument.xml",
"ref/netstandard1.0/ja/System.Xml.XDocument.xml",
"ref/netstandard1.0/ko/System.Xml.XDocument.xml",
"ref/netstandard1.0/ru/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.3/System.Xml.XDocument.dll",
"ref/netstandard1.3/System.Xml.XDocument.xml",
"ref/netstandard1.3/de/System.Xml.XDocument.xml",
"ref/netstandard1.3/es/System.Xml.XDocument.xml",
"ref/netstandard1.3/fr/System.Xml.XDocument.xml",
"ref/netstandard1.3/it/System.Xml.XDocument.xml",
"ref/netstandard1.3/ja/System.Xml.XDocument.xml",
"ref/netstandard1.3/ko/System.Xml.XDocument.xml",
"ref/netstandard1.3/ru/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.xml.xdocument.4.3.0.nupkg.sha512",
"system.xml.xdocument.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"
]
},
"FurionApi.Application/1.0.0": {
"type": "project",
"path": "../FurionApi.Application/FurionApi.Application.csproj",
"msbuildProject": "../FurionApi.Application/FurionApi.Application.csproj"
},
"FurionApi.Core/1.0.0": {
"type": "project",
"path": "../FurionApi.Core/FurionApi.Core.csproj",
"msbuildProject": "../FurionApi.Core/FurionApi.Core.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"FurionApi.Application >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\Administrator\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj",
"projectName": "FurionApi.Web.Core",
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj": {
"projectPath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Application\\FurionApi.Application.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}{"name":"project.assets"}.json<03>2022-09-10 20:02:45.122691300000000-0000-0000-0000-0000000000001obj\<00>zers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.codeanalysis.common\\4.2.0\\microsoft.codeanalysis.common.4.2.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.2.0\\microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.1\\microsoft.data.sqlclient.2.1.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite\\5.0.5\\microsoft.data.sqlite.5.0.5.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.0.0\\microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.extensions.dependencymodel\\6.0.0\\microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.10.0\\microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.logging\\6.10.0\\microsoft.identitymodel.logging.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.10.0\\microsoft.identitymodel.protocols.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.10.0\\microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.10.0\\microsoft.identitymodel.tokens.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\newtonsoft.json\\10.0.3\\newtonsoft.json.10.0.3.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\oracle.manageddataaccess.core\\3.21.1\\ora<00>cle.manageddataaccess.core.3.21.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore\\5.0.9.1\\sqlsugarcore.5.0.9.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nu<00>pkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore\\6.3.1\\swashbuckle.aspnetcore.6.3.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.3.1\\swashbuckle.aspnetcore.swagger.6.3.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.3.1\\swashbuckle.aspnetcore.swaggergen.6.3.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.3.1\\swashbuckle.aspnetcore.swaggerui.6.3.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.performancecounter\\4.7.0\\system.diagnostics.performancecounter.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices\\4.7.0\\system.directoryservices.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.directoryservices.protocols\\4.7.0\\system.directoryservices.protocols.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.globalization.ex<00>tensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.10.0\\system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.accesscontrol\\4.7.0\\system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.json\\6.0.5\\system.text.json.6.0.5.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512"
],
"logs": []
}{"name":"project.nuget"}.cache<03>2022-09-10 20:02:45.131766300000000-0000-0000-0000-0000000000001obj\ [<06>[<00>:+K<>'aC U/FurionApi.Web.Core.AssemblyInfo//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("FurionApi.Web.Core")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("FurionApi.Web.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("FurionApi.Web.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// 由 MSBuild WriteCodeFragment 类生成。
{"name":"FurionApi.Web.Core.AssemblyInfo"}.cs<03>2022-09-10 20:02:45.132995100000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>*c<> yC U/.NETCoreApp,Version=v6.0.AssemblyAttributes// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
{"name":".NETCoreApp,Version=v6.0.AssemblyAttributes"}.cs<03>2022-09-10 20:02:45.132676800000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C><>F)'<27><>=C Uproject.nuget{
"version": 2,
"dgSpecHash": "3I8fGWe2x4iC0EO41LW+g4CQjLdPOZNdhBjy+pta2B1U7R8He8QTbqPqaY8bARpTLQX93BLB9KS9/pgePk5B9w==",
"success": true,
"projectFilePath": "E:\\Git\\WebFirst\\SoEasyPlatform\\wwwroot\\template\\Projects\\FurionSqlSugarApi\\FurionApi.Web.Core\\FurionApi.Web.Core.csproj",
"expectedPackageFiles": [
"C:\\Users\\Administrator\\.nuget\\packages\\ben.demystifier\\0.4.1\\ben.demystifier.0.4.1.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\furion.extras.authentication.jwtbearer\\3.6.4\\furion.extras.authentication.jwtbearer.3.6.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\furion.extras.objectmapper.mapster\\3.6.4\\furion.extras.objectmapper.mapster.3.6.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\furion.pure\\3.6.4\\furion.pure.3.6.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\furion.pure.extras.dependencymodel.codeanalysis\\3.6.4\\furion.pure.extras.dependencymodel.codeanalysis.3.6.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\mapster\\7.3.0\\mapster.7.3.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\mapster.dependencyinjection\\1.0.0\\mapster.dependencyinjection.1.0.0.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\6.0.6\\microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.6\\microsoft.aspnetcore.razor.language.6.0.6.nupkg.sha512",
"C:\\Users\\Administrator\\.nuget\\packages\\microsoft.codeanalysis.analy<00> <00>m <0A>
<EFBFBD><07>-<02><00><00>Z37<>)MC U FurionMvc.Application<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionMvc.Application.xml</DocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionMvc.Application.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionMvc.Core\FurionMvc.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Application"}.csproj<03>2022-09-10 20:02:45.142726600000000-0000-0000-0000-0000000000002<30>G2)<29>%?C U FurionMvc.Core<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionMvc.Core</name>
</assembly>
<members>
<member name="T:FurionMvc.Core.DbContext">
<summary>
数据库上下文对象
</summary>
</member>
<member name="F:FurionMvc.Core.DbContext.Instance">
<summary>
SqlSugar 数据库实例
</summary>
</member>
</members>
</doc>
{"name":"FurionMvc.Core"}.xml<03>2022-09-10 20:02:45.141802800000000-0000-0000-0000-0000000000002<30>11)<29>s?C U FurionMvc.Core<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionMvc.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionMvc.Core.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="3.6.8" />
<PackageReference Include="Furion.Pure" Version="3.6.8" />
<PackageReference Include="SqlSugarCore" Version="5.0.9.1" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Core"}.csproj<03>2022-09-10 20:02:45.141486500000000-0000-0000-0000-0000000000002<30>i0<1F>5C U DbContextusing Furion;
using SqlSugar;
using System.Collections.Generic;
namespace FurionMvc.Core
{
/// <summary>
/// 数据库上下文对象
/// </summary>
public static class DbContext
{
/// <summary>
/// SqlSugar 数据库实例
/// </summary>
public static readonly SqlSugarScope Instance = new(
// 读取 appsettings.json 中的 ConnectionConfigs 配置节点
App.GetConfig<List<ConnectionConfig>>("ConnectionConfigs")
, db =>
{
// 这里配置全局事件,比如拦截执行 SQL
});
}
}{"name":"DbContext"}.cs<03>2022-09-10 20:02:45.141023500000000-0000-0000-0000-0000000000002<30>O/k<>{<7B>'C U/FurionApi.Web.Core.GeneratedMSBuildEditorConfigis_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = FurionApi.Web.Core
build_property.ProjectDir = E:\Git\WebFirst\SoEasyPlatform\wwwroot\template\Projects\FurionSqlSugarApi\FurionApi.Web.Core\
{"name":"FurionApi.Web.Core.GeneratedMSBuildEditorConfig"}.editorconfig<03>2022-09-10 20:02:45.137627800000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>K. cyC U/FurionApi.Web.Core.csproj.AssemblyReferenceU{"name":"FurionApi.Web.Core.csproj.AssemblyReference"}.cache<03>2022-09-10 20:02:45.135094500000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>(- ?UC U/FurionApi.Web.Core.assetsPKGA
{"name":"FurionApi.Web.Core.assets"}.cache<03>2022-09-10 20:02:45.133810300000000-0000-0000-0000-0000000000001obj\Debug\net6.0\<5C>e, WamC U/FurionApi.Web.Core.AssemblyInfoInputsc6a3458ad9c874d47585dbe513405431213df57d
{"name":"FurionApi.Web.Core.AssemblyInfoInputs"}.cache<03>2022-09-10 20:02:45.133486800000000-0000-0000-0000-0000000000001obj\Debug\net6.0\ <01><08>|_<01><00>
 amC FurionSqlSugarMvc_FurionMvc.Web.Core业务//修改WebCore.txt模版后, 重新启动程序业务<03>2022-09-10 20:02:45.15207842<EFBFBD> g<01>C FurionSqlSugarMvc_FurionMvc.Application业务//修改IBiz.txt模版后, 重新启动程序
namespace FurionMvc.Application
{
public interface I@(Model.ClassName)Service
{
string Get@(Model.ClassName)();
}
}业务<03>2022-09-10 20:02:45.15090772<EFBFBD> ]<01>C FurionSqlSugarMvc_FurionMvc.Web.EntryWeb//编辑Razor.txt 模版不能出现单个 只能是双的 @@@@ Web<03>2022-09-10 20:02:45.14791312<EFBFBD>f ]<01>-C FurionSqlSugarMvc_FurionMvc.Web.EntryWeb//修改Api.txt模版后, 重新启动程序
using FurionMvc.Application;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Furion.Web.Entry.Controllers
{
[AllowAnonymous]
public class @(Model.ClassName)Controller : Controller
{
private readonly I@(Model.ClassName)Service _service;
public @(Model.ClassName)Controller(I@(Model.ClassName)Service service)
{
_service = service;
}
public IActionResult Index()
{
ViewBag.Description = _service.Get@(Model.ClassName)();
return View();
}
}
}Web<03>2022-09-10 20:02:45.14396672<EFBFBD>$ g<01>C FurionSqlSugarMvc_FurionMvc.Application业务//修改Biz.txt模版后, 重新启动程序
namespace FurionMvc.Application
{
public class @(Model.ClassName)Service : I@(Model.ClassName)Service, ITransient
{
public string Get@(Model.ClassName)()
{
return "让 .NET 开发更简单,更通用,更流行。";
}
}
}业务<03>2022-09-10 20:02:45.14247792<EFBFBD>V
Y <09> C FurionSqlSugarMvc_FurionMvc.Core实体using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace @Model.name_space
{
/// <summary>
/// @((Model.Description+"").Replace("\r","").Replace("\n",""))
///</summary>
[SugarTable("@(Model.TableName)")]
public class @(Model.ClassName)
{
@foreach (var item in Model.PropertyGens)
{
var isPrimaryKey = item.IsPrimaryKey ? ",IsPrimaryKey = true" : "";
var isIdentity = item.IsIdentity ? ",IsIdentity = true" : "";
var isNull=(item.IsNullable&&item.Type!="string"&&item.IsSpecialType==false&&item.Type!="byte[]")?"?":"";
var isIgnore=(item.IsIgnore?",IsIgnore = true":"");
var isJson=(item.CodeType.StartsWith("json")?",IsJson= true":"");
var newPropertyName=item.PropertyName; //这里可以用C#处理 实体属性的显式格式
//想和数据库一样就用 newPropertyName=item.DbColumnName
if(System.Text.RegularExpressions.Regex.IsMatch(newPropertyName.Substring(0,1), "[0-9]"))
{
newPropertyName="_"+newPropertyName;//处理属性名开头为数字情况
}
if(newPropertyName==Model.ClassName)
{
newPropertyName="_"+newPropertyName;//处理属性名不能等于类名
}
var desc=(item.Description+"").Replace("\r","").Replace("\n","");//处理换行
if(isIgnore!="")
{
isPrimaryKey =isIdentity =isNull="";
}
@:/// <summary>
@:/// @(desc)
@if(item.DefaultValue!=null)
{
@:/// 默认值: @Raw(item.DefaultValue)
}
@:///</summary>
@: [SugarColumn(ColumnName="@item.DbColumnName" @(isPrimaryKey) @(isIdentity) @(isIgnore) @(isJson))]
@: public @Raw(item.Type)@isNull @newPropertyName { get; set; }
}
}
}
实体<03>2022-09-10 20:02:45.14053472
g<0E> ^ ' "0<06>O}<01>g<00>v=<1B>1C U'_Layout<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@@ViewData["Title"] - Furion</title>
</head>
<body>
@@RenderBody()
</body>
</html>{"name":"_Layout"}.cshtml<03>2022-09-10 20:02:45.146602100000000-0000-0000-0000-0000000000002Views\Shared\<5C>< !K7C U_ViewStart@@{
Layout = "_Layout";
}{"name":"_ViewStart"}.cshtml<03>2022-09-10 20:02:45.146320500000000-0000-0000-0000-0000000000002Views\<5C>O;%<25>+;C U_ViewImports@@using Furion.Web.Entry
@@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers{"name":"_ViewImports"}.cshtml<03>2022-09-10 20:02:45.146027300000000-0000-0000-0000-0000000000002Views\<5C>T:)<29>'?C U#launchSettings{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:48908",
"sslPort": 44347
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"FurionMvc.Web.Entry": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}{"name":"launchSettings"}.json<03>2022-09-10 20:02:45.145578200000000-0000-0000-0000-0000000000002Properties\<5C>9 I1? U ProgramServe.Run(RunOptions.Default);{"name":"Program"}.cs<03>2022-09-10 20:02:45.1453100000000-0000-0000-0000-0000000000002<30>o83<>[IC U FurionMvc.Web.Entry<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FurionMvc.Web.Core\FurionMvc.Web.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Web.Entry"}.csproj<03>2022-09-10 20:02:45.145032100000000-0000-0000-0000-0000000000002<30>7#<23>%9C U appsettings{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"AllowedHosts": "*",
"ConnectionConfigs": [
{
"ConnectionString": "[ConStr]",
"DbType": "[DbType]",
"IsAutoCloseConnection": true
}
]
}{"name":"appsettings"}.json<03>2022-09-10 20:02:45.144693600000000-0000-0000-0000-0000000000002<30>46;<3B>YQC U appsettings.Development{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}{"name":"appsettings.Development"}.json<03>2022-09-10 20:02:45.144397700000000-0000-0000-0000-0000000000002<30>5%<25>#;C U GlobalUsingsglobal using Furion;
global using Furion.DataEncryption;
global using Furion.DataValidation;
global using Furion.DependencyInjection;
global using Furion.DynamicApiController;
global using Furion.Extensions;
global using Furion.FriendlyException;
global using Mapster;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.CodeAnalysis;
global using SqlSugar;
global using System.ComponentModel.DataAnnotations;
{"name":"GlobalUsings"}.cs<03>2022-09-10 20:02:45.143332600000000-0000-0000-0000-0000000000002<30>47<>1MC U FurionMvc.Application<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionMvc.Application</name>
</assembly>
<members>
</members>
</doc>
{"name":"FurionMvc.Application"}.xml<03>2022-09-10 20:02:45.143036700000000-0000-0000-0000-0000000000002 <00>H C
Q <09>n<05><03><00><00>ZH7<>)MC U FurionMvc.Application<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionMvc.Application.xml</DocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionMvc.Application.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionMvc.Core\FurionMvc.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Application"}.csproj<03>2022-09-10 20:02:45.151128100000000-0000-0000-0000-0000000000002G !+C U+logo<67>PNG

{"name":"logo"}.png<03>2022-09-10 20:02:45.150181600000000-0000-0000-0000-0000000000002wwwroot\images\<5C>vF<1B>1C U'_Layout<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@@ViewData["Title"] - Furion</title>
</head>
<body>
@@RenderBody()
</body>
</html>{"name":"_Layout"}.cshtml<03>2022-09-10 20:02:45.149915300000000-0000-0000-0000-0000000000002Views\Shared\<5C>E !K7A U_ViewStart@@{
Layout = "_Layout";
}{"name":"_ViewStart"}.cshtml<03>2022-09-10 20:02:45.14965600000000-0000-0000-0000-0000000000002Views\<5C>OD%<25>+;C U_ViewImports@@using Furion.Web.Entry
@@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers{"name":"_ViewImports"}.cshtml<03>2022-09-10 20:02:45.149445700000000-0000-0000-0000-0000000000002Views\<5C>TC)<29>'?C U#launchSettings{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:48908",
"sslPort": 44347
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"FurionMvc.Web.Entry": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}{"name":"launchSettings"}.json<03>2022-09-10 20:02:45.149225400000000-0000-0000-0000-0000000000002Properties\<5C> B I1C U ProgramServe.Run(RunOptions.Default);{"name":"Program"}.cs<03>2022-09-10 20:02:45.149012800000000-0000-0000-0000-0000000000002<30>oA3<>[IC U FurionMvc.Web.Entry<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FurionMvc.Web.Core\FurionMvc.Web.Core.csproj" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Web.Entry"}.csproj<03>2022-09-10 20:02:45.148796400000000-0000-0000-0000-0000000000002<30>@#<23>%9C U appsettings{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"AllowedHosts": "*",
"ConnectionConfigs": [
{
"ConnectionString": "[ConStr]",
"DbType": "[DbType]",
"IsAutoCloseConnection": true
}
]
}{"name":"appsettings"}.json<03>2022-09-10 20:02:45.148551500000000-0000-0000-0000-0000000000002<30>4?;<3B>YQC U appsettings.Development{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}{"name":"appsettings.Development"}.json<03>2022-09-10 20:02:45.148332800000000-0000-0000-0000-0000000000002> !+C U+logo<67>PNG

{"name":"logo"}.png<03>2022-09-10 20:02:45.146892400000000-0000-0000-0000-0000000000002wwwroot\images\ <00><0E>] T
<EFBFBD> X"<06><02><01><00><00> s<1D>!3[ 11c:\Projects\FurionSqlSugarMvc\FurionMvc.Application51,52,53[
{
"name": "FurionMvc.Application"
},
{
"name": "FurionMvc.Application"
},
{
"name": "GlobalUsings"
}
]csServices/{0}ServiceFurionSqlSugarMvc_FurionMvc.Application2<6E>n
e<1D> %M 10c:\Projects\FurionSqlSugarMvc\FurionMvc.Core48,49,50[
{
"name": "DbContext"
},
{
"name": "FurionMvc.Core"
},
{
"name": "FurionMvc.Core"
}
]csEntities/{0}FurionSqlSugarMvc_FurionMvc.Core2<65>E me<6D>q U 9c:\Projects\FurionSqlSugarApi\FurionApi.Web.Core33,34,35,36,37,38,39,40,41,42,43,44,45,46,47[
{
"name": "FurionApi.Web.Core"
},
{
"name": "FurionApi.Web.Core"
},
{
"name": "Startup"
},
{
"name": "JwtHandler"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.dgspec"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.g"
},
{
"name": "FurionApi.Web.Core.csproj.nuget.g"
},
{
"name": "project.assets"
},
{
"name": "project.nuget"
},
{
"name": ".NETCoreApp,Version=v6.0.AssemblyAttributes"
},
{
"name": "FurionApi.Web.Core.AssemblyInfo"
},
{
"name": "FurionApi.Web.Core.AssemblyInfoInputs"
},
{
"name": "FurionApi.Web.Core.assets"
},
{
"name": "FurionApi.Web.Core.csproj.AssemblyReference"
},
{
"name": "FurionApi.Web.Core.GeneratedMSBuildEditorConfig"
}
]FurionSqlSugarApi_FurionApi.Web.Core1<65>s)<29>{)[ 8c:\Projects\FurionSqlSugarApi\FurionApi.Application28,29,30,31,32[
{
"name": "applicationsettings"
},
{
"name": "FurionApi.Application"
},
{
"name": "FurionApi.Application"
},
{
"name": "GlobalUsings"
},
{
"name": "FurionApi.Application.csproj.nuget.g"
}
]csIServices/I{0}FurionSqlSugarApi_FurionApi.Application1<6E>3o#<23>c1W 7c:\Projects\FurionSqlSugarApi\FurionApi.Web.Entry24,25,26,27[
{
"name": "appsettings.Development"
},
{
"name": "appsettings"
},
{
"name": "FurionApi.Web.Entry"
},
{
"name": "Program"
}
]csApis/{0}ControllerFurionSqlSugarApi_FurionApi.Web.Entry1<79>s)<29>{3[ 6c:\Projects\FurionSqlSugarApi\FurionApi.Application19,20,21,22,23[
{
"name": "applicationsettings"
},
{
"name": "FurionApi.Application"
},
{
"name": "FurionApi.Application"
},
{
"name": "GlobalUsings"
},
{
"name": "FurionApi.Application.csproj.nuget.g"
}
]csServices/{0}ServiceFurionSqlSugarApi_FurionApi.Application1<6E>oeA<65>_ %M 5c:\Projects\FurionSqlSugarApi\FurionApi.Core10,11,12,13,14,15,16,17,18[
{
"name": "DbContext"
},
{
"name": "FurionApi.Core"
},
{
"name": "FurionApi.Core"
},
{
"name": ".NETCoreApp,Version=v6.0.AssemblyAttributes"
},
{
"name": "FurionApi.Core.AssemblyInfo"
},
{
"name": "FurionApi.Core.AssemblyInfoInputs"
},
{
"name": "FurionApi.Core.assets"
},
{
"name": "FurionApi.Core.csproj.AssemblyReference"
},
{
"name": "FurionApi.Core.GeneratedMSBuildEditorConfig"
}
]csEntities/{0}FurionSqlSugarApi_FurionApi.Core1<65>=<0F> y'Q3E:\Yi\Yi.Framework.Net6\Yi.Framework.ApiMicroservice\Controllers[{ "name":"Yi.Framework.ApiMicroservice.Controllers"}].cs{0}Controller[简单三层]_方案_前端_Sugar1,2<>%<0F> U#Q4E:\Yi\Yi.Framework.Net6\Yi.Framework.Interface\IServiceTemplate[{ "name":"Yi.Framework.Interface"}].csI{0}Service[简单三层]_方案_接口_Sugar<61>[ Q1E:\Yi\Yi.Framework.Net6\Yi.Framework.Model\ModelsTemplate[{ "name":"Yi.Framework.Model.Models"}].cs{0}Entity[简单三层]_方案_实体_Sugar<61> <0F>Q!Q2E:\Yi\Yi.Framework.Net6\Yi.Framework.Service\ServiceTemplate[{ "name":"Yi.Framework.Service"}].cs{0}Service[简单三层]_方案_业务_Sugar1  <09> <0A>
<EFBFBD> <09><00>om<1D>  U 15c:\Projects\FurionSqlSugarMvc\FurionMvc.Web.Core75,76,77[
{
"name": "FurionMvc.Web.Core"
},
{
"name": "FurionMvc.Web.Core"
},
{
"name": "Startup"
}
]FurionSqlSugarMvc_FurionMvc.Web.Core2<65>s<1D>!)[ 14c:\Projects\FurionSqlSugarMvc\FurionMvc.Application72,73,74[
{
"name": "FurionMvc.Application"
},
{
"name": "FurionMvc.Application"
},
{
"name": "GlobalUsings"
}
]csIServices/I{0}FurionSqlSugarMvc_FurionMvc.Application2<6E>z oA<6F>O+W 13c:\Projects\FurionSqlSugarMvc\FurionMvc.Web.Entry63,64,65,66,67,68,69,70,71[
{
"name": "appsettings.Development"
},
{
"name": "appsettings"
},
{
"name": "FurionMvc.Web.Entry"
},
{
"name": "Program"
},
{
"name": "launchSettings"
},
{
"name": "_ViewImports"
},
{
"name": "_ViewStart"
},
{
"name": "_Layout"
},
{
"name": "logo"
}
]cshtmlViews/{0}/IndexFurionSqlSugarMvc_FurionMvc.Web.Entry2<79> oA<6F>O?W 12c:\Projects\FurionSqlSugarMvc\FurionMvc.Web.Entry54,55,56,57,58,59,60,61,62[
{
"name": "appsettings.Development"
},
{
"name": "appsettings"
},
{
"name": "FurionMvc.Web.Entry"
},
{
"name": "Program"
},
{
"name": "launchSettings"
},
{
"name": "_ViewImports"
},
{
"name": "_ViewStart"
},
{
"name": "_Layout"
},
{
"name": "logo"
}
]csControllers/{0}ControllerFurionSqlSugarMvc_FurionMvc.Web.Entry2 <03><0E> ^
 <03><00>5M<1B>1C U Startupusing Furion;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace FurionMvc.Web.Core
{
public class Startup : AppStartup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews()
.AddInjectBase();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseInjectBase();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
}
}{"name":"Startup"}.cs<03>2022-09-10 20:02:45.152891100000000-0000-0000-0000-0000000000002<30>L1<>+GC U FurionMvc.Web.Core<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionMvc.Web.Core</name>
</assembly>
<members>
</members>
</doc>
{"name":"FurionMvc.Web.Core"}.xml<03>2022-09-10 20:02:45.152612700000000-0000-0000-0000-0000000000002<30>AK1<>GC U FurionMvc.Web.Core<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<NoWarn>1701;1702;1591</NoWarn>
<DocumentationFile>FurionMvc.Web.Core.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="FurionMvc.Web.Core.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FurionMvc.Application\FurionMvc.Application.csproj" />
</ItemGroup>
</Project>
{"name":"FurionMvc.Web.Core"}.csproj<03>2022-09-10 20:02:45.152305500000000-0000-0000-0000-0000000000002<30>J%<25>#;C U GlobalUsingsglobal using Furion;
global using Furion.DataEncryption;
global using Furion.DataValidation;
global using Furion.DependencyInjection;
global using Furion.DynamicApiController;
global using Furion.Extensions;
global using Furion.FriendlyException;
global using Mapster;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.CodeAnalysis;
global using SqlSugar;
global using System.ComponentModel.DataAnnotations;
{"name":"GlobalUsings"}.cs<03>2022-09-10 20:02:45.151564200000000-0000-0000-0000-0000000000002<30>I7<>1MC U FurionMvc.Application<?xml version="1.0"?>
<doc>
<assembly>
<name>FurionMvc.Application</name>
</assembly>
<members>
</members>
</doc>
{"name":"FurionMvc.Application"}.xml<03>2022-09-10 20:02:45.151347700000000-0000-0000-0000-0000000000002