diff --git a/Ewide.WorkOrderSys/Entity/Base/BaseEntity.cs b/Ewide.WorkOrderSys/Entity/Base/BaseEntity.cs new file mode 100644 index 0000000..4f1b706 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/Base/BaseEntity.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace Ewide.WorkOrderSys.Entity.Base +{ + /// + /// 基础实体类 + /// + [DataContract] + public abstract partial class BaseEntity + { + //public BaseEntity() + //{ + // //CreateTime = DateTime.Now; + // //LastUpdateTime = DateTime.Now; + // //IsDeleted = 0; + //} + ////[NotUpdateField] + //[Display(Name = "Id")] + //[Column("Id")] + //[DataMember] + //public long Id { get; set; } + + } +} diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TCodeScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TCodeScore.cs new file mode 100644 index 0000000..06d0651 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TCodeScore.cs @@ -0,0 +1,153 @@ + //----------TCodeScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TCodeScore + /// + [Table("TCodeScore")] + public partial class TCodeScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 正确性0-10 + /// + + [Display(Name="正确性0-10")] + [Column("CorrectScore")] + [DataMember] + public decimal CorrectScore {get;set;} + /// + /// 可靠性0-10 + /// + + [Display(Name="可靠性0-10")] + [Column("ReliableScore")] + [DataMember] + public decimal ReliableScore {get;set;} + /// + /// 性能0-10 + /// + + [Display(Name="性能0-10")] + [Column("PerformanceScore")] + [DataMember] + public decimal PerformanceScore {get;set;} + /// + /// 易懂性0-20 + /// + + [Display(Name="易懂性0-20")] + [Column("ComprehendScore")] + [DataMember] + public decimal ComprehendScore {get;set;} + /// + /// 规范性0-50 + /// + + [Display(Name="规范性0-50")] + [Column("StandardScore")] + [DataMember] + public decimal StandardScore {get;set;} + /// + /// 缺陷 + /// + + [Display(Name="缺陷")] + [Column("DefectScore")] + [DataMember] + public decimal DefectScore {get;set;} + /// + /// 优化 + /// + + [Display(Name="优化")] + [Column("OptimizeScore")] + [DataMember] + public decimal OptimizeScore {get;set;} + /// + /// 调整 + /// + + [Display(Name="调整")] + [Column("AdjustmentScore")] + [DataMember] + public decimal AdjustmentScore {get;set;} + /// + /// 总分 + /// + + [Display(Name="总分")] + [Column("TotalScore")] + [DataMember] + public decimal TotalScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Remark")] + [DataMember] + public string Remark {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TCodeScore + /// + public class TCodeScoreMap : EntityTypeConfiguration + { + public TCodeScoreMap() + { + this.ToTable("TCodeScore"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.CorrectScore).HasColumnName("CorrectScore").IsRequired(); + this.Property(t => t.ReliableScore).HasColumnName("ReliableScore").IsRequired(); + this.Property(t => t.PerformanceScore).HasColumnName("PerformanceScore").IsRequired(); + this.Property(t => t.ComprehendScore).HasColumnName("ComprehendScore").IsRequired(); + this.Property(t => t.StandardScore).HasColumnName("StandardScore").IsRequired(); + this.Property(t => t.DefectScore).HasColumnName("DefectScore").IsRequired(); + this.Property(t => t.OptimizeScore).HasColumnName("OptimizeScore").IsRequired(); + this.Property(t => t.AdjustmentScore).HasColumnName("AdjustmentScore").IsRequired(); + this.Property(t => t.TotalScore).HasColumnName("TotalScore").IsRequired(); + this.Property(t => t.Remark).HasColumnName("Remark"); + } + }**/ + + } + + //----------TCodeScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TEachScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TEachScore.cs new file mode 100644 index 0000000..f294c5e --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TEachScore.cs @@ -0,0 +1,82 @@ + //----------TEachScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TEachScore + /// + [Table("TEachScore")] + public partial class TEachScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("TargetID")] + [DataMember] + public string TargetID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("IsSorted")] + [DataMember] + public bool IsSorted {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TEachScore + /// + public class TEachScoreMap : EntityTypeConfiguration + { + public TEachScoreMap() + { + this.ToTable("TEachScore"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.TargetID).HasColumnName("TargetID").IsRequired(); + this.Property(t => t.Sort).HasColumnName("Sort").IsRequired(); + this.Property(t => t.IsSorted).HasColumnName("IsSorted").IsRequired(); + } + }**/ + + } + + //----------TEachScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TEffortDetail.cs b/Ewide.WorkOrderSys/Entity/DataBase/TEffortDetail.cs new file mode 100644 index 0000000..290db01 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TEffortDetail.cs @@ -0,0 +1,135 @@ + //----------TEffortDetail开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TEffortDetail + /// + [Table("TEffortDetail")] + public partial class TEffortDetail: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// TEffort表主键 + /// + + [Display(Name="TEffort表主键")] + [Column("EffortID")] + [DataMember] + public string EffortID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("No")] + [DataMember] + public int? No {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Date")] + [DataMember] + public string Date {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Register")] + [DataMember] + public string Register {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Content")] + [DataMember] + public string Content {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Hours")] + [DataMember] + public decimal? Hours {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Target")] + [DataMember] + public string Target {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Product")] + [DataMember] + public string Product {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Project")] + [DataMember] + public string Project {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TEffortDetail + /// + public class TEffortDetailMap : EntityTypeConfiguration + { + public TEffortDetailMap() + { + this.ToTable("TEffortDetail"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.EffortID).HasColumnName("EffortID"); + this.Property(t => t.No).HasColumnName("No"); + this.Property(t => t.Date).HasColumnName("Date"); + this.Property(t => t.Register).HasColumnName("Register"); + this.Property(t => t.Content).HasColumnName("Content"); + this.Property(t => t.Hours).HasColumnName("Hours"); + this.Property(t => t.Target).HasColumnName("Target"); + this.Property(t => t.Product).HasColumnName("Product"); + this.Property(t => t.Project).HasColumnName("Project"); + } + }**/ + + } + + //----------TEffortDetail结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TEffortScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TEffortScore.cs new file mode 100644 index 0000000..0af94d9 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TEffortScore.cs @@ -0,0 +1,136 @@ + //----------TEffortScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TEffortScore + /// + [Table("TEffortScore")] + public partial class TEffortScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserName")] + [DataMember] + public string UserName {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("EffortCnt")] + [DataMember] + public int EffortCnt {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CntScore")] + [DataMember] + public decimal? CntScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("DetailScore")] + [DataMember] + public decimal? DetailScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CompletedScore")] + [DataMember] + public decimal? CompletedScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("DailyHousrsScore")] + [DataMember] + public decimal? DailyHousrsScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("TotalScore")] + [DataMember] + public decimal? TotalScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Remark")] + [DataMember] + public string Remark {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TEffortScore + /// + public class TEffortScoreMap : EntityTypeConfiguration + { + public TEffortScoreMap() + { + this.ToTable("TEffortScore"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID"); + this.Property(t => t.Sort).HasColumnName("Sort"); + this.Property(t => t.UserID).HasColumnName("UserID"); + this.Property(t => t.UserName).HasColumnName("UserName").IsRequired(); + this.Property(t => t.EffortCnt).HasColumnName("EffortCnt").IsRequired(); + this.Property(t => t.CntScore).HasColumnName("CntScore"); + this.Property(t => t.DetailScore).HasColumnName("DetailScore"); + this.Property(t => t.CompletedScore).HasColumnName("CompletedScore"); + this.Property(t => t.DailyHousrsScore).HasColumnName("DailyHousrsScore"); + this.Property(t => t.TotalScore).HasColumnName("TotalScore"); + this.Property(t => t.Remark).HasColumnName("Remark"); + } + }**/ + + } + + //----------TEffortScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TFinalScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TFinalScore.cs new file mode 100644 index 0000000..c8fe2d2 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TFinalScore.cs @@ -0,0 +1,136 @@ + //----------TFinalScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TFinalScore + /// + [Table("TFinalScore")] + public partial class TFinalScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserName")] + [DataMember] + public string UserName {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("SelfScore")] + [DataMember] + public decimal? SelfScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("EachScore")] + [DataMember] + public decimal? EachScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("EffortScore")] + [DataMember] + public decimal? EffortScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CodeScore")] + [DataMember] + public decimal? CodeScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("HealthScore")] + [DataMember] + public decimal? HealthScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("RewardScore")] + [DataMember] + public decimal RewardScore {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("TotalScore")] + [DataMember] + public decimal TotalScore {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TFinalScore + /// + public class TFinalScoreMap : EntityTypeConfiguration + { + public TFinalScoreMap() + { + this.ToTable("TFinalScore"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.UserName).HasColumnName("UserName").IsRequired(); + this.Property(t => t.SelfScore).HasColumnName("SelfScore"); + this.Property(t => t.EachScore).HasColumnName("EachScore"); + this.Property(t => t.EffortScore).HasColumnName("EffortScore"); + this.Property(t => t.CodeScore).HasColumnName("CodeScore"); + this.Property(t => t.HealthScore).HasColumnName("HealthScore"); + this.Property(t => t.RewardScore).HasColumnName("RewardScore").IsRequired(); + this.Property(t => t.TotalScore).HasColumnName("TotalScore").IsRequired(); + this.Property(t => t.Sort).HasColumnName("Sort").IsRequired(); + } + }**/ + + } + + //----------TFinalScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/THealthScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/THealthScore.cs new file mode 100644 index 0000000..25f7c88 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/THealthScore.cs @@ -0,0 +1,100 @@ + //----------THealthScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:THealthScore + /// + [Table("THealthScore")] + public partial class THealthScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Date")] + [DataMember] + public DateTime Date {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Score")] + [DataMember] + public decimal Score {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Desc")] + [DataMember] + public string Desc {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Images")] + [DataMember] + public string Images {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUser")] + [DataMember] + public string CreateUser {get;set;} + + } + + /** + /// + /// 数据表实体类Map:THealthScore + /// + public class THealthScoreMap : EntityTypeConfiguration + { + public THealthScoreMap() + { + this.ToTable("THealthScore"); + this.HasKey(t => t.ID); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.Date).HasColumnName("Date").IsRequired(); + this.Property(t => t.Score).HasColumnName("Score").IsRequired(); + this.Property(t => t.Desc).HasColumnName("Desc"); + this.Property(t => t.Images).HasColumnName("Images"); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUser).HasColumnName("CreateUser").IsRequired(); + } + }**/ + + } + + //----------THealthScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TLog.cs b/Ewide.WorkOrderSys/Entity/DataBase/TLog.cs new file mode 100644 index 0000000..d9cef11 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TLog.cs @@ -0,0 +1,100 @@ + //----------TLog开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TLog + /// + [Table("TLog")] + public partial class TLog: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Content")] + [DataMember] + public string Content {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUserID")] + [DataMember] + public string CreateUserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("OperateType")] + [DataMember] + public int OperateType {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Primarykey")] + [DataMember] + public string Primarykey {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Browser")] + [DataMember] + public string Browser {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Url")] + [DataMember] + public string Url {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TLog + /// + public class TLogMap : EntityTypeConfiguration + { + public TLogMap() + { + this.ToTable("TLog"); + this.HasKey(t => t.ID); + this.Property(t => t.Content).HasColumnName("Content"); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUserID).HasColumnName("CreateUserID"); + this.Property(t => t.OperateType).HasColumnName("OperateType").IsRequired(); + this.Property(t => t.Primarykey).HasColumnName("Primarykey"); + this.Property(t => t.Browser).HasColumnName("Browser").IsRequired(); + this.Property(t => t.Url).HasColumnName("Url").IsRequired(); + } + }**/ + + } + + //----------TLog结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TRewardScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TRewardScore.cs new file mode 100644 index 0000000..c6245b3 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TRewardScore.cs @@ -0,0 +1,100 @@ + //----------TRewardScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TRewardScore + /// + [Table("TRewardScore")] + public partial class TRewardScore: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Date")] + [DataMember] + public DateTime Date {get;set;} + /// + /// 评分类型1:表扬(加分)2:批评(扣分) + /// + + [Display(Name="评分类型1:表扬(加分)2:批评(扣分)")] + [Column("Type")] + [DataMember] + public int Type {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Score")] + [DataMember] + public decimal Score {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Desc")] + [DataMember] + public string Desc {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUserID")] + [DataMember] + public string CreateUserID {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TRewardScore + /// + public class TRewardScoreMap : EntityTypeConfiguration + { + public TRewardScoreMap() + { + this.ToTable("TRewardScore"); + this.HasKey(t => t.ID); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.Date).HasColumnName("Date").IsRequired(); + this.Property(t => t.Type).HasColumnName("Type").IsRequired(); + this.Property(t => t.Score).HasColumnName("Score").IsRequired(); + this.Property(t => t.Desc).HasColumnName("Desc"); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUserID).HasColumnName("CreateUserID").IsRequired(); + } + }**/ + + } + + //----------TRewardScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TSelfScore.cs b/Ewide.WorkOrderSys/Entity/DataBase/TSelfScore.cs new file mode 100644 index 0000000..16503e7 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TSelfScore.cs @@ -0,0 +1,145 @@ + //----------TSelfScore开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TSelfScore + /// + [Table("TSelfScore")] + public partial class TSelfScore: BaseEntity { + /// + /// 编号 + /// + + [Display(Name="编号")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 任务编号 + /// + + [Display(Name="任务编号")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 用户编号 + /// + + [Display(Name="用户编号")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 本月完成情况总结 + /// + + [Display(Name="本月完成情况总结")] + [Column("SummaryContent")] + [DataMember] + public string SummaryContent {get;set;} + /// + /// 任务完成的优点分析 + /// + + [Display(Name="任务完成的优点分析")] + [Column("AdvantageContent")] + [DataMember] + public string AdvantageContent {get;set;} + /// + /// 需改进方面 + /// + + [Display(Name="需改进方面")] + [Column("InsufficientContent")] + [DataMember] + public string InsufficientContent {get;set;} + /// + /// 下月安排 + /// + + [Display(Name="下月安排")] + [Column("ArrangeContent")] + [DataMember] + public string ArrangeContent {get;set;} + /// + /// 自评 + /// + + [Display(Name="自评")] + [Column("AssessmentContent")] + [DataMember] + public string AssessmentContent {get;set;} + /// + /// 领导评价 + /// + + [Display(Name="领导评价")] + [Column("AppraiseContent")] + [DataMember] + public string AppraiseContent {get;set;} + /// + /// 领导评分 + /// + + [Display(Name="领导评分")] + [Column("AppraiseScore")] + [DataMember] + public decimal? AppraiseScore {get;set;} + /// + /// 评分时间 + /// + + [Display(Name="评分时间")] + [Column("AppraiseTime")] + [DataMember] + public DateTime? AppraiseTime {get;set;} + /// + /// 评分人编号 + /// + + [Display(Name="评分人编号")] + [Column("AppraiseUserID")] + [DataMember] + public string AppraiseUserID {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TSelfScore + /// + public class TSelfScoreMap : EntityTypeConfiguration + { + public TSelfScoreMap() + { + this.ToTable("TSelfScore"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.SummaryContent).HasColumnName("SummaryContent"); + this.Property(t => t.AdvantageContent).HasColumnName("AdvantageContent"); + this.Property(t => t.InsufficientContent).HasColumnName("InsufficientContent"); + this.Property(t => t.ArrangeContent).HasColumnName("ArrangeContent"); + this.Property(t => t.AssessmentContent).HasColumnName("AssessmentContent"); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.AppraiseContent).HasColumnName("AppraiseContent"); + this.Property(t => t.AppraiseScore).HasColumnName("AppraiseScore"); + this.Property(t => t.AppraiseTime).HasColumnName("AppraiseTime"); + this.Property(t => t.AppraiseUserID).HasColumnName("AppraiseUserID"); + } + }**/ + + } + + //----------TSelfScore结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TStage.cs b/Ewide.WorkOrderSys/Entity/DataBase/TStage.cs new file mode 100644 index 0000000..acd3afa --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TStage.cs @@ -0,0 +1,100 @@ + //----------TStage开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TStage + /// + [Table("TStage")] + public partial class TStage: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Year")] + [DataMember] + public int Year {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Month")] + [DataMember] + public int Month {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUser")] + [DataMember] + public string CreateUser {get;set;} + /// + /// 1.已开始,进行中2.已暂停3.已结束 + /// + + [Display(Name="1.已开始,进行中2.已暂停3.已结束")] + [Column("Status")] + [DataMember] + public int Status {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StartTime")] + [DataMember] + public DateTime? StartTime {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("EndTime")] + [DataMember] + public DateTime? EndTime {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TStage + /// + public class TStageMap : EntityTypeConfiguration + { + public TStageMap() + { + this.ToTable("TStage"); + this.HasKey(t => t.ID); + this.Property(t => t.Year).HasColumnName("Year").IsRequired(); + this.Property(t => t.Month).HasColumnName("Month").IsRequired(); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUser).HasColumnName("CreateUser").IsRequired(); + this.Property(t => t.Status).HasColumnName("Status").IsRequired(); + this.Property(t => t.StartTime).HasColumnName("StartTime"); + this.Property(t => t.EndTime).HasColumnName("EndTime"); + } + }**/ + + } + + //----------TStage结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TStageUsers.cs b/Ewide.WorkOrderSys/Entity/DataBase/TStageUsers.cs new file mode 100644 index 0000000..198423d --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TStageUsers.cs @@ -0,0 +1,99 @@ + //----------TStageUsers开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TStageUsers + /// + [Table("TStageUsers")] + public partial class TStageUsers: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("StageID")] + [DataMember] + public string StageID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserName")] + [DataMember] + public string UserName {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("IsOnJob")] + [DataMember] + public bool IsOnJob {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Authority")] + [DataMember] + public int Authority {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("ScoringItem")] + [DataMember] + public int ScoringItem {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TStageUsers + /// + public class TStageUsersMap : EntityTypeConfiguration + { + public TStageUsersMap() + { + this.ToTable("TStageUsers"); + this.HasKey(t => t.ID); + this.Property(t => t.StageID).HasColumnName("StageID").IsRequired(); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.UserName).HasColumnName("UserName").IsRequired(); + this.Property(t => t.IsOnJob).HasColumnName("IsOnJob").IsRequired(); + this.Property(t => t.Authority).HasColumnName("Authority").IsRequired(); + this.Property(t => t.ScoringItem).HasColumnName("ScoringItem").IsRequired(); + } + }**/ + + } + + //----------TStageUsers结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TSystem.cs b/Ewide.WorkOrderSys/Entity/DataBase/TSystem.cs new file mode 100644 index 0000000..91da4cb --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TSystem.cs @@ -0,0 +1,64 @@ + //----------TSystem开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TSystem + /// + [Table("TSystem")] + public partial class TSystem: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 0.关闭1.开启 + /// + + [Display(Name="0.关闭1.开启")] + [Column("Status")] + [DataMember] + public int Status {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("AdminID")] + [DataMember] + public string AdminID {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TSystem + /// + public class TSystemMap : EntityTypeConfiguration + { + public TSystemMap() + { + this.ToTable("TSystem"); + this.HasKey(t => t.ID); + this.Property(t => t.Status).HasColumnName("Status").IsRequired(); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.AdminID).HasColumnName("AdminID").IsRequired(); + } + }**/ + + } + + //----------TSystem结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TUserComments.cs b/Ewide.WorkOrderSys/Entity/DataBase/TUserComments.cs new file mode 100644 index 0000000..df92fa6 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TUserComments.cs @@ -0,0 +1,101 @@ + //----------TUserComments开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TUserComments + /// + [Table("TUserComments")] + public partial class TUserComments: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("ReplayID")] + [DataMember] + public string ReplayID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("ReplayUserID")] + [DataMember] + public string ReplayUserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Content")] + [DataMember] + public string Content {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUserID")] + [DataMember] + public string CreateUserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("Deleted")] + [DataMember] + public bool Deleted {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TUserComments + /// + public class TUserCommentsMap : EntityTypeConfiguration + { + public TUserCommentsMap() + { + this.ToTable("TUserComments"); + this.HasKey(t => t.ID); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.ReplayID).HasColumnName("ReplayID"); + this.Property(t => t.ReplayUserID).HasColumnName("ReplayUserID"); + this.Property(t => t.Content).HasColumnName("Content").IsRequired(); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUserID).HasColumnName("CreateUserID").IsRequired(); + this.Property(t => t.Sort).HasColumnName("Sort").IsRequired(); + this.Property(t => t.Deleted).HasColumnName("Deleted").IsRequired(); + } + }**/ + + } + + //----------TUserComments结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TUserLikes.cs b/Ewide.WorkOrderSys/Entity/DataBase/TUserLikes.cs new file mode 100644 index 0000000..638f03c --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TUserLikes.cs @@ -0,0 +1,64 @@ + //----------TUserLikes开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TUserLikes + /// + [Table("TUserLikes")] + public partial class TUserLikes: BaseEntity { + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("UserID")] + [DataMember] + public string UserID {get;set;} + /// + /// 无描述 + /// + + [Display(Name="无描述")] + [Column("CreateUserID")] + [DataMember] + public string CreateUserID {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TUserLikes + /// + public class TUserLikesMap : EntityTypeConfiguration + { + public TUserLikesMap() + { + this.ToTable("TUserLikes"); + this.HasKey(t => t.ID); + this.Property(t => t.UserID).HasColumnName("UserID").IsRequired(); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUserID).HasColumnName("CreateUserID").IsRequired(); + } + }**/ + + } + + //----------TUserLikes结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/DataBase/TUsers.cs b/Ewide.WorkOrderSys/Entity/DataBase/TUsers.cs new file mode 100644 index 0000000..51b09e2 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/DataBase/TUsers.cs @@ -0,0 +1,181 @@ + //----------TUsers开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:TUsers + /// + [Table("TUsers")] + public partial class TUsers: BaseEntity { + /// + /// 编号 + /// + + [Display(Name="编号")] + [Key] + [Column("ID")] + [DataMember] + public string ID {get;set;} + /// + /// 帐号 + /// + + [Display(Name="帐号")] + [Column("Account")] + [DataMember] + public string Account {get;set;} + /// + /// 密码 + /// + + [Display(Name="密码")] + [Column("Password")] + [DataMember] + public string Password {get;set;} + /// + /// 姓名 + /// + + [Display(Name="姓名")] + [Column("Name")] + [DataMember] + public string Name {get;set;} + /// + /// 手机号 + /// + + [Display(Name="手机号")] + [Column("Phone")] + [DataMember] + public string Phone {get;set;} + /// + /// QQ号 + /// + + [Display(Name="QQ号")] + [Column("QQ")] + [DataMember] + public string QQ {get;set;} + /// + /// 邮箱 + /// + + [Display(Name="邮箱")] + [Column("Email")] + [DataMember] + public string Email {get;set;} + /// + /// 创建人编号 + /// + + [Display(Name="创建人编号")] + [Column("CreateUser")] + [DataMember] + public string CreateUser {get;set;} + /// + /// 头像 + /// + + [Display(Name="头像")] + [Column("Avatar")] + [DataMember] + public string Avatar {get;set;} + /// + /// 说明 + /// + + [Display(Name="说明")] + [Column("Desc")] + [DataMember] + public string Desc {get;set;} + /// + /// 帐号权限1.系统管理员2.管理员4.自评打分管理员8.互评排序管理员16.日志打分管理员32.代码打分管理员64.卫生打分管理员128.额外奖惩管理员256.一般员工 + /// + + [Display(Name="帐号权限1.系统管理员2.管理员4.自评打分管理员8.互评排序管理员16.日志打分管理员32.代码打分管理员64.卫生打分管理员128.额外奖惩管理员256.一般员工")] + [Column("Authority")] + [DataMember] + public int Authority {get;set;} + /// + /// 入职时间 + /// + + [Display(Name="入职时间")] + [Column("EntryDate")] + [DataMember] + public DateTime? EntryDate {get;set;} + /// + /// 是否在职 + /// + + [Display(Name="是否在职")] + [Column("IsOnJob")] + [DataMember] + public bool IsOnJob {get;set;} + /// + /// 离职时间 + /// + + [Display(Name="离职时间")] + [Column("QuitDate")] + [DataMember] + public DateTime? QuitDate {get;set;} + /// + /// 帐号参与打分项1.自评打分2.互评排序4.日志打分8.代码打分16.卫生打分32.额外奖惩 + /// + + [Display(Name="帐号参与打分项1.自评打分2.互评排序4.日志打分8.代码打分16.卫生打分32.额外奖惩")] + [Column("ScoringItem")] + [DataMember] + public int ScoringItem {get;set;} + /// + /// 积分 + /// + + [Display(Name="积分")] + [Column("Points")] + [DataMember] + public int Points {get;set;} + + } + + /** + /// + /// 数据表实体类Map:TUsers + /// + public class TUsersMap : EntityTypeConfiguration + { + public TUsersMap() + { + this.ToTable("TUsers"); + this.HasKey(t => t.ID); + this.Property(t => t.Account).HasColumnName("Account").IsRequired(); + this.Property(t => t.Password).HasColumnName("Password").IsRequired(); + this.Property(t => t.Name).HasColumnName("Name").IsRequired(); + this.Property(t => t.Phone).HasColumnName("Phone"); + this.Property(t => t.QQ).HasColumnName("QQ"); + this.Property(t => t.Email).HasColumnName("Email"); + this.Property(t => t.CreateTime).HasColumnName("CreateTime").IsRequired(); + this.Property(t => t.CreateUser).HasColumnName("CreateUser"); + this.Property(t => t.Avatar).HasColumnName("Avatar"); + this.Property(t => t.Desc).HasColumnName("Desc"); + this.Property(t => t.Authority).HasColumnName("Authority").IsRequired(); + this.Property(t => t.EntryDate).HasColumnName("EntryDate"); + this.Property(t => t.IsOnJob).HasColumnName("IsOnJob").IsRequired(); + this.Property(t => t.QuitDate).HasColumnName("QuitDate"); + this.Property(t => t.ScoringItem).HasColumnName("ScoringItem").IsRequired(); + this.Property(t => t.Points).HasColumnName("Points").IsRequired(); + } + }**/ + + } + + //----------TUsers结束---------- + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/ModelAuto.ttinclude b/Ewide.WorkOrderSys/Entity/ModelAuto.ttinclude new file mode 100644 index 0000000..d1efccb --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/ModelAuto.ttinclude @@ -0,0 +1,131 @@ +<#@ assembly name="System.Core"#> +<#@ assembly name="EnvDTE"#> +<#@ import namespace="System.Collections.Generic"#> +<#@ import namespace="System.IO"#> +<#@ import namespace="System.Text"#> +<#@ import namespace="Microsoft.VisualStudio.TextTemplating"#> + +<#+ + +class Manager +{ + public struct Block { + public String Name; + public int Start, Length; + } + + public List blocks = new List(); + public Block currentBlock; + public Block footerBlock = new Block(); + public Block headerBlock = new Block(); + public ITextTemplatingEngineHost host; + public ManagementStrategy strategy; + public StringBuilder template; + public String OutputPath { get; set; } + + public Manager(ITextTemplatingEngineHost host, StringBuilder template, bool commonHeader) { + this.host = host; + this.template = template; + OutputPath = String.Empty; + strategy = ManagementStrategy.Create(host); + } + + public void StartBlock(String name) { + currentBlock = new Block { Name = name, Start = template.Length }; + } + + public void StartFooter() { + footerBlock.Start = template.Length; + } + + public void EndFooter() { + footerBlock.Length = template.Length - footerBlock.Start; + } + + public void StartHeader() { + headerBlock.Start = template.Length; + } + + public void EndHeader() { + headerBlock.Length = template.Length - headerBlock.Start; + } + + public void EndBlock() { + currentBlock.Length = template.Length - currentBlock.Start; + blocks.Add(currentBlock); + } + + public void Process(bool split,bool isCover=false) { + String header = template.ToString(headerBlock.Start, headerBlock.Length); + String footer = template.ToString(footerBlock.Start, footerBlock.Length); + blocks.Reverse(); + foreach(Block block in blocks) { + String fileName = Path.Combine(OutputPath, block.Name); + if (split) { + String content = header + template.ToString(block.Start, block.Length) + footer; + //if(isCover) + //{ + // strategy.DeleteFile(fileName); + //} + if(isCover||!File.Exists(fileName))//存在则不覆盖 + strategy.CreateFile(fileName, content); + template.Remove(block.Start, block.Length); + } else { + strategy.DeleteFile(fileName); + } + } + } +} + +class ManagementStrategy +{ + internal static ManagementStrategy Create(ITextTemplatingEngineHost host) { + return (host is IServiceProvider) ? new VSManagementStrategy(host) : new ManagementStrategy(host); + } + + internal ManagementStrategy(ITextTemplatingEngineHost host) { } + + internal virtual void CreateFile(String fileName, String content) { + File.WriteAllText(fileName, content); + } + + internal virtual void DeleteFile(String fileName) { + if (File.Exists(fileName)) + File.Delete(fileName); + } +} + +class VSManagementStrategy : ManagementStrategy +{ + private EnvDTE.ProjectItem templateProjectItem; + + internal VSManagementStrategy(ITextTemplatingEngineHost host) : base(host) { + IServiceProvider hostServiceProvider = (IServiceProvider)host; + if (hostServiceProvider == null) + throw new ArgumentNullException("Could not obtain hostServiceProvider"); + + EnvDTE.DTE dte = (EnvDTE.DTE)hostServiceProvider.GetService(typeof(EnvDTE.DTE)); + if (dte == null) + throw new ArgumentNullException("Could not obtain DTE from host"); + + templateProjectItem = dte.Solution.FindProjectItem(host.TemplateFile); + } + + internal override void CreateFile(String fileName, String content) { + base.CreateFile(fileName, content); + ((EventHandler)delegate { templateProjectItem.ProjectItems.AddFromFile(fileName); }).BeginInvoke(null, null, null, null); + } + + internal override void DeleteFile(String fileName) { + ((EventHandler)delegate { FindAndDeleteFile(fileName); }).BeginInvoke(null, null, null, null); + } + + private void FindAndDeleteFile(String fileName) { + foreach(EnvDTE.ProjectItem projectItem in templateProjectItem.ProjectItems) { + if (projectItem.get_FileNames(0) == fileName) { + projectItem.Delete(); + return; + } + } + } +}#> \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/SqlModelTpl.cs b/Ewide.WorkOrderSys/Entity/SqlModelTpl.cs new file mode 100644 index 0000000..b23b535 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/SqlModelTpl.cs @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/Entity/SqlModelTpl.tt b/Ewide.WorkOrderSys/Entity/SqlModelTpl.tt new file mode 100644 index 0000000..01cea12 --- /dev/null +++ b/Ewide.WorkOrderSys/Entity/SqlModelTpl.tt @@ -0,0 +1,370 @@ +<#@ template language="C#" debug="True" hostspecific="True" #> +<#@ output extension=".cs" #> +<#@ assembly name="System.Data" #> +<#@ assembly name="System.Data.DataSetExtensions" #> +<#@ assembly name="$(SolutionDir)lib\EntityFramework.dll" #> +<#@ assembly name="System.xml" #> +<#@ import namespace="System.Collections.Generic" #> +<#@ import namespace="System.Data" #> +<#@ import namespace="System.Linq" #> +<#@ import namespace="System.Data.SqlClient" #> +<#@ include file="ModelAuto.ttinclude"#> + + +<# var manager = new Manager(Host, GenerationEnvironment, true) { OutputPath = Path.GetDirectoryName(Host.TemplateFile)+"/DataBase/"}; #> +<# + string tableClass=""; + //所有表名称 + //string sqlGetTable = "SELECT Name FROM SysObjects Where XType='U' ORDER BY Name"; + DataTable dt = GetDataTable(); + //DataTable dtRelationTable = GetRelationTable(); + //所有表信息 + string selectQuery ="select syscolumns.name,systypes.name,syscolumns.length from syscolumns,systypes where syscolumns.xusertype=systypes.xusertype and syscolumns.id=object_id('@tableName')"; + DataTable datacloumn = new DataTable(); + string primaryKey =""; + #> + +<# + foreach(System.Data.DataRow row in dt.Rows) + { + string objType=row["XType"].ToString().Trim(); + tableClass = GetClassName(row["name"].ToString()); + manager.StartBlock(tableClass+".cs"); + //获取表格 + datacloumn.Clear(); + datacloumn = GetDataTableCloumn(row["name"].ToString()); + primaryKey = GetKey(row["name"].ToString()); + #> + //----------<#=row["name"].ToString()#>开始---------- + + using System; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +//using System.Data.Entity.ModelConfiguration; +using Ewide.WorkOrderSys.Entity.Base; +using System.Runtime.Serialization; + namespace Ewide.WorkOrderSys.Entity + { + /// + /// 数据表实体类:<#= tableClass #> + /// + [Table("<#=tableClass #>")] + public partial class <#= tableClass #><# if(objType=="U"){#>: BaseEntity<#}else{#>: BaseEntity<#}#> + { + <# + List listBaseColumn = new List{"Id","UNID","CreateTime","CreateUserId","LastUpdateTime","IsDeleted","Sort"}; + foreach (DataRow dr in datacloumn.Rows) + { + string columnName=GetFormColumnName(dr["columnname"].ToString(),tableClass); + //if(objType=="U"&&listBaseColumn.Contains(columnName)) + if(listBaseColumn.Contains(columnName)) + continue; + #> + /// + /// <#=dr["comments"].ToString()==""?"无描述": dr["comments"].ToString().Replace("\r","").Replace("\n","").Replace("\"","") #> + /// + + [Display(Name="<#=dr["comments"].ToString()==""?"无描述": dr["comments"].ToString().Replace("\r","").Replace("\n","").Replace("\"","") #>")] + <# + if(dr["columnname"].ToString().ToLower()==primaryKey.ToLower()) + {#>[Key] + <#} + #> + [Column("<#=columnName #>")] + [DataMember] + public <#= objType=="V"?ViewTransFromSqlType(dr["datatype"].ToString(),dr["data_length"].ToString(),dr["nullable"].ToString()):TransFromSqlType(dr["datatype"].ToString(),dr["data_length"].ToString(),dr["nullable"].ToString()) #> <#=columnName#> {get;set;} + <# + } + #> + } + + /** + /// + /// 数据表实体类Map:<#= tableClass #> + /// + public class <#= tableClass #>Map : EntityTypeConfiguration<<#= tableClass #>> + { + public <#= tableClass #>Map() + { + this.ToTable("<#= tableClass #>"); + <# + foreach (DataRow dr in datacloumn.Rows) + { + string columnName=GetFormColumnName(dr["columnname"].ToString(),tableClass); + if(dr["columnname"].ToString()==primaryKey) + {#> + this.HasKey(t => t.<#= columnName #>); + <#} + else + {#> + this.Property(t => t.<#=columnName #>).HasColumnName("<#=columnName #>")<#if(dr["nullable"].ToString()=="0"){#>.IsRequired()<#}#>; + <#} + } + #> + } + }**/ + + } + + //----------<#=tableClass#>结束---------- + + <# manager.EndBlock(); #> + +<# + } #> + +<# + manager.Process(true); +#> + + + <#+ + /// + /// SQL[不完善,需要的自己改造] + /// + /// + /// + public string TransFromSqlType(string type,string data_length,string nullable) + { + if(type.ToLower()=="nvarchar2") + { + return "varchar2"; + } + if(type.ToLower()=="uniqueidentifier") + { + return "Guid"+(nullable=="1"?"?":""); + } + //是主键 且 type是字符串的 改成guid + if((type.ToLower()=="raw"&&data_length=="16")) + { + return "Guid"+(nullable=="1"?"?":""); + } + switch(type.ToLower()) + { + case "int": + case "int32": + case "number": + type="int"+(nullable=="1"?"?":""); + break; + case "varchar": + case "varchar2": + case "text": + case "ntext": + case "nvarchar": + case "longtext": + case "string": + case "raw": + case "nclog": + case "nclob": + case "clob": + type="string"; + break; + case "blob": + type="byte[]"; + break; + case "bit": + case "boolean": + type="bool"; + break; + case "datetime": + case "date": + type="DateTime"+(nullable=="1"?"?":""); + break; + case "bigint": + type="long"; + break; + case "decimal": + type="decimal"+(nullable=="1"?"?":""); + break; + + + + } + return type; + } + public string ViewTransFromSqlType(string type,string data_length,string nullable) + { + if(type.ToLower()=="nvarchar2") + { + return "varchar2"; + } + if(type.ToLower()=="uniqueidentifier") + { + return "Guid?"; + } + //是主键 且 type是字符串的 改成guid + if((type.ToLower()=="raw"&&data_length=="16")) + { + return "Guid?"; + } + switch(type.ToLower()) + { + case "int": + case "int32": + case "number": + type="int?"; + break; + case "varchar": + case "varchar2": + case "text": + case "ntext": + case "nvarchar": + case "longtext": + case "string": + case "raw": + case "nclog": + case "nclob": + case "clob": + type="string"; + break; + case "blob": + type="byte[]"; + break; + case "bit": + case "boolean": + type="bool"; + break; + case "datetime": + case "date": + type="DateTime?"; + break; + case "bigint": + type="long?"; + break; + + + + } + return type; + } + + public string GetFormColumnName(string fieldname,string tablename) + { + if(tablename.StartsWith("PRJ_STAGE_FORM_")){ + return fieldname; + } + return GetClassName(fieldname); + } + public string GetClassName(string tablename) + { + /** + string[] tablestr = tablename.Split('_'); + string rslt = ""; + foreach (var str in tablestr) + { + rslt = rslt + TitleToUpper(str.ToLower()); + } + return rslt; + **/ + return tablename; + } + + + + public string TitleToUpper(string str) + { + if (string.IsNullOrWhiteSpace(str)) + return string.Empty; + + char[] s = str.ToCharArray(); + char c = s[0]; + + if ('a' <= c && c <= 'z') + c = (char)(c & ~0x20); + + s[0] = c; + + return new string(s); + } + + + string connectionstr ="data source=118.178.224.202;initial catalog=CompanyScore_Test;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;"; + + public DataTable GetDataTable() + { + DataTable dtrslt = QueryTable("SELECT Name,XType FROM SysObjects Where XType='U' ORDER BY Name"); + DataTable viewrslt = QueryTable("SELECT Name,XType FROM SysObjects Where XType='V' ORDER BY Name"); + + DataTable rslt = dtrslt.Copy(); + //添加DataTable2的数据 + foreach (DataRow dr in viewrslt.Rows) + { + rslt.ImportRow(dr); + } + + return rslt; + } + + public DataTable QueryTable(string sql) + { + DataSet ds = new DataSet(); + try + { + SqlConnection con = new SqlConnection(connectionstr); + con.Open(); + SqlCommand cmd = new SqlCommand(sql, con); + SqlDataAdapter oda = new SqlDataAdapter(); + oda.SelectCommand = cmd; + oda.Fill(ds); + con.Close(); + } + catch (Exception ee) + { + throw; + } + return ds.Tables[0]; + } + + public DataTable GetDataTableCloumn(string datatable) + { + DataSet ds = new DataSet(); + try + { + SqlConnection con = new SqlConnection(connectionstr); + con.Open(); + SqlCommand cmd = new SqlCommand("select sc.id,sc.name columnname,st.name datatype,sc.length data_length,sc.isnullable nullable,isnull(ep.value,'') comments from syscolumns sc inner join systypes st on sc.xusertype=st.xusertype left join sys.columns c on sc.id=c.object_id and sc.name=c.name left join sys.extended_properties ep on sc.id=ep.major_id and c.column_id=ep.minor_id and ep.class =1 where sc.id=object_id('"+datatable+"')", con); + SqlDataAdapter oda = new SqlDataAdapter(); + oda.SelectCommand = cmd; + oda.Fill(ds); + con.Close(); + } + catch (Exception ee) + { + throw; + } + return ds.Tables[0]; + } + + + public string GetKey(string table) + { + string rslt = ""; + string sql = @"select * from ( select a.name as FieldName,a.isnullable,c.name as FieldType,COLUMNPROPERTY(a.id,a.name,'IsIdentity') as isidentity,PK=case when exists(SELECT 1 FROM sysobjects where xtype='PK' and parent_obj=a.id and name in (SELECT name FROM sysindexes WHERE indid in(SELECT indid FROM sysindexkeys WHERE id = a.id AND colid=a.colid +))) then 'true' else 'false' end from SysColumns a left JOIN systypes c on a.xusertype=c.xusertype where a.id=Object_Id('"+table+"') ) m where PK='true'"; + DataSet ds = new DataSet(); + try + { + using (SqlConnection connection = new SqlConnection(connectionstr)) + { + SqlCommand command = new SqlCommand(sql, connection); + connection.Open(); + SqlDataReader reader; + reader = command.ExecuteReader(); + while (reader.Read()) + { + rslt = reader.GetString(0); + } + reader.Close(); + } + } + catch (Exception ee) + { + + throw; + } + return rslt; + } + + + #> + diff --git a/Ewide.WorkOrderSys/Ewide.WorkOrderSys.csproj b/Ewide.WorkOrderSys/Ewide.WorkOrderSys.csproj new file mode 100644 index 0000000..45ac638 --- /dev/null +++ b/Ewide.WorkOrderSys/Ewide.WorkOrderSys.csproj @@ -0,0 +1,35 @@ + + + + net5.0 + + + + + + + + + + TextTemplatingFileGenerator + SqlModelTpl.cs + + + + + + + + + + True + True + SqlModelTpl.tt + + + + + + + + diff --git a/Ewide.WorkOrderSys/Services/TestService.cs b/Ewide.WorkOrderSys/Services/TestService.cs new file mode 100644 index 0000000..1b4346e --- /dev/null +++ b/Ewide.WorkOrderSys/Services/TestService.cs @@ -0,0 +1,44 @@ +using Dapper; +using Ewide.WorkOrderSys.Entity; +using Furion.DynamicApiController; +using Furion.JsonSerialization; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using Newtonsoft.Json.Linq; +using SqlSugar; +using System; +using System.Threading.Tasks; + +namespace Ewide.WorkOrderSys.Services +{ + [ApiDescriptionSettings(Name = "test")] + public class TestService : IDynamicApiController + { + //private readonly IDapperRepository _dapperRep; + private readonly ISqlSugarRepository repository; + private readonly SqlSugarClient db; + private readonly IJsonSerializerProvider _jsonSerializer; + //public TestService(ISqlSugarRepository sqlSugarRepository, IDapperRepository dapperRep, IJsonSerializerProvider jsonSerializer) + // { //_dapperRep = dapperRep; + public TestService(ISqlSugarRepository sqlSugarRepository, IJsonSerializerProvider jsonSerializer) + { + repository = sqlSugarRepository; + db = repository.Context; + _jsonSerializer = jsonSerializer; + } + [HttpGet("/test/list")] + [Microsoft.AspNetCore.Authorization.AllowAnonymous] + public async Task List([FromQuery] JObject args) + { + var asd = _jsonSerializer.Serialize(new { Id = "1", Name = "ASD", dt = DateTime.Now }); + return await db.Queryable().ToListAsync(); + //return null; + } + [HttpGet("/test/list2")] + [Microsoft.AspNetCore.Authorization.AllowAnonymous] + public async Task List2([FromQuery] JObject args) + { + return await repository.Ado.GetDataTableAsync("select * from TCodeScore"); ; + } + } +} diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.dll new file mode 100644 index 0000000..171973f Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.pdb new file mode 100644 index 0000000..b5e8a32 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.xml new file mode 100644 index 0000000..2ea8b12 --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.Core.xml @@ -0,0 +1,7654 @@ + + + + Ewide.Core + + + + + 缓存配置 + + + + + 缓存类型 + + + + + Redis配置 + + + + + 内存缓存 + + + + + Redis缓存 + + + + + 缓存接口 + + + + + 用于在 key 存在时删除 key + + 键 + + + + 用于在 key 存在时删除 key + + 键 + + + + + 用于在 key 模板存在时删除 + + key模板 + + + + + 检查给定 key 是否存在 + + 键 + + + + + 检查给定 key 是否存在 + + 键 + + + + + 获取指定 key 的值 + + 键 + + + + + 获取指定 key 的值 + + byte[] 或其他类型 + 键 + + + + + 获取指定 key 的值 + + 键 + + + + + 获取指定 key 的值 + + byte[] 或其他类型 + 键 + + + + + 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象 + + 键 + 值 + + + + 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象 + + 键 + 值 + 有效期 + + + + 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象 + + 键 + 值 + + + + + 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象 + + 键 + 值 + 有效期 + + + + + 内存缓存 + + + + + Redis缓存 + + + + + 点选验证码 + + + + + 生成验证码图片 + + + + + + + + + 转换为相对于图片的百分比单位 + + 图片宽高 + 相对于图片的绝对尺寸 + (int:xPercent, int:yPercent) + + + + 加载字体 + + 字体文件路径,包含字体文件名和后缀名 + 大小 + 字形(常规/粗体/斜体/粗斜体) + + + + 随机绘制字符串 + + + + + + + 验证码验证 + + + + + + + 记录正确位置 + + + + + 点击验证码输入参数 + + + + + 验证码类型 + + + + + 坐标点集合 + + + + + Token + + + + + 验证码输出参数 + + + + + 常规验证码 + + + + + 生成验证码图片 + + + + + + + 验证码验证 + + + + + + + 常规验证码输入 + + + + + 验证码类型 + + + + + 验证码字符 + + + + + Token + + + + + 用户Id + + + + + 账号 + + + + + 名称 + + + + + 是否超级管理 + + + + + 默认密码 + + + + + 用户缓存 + + + + + 菜单缓存 + + + + + 权限缓存 + + + + + 数据范围缓存 + + + + + 验证码缓存 + + + + + 区域缓存 + + + + + 所有缓存关键字集合 + + + + + 定时任务缓存 + + + + + 区域代码相关服务 + + + + + 查询 + + + + + + + + + + + + + + 添加区域信息 + + + + + + + 更新区域信息 + + + + + + + 删除区域 + + + + + + + 获取目录树 + + + + + + 自定义实体基类 + + + + + 主键Id + + + + + 创建时间 + + + + + 更新时间 + + + + + 创建者Id + + + + + 创建者名称 + + + + + 修改者Id + + + + + 修改者名称 + + + + + 软删除 + + + + + 系统应用表 + + + + + 名称 + + + + + 编码 + + + + + 图标 + + + + + 图标颜色 + + + + + 是否默认激活(Y-是,N-否),只能有一个系统默认激活 + 用户登录后默认展示此系统菜单 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 排序 + + + + + 父节点就是去掉后面两位 + + + + + 多个区域有多个用户绑定自定义数据 + + + + + 中间表 + + + + + 多个区域有多个角色绑定权限数据 + + + + + 中间表 + + + + + 一个区域有多个组织 + + + + + 代码生成表 + + + + + 作者姓名 + + + + + 是否移除表前缀 + + + + + 生成方式 + + + + + 数据库表名 + + + + + 命名空间 + + + + + 业务名 + + + + + 代码生成字段配置表 + + + + + 代码生成主表ID + + + + + 数据库字段名 + + + + + 字段描述 + + + + + .NET数据类型 + + + + + 作用类型(字典) + + + + + 字典code + + + + + 列表是否缩进(字典) + + + + + 是否必填(字典) + + + + + 是否是查询条件 + + + + + 查询方式 + + + + + 列表显示 + + + + + 增改 + + + + + 主外键 + + + + + 数据库中类型(物理类型) + + + + + 是否通用字段 + + + + + 参数配置表 + + + + + 名称 + + + + + 编码 + + + + + 属性值 + + + + + 是否是系统参数(Y-是,N-否) + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 常量所属分类的编码,来自于“常量的分类”字典 + + + + + 监听实体更改之后 + + + + + + + + + + 字典值表 + + + + + 字典类型Id + + + + + 值 + + + + + 编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 所属类型 + + + + + 字典类型表 + + + + + 父Id + + + + + 父Ids + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 字典数据 + + + + + 员工表 + + + + + 用户Id + + + + + 工号 + + + + + 机构Id + + + + + 机构名称 + + + + + 多对多(职位) + + + + + 多对多中间表(员工-职位) + + + + + 多对多配置关系 + + + + + + + + 员工附属机构职位表 + + + + + 员工Id + + + + + 一对一引用(员工) + + + + + 机构Id + + + + + 一对一引用(机构) + + + + + 职位Id + + + + + 一对一引用(职位) + + + + + 员工职位表 + + + + + 员工Id + + + + + 一对一引用(员工) + + + + + 职位Id + + + + + 一对一引用(职位) + + + + + 文件信息表 + + + + + 文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地) + + + + + 文件仓库 + + + + + 文件名称(上传时候的文件名) + + + + + 文件后缀 + + + + + 文件大小kb + + + + + 文件大小信息,计算后的 + + + + + 存储到bucket的名称(文件唯一标识id) + + + + + 存储路径 + + + + + 系统操作/审计日志表 + + + + + 表名 + + + + + 列名 + + + + + 新值 + + + + + 旧值 + + + + + 操作时间 + + + + + 操作人Id + + + + + 操作人名称 + + + + + 操作方式:新增、更新、删除 + + + + + 操作日志表 + + + + + 名称 + + + + + 操作类型(0其他 1增加 2删除 3编辑)(见LogAnnotionOpTypeEnum) + + + + + 是否执行成功(Y-是,N-否) + + + + + 具体消息 + + + + + IP + + + + + 地址 + + + + + 浏览器 + + + + + 操作系统 + + + + + 请求地址 + + + + + 类名称 + + + + + 方法名称 + + + + + 请求方式(GET POST PUT DELETE) + + + + + 请求参数 + + + + + 返回结果 + + + + + 耗时(毫秒) + + + + + 操作时间 + + + + + 操作人 + + + + + 访问日志表 + + + + + 名称 + + + + + 是否执行成功(Y-是,N-否) + + + + + 具体消息 + + + + + IP + + + + + 地址 + + + + + 浏览器 + + + + + 操作系统 + + + + + 访问类型(字典 1登入 2登出) + + + + + 访问时间 + + + + + 访问人 + + + + + 菜单表 + + + + + 父Id + + + + + 父Ids + + + + + 名称 + + + + + 编码 + + + + + 菜单类型(字典 0目录 1菜单 2按钮) + + + + + 图标 + + + + + 路由地址 + + + + + 组件地址 + + + + + 权限标识 + + + + + 应用分类(应用编码) + + + + + 打开方式(字典 0无 1组件 2内链 3外链) + + + + + 是否可见(Y-是,N-否) + + + + + 内链地址 + + + + + 重定向地址 + + + + + 权重(字典 1系统权重 2业务权重) + + + + + 排序 + + + + + 备注 + + + + + 关联上级菜单显示 0表示不需要关联菜单 1表示关联 仅按钮有效 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 多对多(角色) + + + + + 多对多中间表(用户角色) + + + + + 通知公告表 + + + + + 标题 + + + + + 内容 + + + + + 类型(字典 1通知 2公告) + + + + + 发布人Id + + + + + 发布人姓名 + + + + + 发布机构Id + + + + + 发布机构名称 + + + + + 发布时间 + + + + + 撤回时间 + + + + + 状态(字典 0草稿 1发布 2撤回 3删除) + + + + + 上传文件ids + + + + + 通知公告用户表 + + + + + 通知公告Id + + + + + 用户Id + + + + + 阅读时间 + + + + + 状态(字典 0未读 1已读) + + + + + Oauth登录用户表 + + + + + 第三方平台的用户唯一Id + + + + + 用户授权的token + + + + + 昵称 + + + + + 头像 + + + + + 性别 + + + + + 电话 + + + + + 邮箱 + + + + + 位置 + + + + + 用户网址 + + + + + 所在公司 + + + + + 用户来源 + + + + + 用户备注(各平台中的用户个人介绍) + + + + + 组织机构表 + + + + + 父Id + + + + + 父Ids + + + + + 名称 + + + + + 编码 + + + + + 机构类型 + + + + + 联系人 + + + + + 电话 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 一对一 一个组织对应一个区域代码 + + + + + 多对多(用户) + + + + + 多对多中间表(用户数据范围) + + + + + 多对多(角色) + + + + + 多对多中间表(角色数据范围) + + + + + 职位表 + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 多对多(员工) + + + + + 多对多中间表(员工职位) + + + + + 角色表 + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 数据范围类型(字典 1全部数据 2本部门及以下数据 3本部门数据 4仅本人数据 5自定义数据) + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 多对多(用户) + + + + + 多对多中间表(用户角色) + + + + + 多对多(机构) + + + + + 多对多中间表(角色-机构 数据范围) + + + + + 多对多(菜单) + + + + + 多对多中间表(角色-菜单) + + + + + 配置多对多关系 + + + + + + + + 角色Id + + + + + 角色数据范围表 + + + + + 角色Id + + + + + 一对一引用(系统角色) + + + + + 机构Id + + + + + 一对一引用(系统机构) + + + + + 角色菜单表 + + + + + 角色Id + + + + + 一对一引用(系统用户) + + + + + 菜单Id + + + + + 一对一引用(系统菜单) + + + + + 租户表 + + + + + 名称 + + + + + 主机 + + + + + 电子邮箱 + + + + + 电话 + + + + + 数据库连接 + + + + + 架构 + + + + + 备注 + + + + + 定时任务 + + + + + 任务名称 + + ewide + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + + 开始时间 + + + + + 结束时间 + + null + + + + Cron表达式 + + + + + + 执行次数(默认无限循环) + + 10 + + + + 执行间隔时间,单位秒(如果有Cron,则IntervalSecond失效) + + 5 + + + + 定时器类型 + + + + + 请求url + + + + + 请求参数(Post,Put请求用) + + + + + Headers(可以包含如:Authorization授权认证) + 格式:{"Authorization":"userpassword.."} + + + + + 请求类型 + + 2 + + + + 备注 + + + + + 用户表 + + + + + 账号 + + + + + 密码(采用MD5加密) + + + + + 密码安全级别,在注册和修改密码时生成 + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 + + + + + 邮箱 + + + + + 手机 + + + + + 电话 + + + + + 最后登录IP + + + + + 最后登录时间 + + + + + 管理员类型-超级管理员_1、非管理员_2 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 多对多(角色) + + + + + 多对多中间表(用户-角色) + + + + + 多对多(机构) + + + + + 多对多中间表(用户-机构 数据范围) + + + + + 多对多中间表(用户-区域 数据范围) + + + + + 配置多对多关系 + + + + + + + + 用户Id + + + + + 用户数据范围表 + + + + + 用户Id + + + + + 一对一引用(系统用户) + + + + + 机构Id + + + + + 一对一引用(系统机构) + + + + + 用户角色表 + + + + + 用户Id + + + + + 一对一引用(系统用户) + + + + + 系统角色Id + + + + + 一对一引用(系统角色) + + + + + 账号类型 + + + + + 超级管理员 + + + + + 非管理员 + + + + + 公共状态 + + + + + 正常 + + + + + 停用 + + + + + 删除 + + + + + 全部数据 + + + + + 本部门及以下数据 + + + + + 本部门数据 + + + + + 仅本人数据 + + + + + 自定义数据 + + + + + 本部门所在区域及以下区域 + + + + + 本部门所在区域数据 不包括下面区域 + + + + + 系统错误码 + + + + + 用户名或密码不正确 + + + + + 非法操作!禁止删除自己 + + + + + 记录不存在 + + + + + 账号已存在 + + + + + 旧密码不匹配 + + + + + 新旧密码不可一致 + + + + + 测试数据禁止更改admin密码 + + + + + 数据已存在 + + + + + 数据不存在或含有关联引用,禁止删除 + + + + + 禁止为管理员分配角色 + + + + + 重复数据或记录含有不存在数据 + + + + + 禁止为超级管理员角色分配权限 + + + + + 非法数据 + + + + + Id不能为空 + + + + + 所属机构不在自己的数据范围内 + + + + + 禁止删除超级管理员 + + + + + 禁止修改超级管理员状态 + + + + + 没有权限 + + + + + 账号已冻结 + + + + + 发送验证流程错误 + + + + + 没有可验证方式 + + + + + 验证错误 + + + + + 绑定失败 + + + + + 验证码失效 + + + + + 请不要频繁发送验证码 + + + + + 请不要频繁发送验证码 + + + + + 父机构不存在 + + + + + 当前机构Id不能与父机构Id相同 + + + + + 已有相同组织机构,编码或名称相同 + + + + + 没有权限操作机构 + + + + + 该机构下有员工禁止删除 + + + + + 附属机构下有员工禁止删除 + + + + + 字典类型不存在 + + + + + 字典类型已存在 + + + + + 字典类型下面有字典值禁止删除 + + + + + 字典值已存在 + + + + + 字典值不存在 + + + + + 字典状态错误 + + + + + 菜单已存在 + + + + + 路由地址为空 + + + + + 打开方式为空 + + + + + 权限标识格式为空 + + + + + 权限标识格式错误 + + + + + 权限不存在 + + + + + 父级菜单不能为当前节点,请重新选择父级菜单 + + + + + 不能移动根节点 + + + + + 已存在同名或同编码应用 + + + + + 默认激活系统只能有一个 + + + + + 该应用下有菜单禁止删除 + + + + + 已存在同名或同编码应用 + + + + + 已存在同名或同编码职位 + + + + + 该职位下有员工禁止删除 + + + + + 通知公告状态错误 + + + + + 通知公告删除失败 + + + + + 通知公告编辑失败 + + + + + 文件不存在 + + + + + 已存在同名或同编码参数配置 + + + + + 禁止删除系统参数 + + + + + 已存在同名任务调度 + + + + + 任务调度不存在 + + + + + 演示环境禁止修改数据 + + + + + 已存在同名或同主机租户 + + + + + 该表代码模板已经生成过 + + + + + 已存在同名或同编码项目 + + + + + 已存在相同证件号码人员 + + + + + 检测数据不存在 + + + + + 网络错误 + + + + + 文件存储位置 + + + + + 阿里云 + + + + + 腾讯云 + + + + + minio服务器 + + + + + 本地 + + + + + 性别 + + + + + 男 + + + + + 女 + + + + + 未知 + + + + + 日志操作类型 + + + + + 其它 + + + + + 增加 + + + + + 删除 + + + + + 编辑 + + + + + 更新 + + + + + 查询 + + + + + 详情 + + + + + 树 + + + + + 导入 + + + + + 导出 + + + + + 授权 + + + + + 强退 + + + + + 清空 + + + + + 修改状态 + + + + + 系统菜单类型 + + + + + 无 + + + + + 组件 + + + + + 内链 + + + + + 外链 + + + + + 系统菜单类型 + + + + + 目录 + + + + + 菜单 + + + + + 功能 + + + + + 菜单权重 + + + + + 系统权重 + + + + + 业务权重 + + + + + 通知公告状态 + + + + + 草稿 + + + + + 发布 + + + + + 撤回 + + + + + 删除 + + + + + 通知公告用户状态 + + + + + 未读 + + + + + 已读 + + + + + 查询类型的枚举 + + + + + 等于 + + + + + 模糊 + + + + + 大于 + + + + + 小于 + + + + + 不等于 + + + + + 大于等于 + + + + + 小于等于 + + + + + 不为空 + + + + + 开始于 LIKE Param% + + + + + 结合于 LIKE %Param + + + + + http请求类型 + + + + + 执行内部方法 + + + + + GET请求 + + + + + POST请求 + + + + + PUT请求 + + + + + DELETE请求 + + + + + 菜单激活类型 + + + + + 是 + + + + + 否 + + + + + 查询信息集合 + + + + + 高级查询信息集合 + + + + + 设置查询信息 + + + + + + 字段名 + + + + + 查询多个条件 + + + + + 查询运算符 + + + + + 构造函数 + + + + + 字典扩展 + + + + + 将一个字典转化为 QueryString + + + + + + + + 将一个字符串 URL 编码 + + + + + + + 移除空值项 + + + + + + 通用输入扩展参数(带权限) + + + + + 授权菜单 + + + + + 授权角色 + + + + + 授权数据 + + + + + 授权区域 + + + + + 通用分页输入参数 + + + + + 搜索值 + + + + + 当前页码 + + + + + 页码容量 + + + + + 搜索开始时间 + + + + + 搜索结束时间 + + + + + 排序字段 + + + + + 排序方法,默认升序,否则降序(配合antd前端,约定参数为 Ascend,Dscend) + + + + + 降序排序(不要问我为什么是descend不是desc,前端约定参数就是这样) + + + + + 查询条件 + + + + + 树节点数据范围 (1"只看本级" 2"查看本级及以下") + + + + + 小诺分页列表结果 + + + + + + 规范化RESTful风格返回值 + + + + + 异常返回值 + + + + + + + 处理输出状态码 + + + + + + + + + 成功返回值 + + + + + + + 验证失败返回值 + + + + + + + + + + RESTful风格---XIAONUO返回格式 + + + + + + 执行成功 + + + + + 状态码 + + + + + 错误信息 + + + + + 数据 + + + + + 附加数据 + + + + + 时间戳 + + + + + 全局异常处理 + + + + + 请求日志拦截 + + + + + 使用路由推断 + + + + + + + 用户管理 + + + + + 获取用户信息 + + + + + + + 获取用户信息 + + + + + + 获取用户员工信息 + + + + + + + 获取用户员工信息 + + + + + + 获取用户部门信息 + + + + + + + 获取用户部门信息 + + + + + + 获取用户角色Id列表 + + + + + + + 获取用户角色Id列表 + + + + + + 获取用户角色列表 + + + + + + + 获取用户角色列表 + + + + + + 获取用户可以访问的区域权限 + + + + + + OAuth配置---此结构方便拓展 + + + + + AppId + + + + + Secret Key + + + + + 回调地址 + + + + + 权限范围 + + + + + AccessToken参数 + + + + + 用户标识 + + + + + Token 类型 + + + + + AccessToken + + + + + 用于刷新 AccessToken 的 Token + + + + + 此 AccessToken 对应的权限 + + + + + AccessToken 过期时间 + + + + + 错误的详细描述 + + + + + 获取的Token是否包含错误 + + + + + + + 微信用户参数 + + + + + 用户特权信息,json 数组,如微信沃卡用户为(chinaunicom) + + + + + 获取的用户是否包含错误 + + + + + + + 发起授权 + + + + + + + 获取微信Token + + + + + + + + 获取微信用户基本信息 + + + + + + + + 刷新微信Token + + + + + + + 系统应用参数 + + + + + 名称 + + + + + 编码 + + + + + 图标 + + + + + 图标颜色 + + + + + 是否默认激活(Y-是,N-否),只能有一个系统默认激活 + 用户登录后默认展示此系统菜单 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 排序 + + + + + 名称 + + + + + 编码 + + + + + 图标 + + + + + 图标颜色 + + + + + 应用Id + + + + + 应用Id + + + + + 系统应用参数 + + + + + 应用Id + + + + + 名称 + + + + + 编码 + + + + + 是否默认 + + + + + 排序 + + + + + 系统应用服务 + + + + + 获取用户应用相关信息 + + + + + + + 分页查询系统应用 + + + + + + + 增加系统应用 + + + + + + + 删除系统应用 + + + + + + + 更新系统应用 + + + + + + + 获取系统应用 + + + + + + + 获取系统应用列表 + + + + + + + 设为默认应用 + + + + + + + 修改用户状态 + + + + + + + 添加一个区域 + + + + + + + 删除一个区域 + + + + + + + 根据区域代码获取区域信息 + + 区域代码 + + + + + 更新区域信息 + + + + + + + 获取区域目录树 + + + + + + 登录授权相关服务 + + + + + 用户登录 + + + 默认用户名/密码:admin/admin + + + + + 获取当前登录用户信息 + + + + + + 退出 + + + + + + 获取验证码开关 + + + + + + 获取验证码(默认点选模式) + + + + + + 校验验证码 + + + + + + + 登录输入参数 + + + + + 用户名 + + superAdmin + + + + 密码 + + 123456 + + + + 新密码 + + + + + 确认密码 + + + + + 用户登录输出参数 + + + + + 主键 + + + + + 账号 + + + + + 密码安全级别 + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别(字典 1男 2女) + + + + + 邮箱 + + + + + 手机 + + + + + 电话 + + + + + 管理员类型(0超级管理员 1非管理员) + + + + + 最后登陆IP + + + + + 最后登陆时间 + + + + + 最后登陆地址 + + + + + 最后登陆所用浏览器 + + + + + 最后登陆所用系统 + + + + + 员工信息 + + + + + 具备应用信息 + + + + + 角色信息 + + + + + 权限信息 + + + + + 登录菜单信息---AntDesign版本菜单 + + + + + 数据范围(机构)信息 + + + + + 系统缓存服务 + + + + + 获取数据范围缓存(机构Id集合) + + + + + + + 缓存数据范围(机构Id集合) + + + + + + + + 获取菜单缓存 + + + + + + + + 缓存菜单 + + + + + + + + + 获取权限缓存(按钮) + + + + + + + 缓存权限 + + + + + + + + 获取所有缓存关键字 + + + + + + 删除指定关键字缓存 + + + + + + + 删除某特征关键字缓存 + + + + + + + 设置缓存 + + + + + + + + 获取缓存 + + + + + + + 获取缓存 + + + + + + + + 检查给定 key 是否存在 + + 键 + + + + + 代码生成详细配置服务 + + + + + 代码生成详细配置列表 + + + + + + + 增加 + + + + + + + 删除 + + + + + + + 更新 + + + + + + + 详情 + + + + + + + 批量增加 + + + + + + + 数据类型转显示类型 + + + + + + + 代码生成器服务 + + + + + 分页查询 + + + + + + + 增加 + + + + + + + 删除 + + + + + + + 更新 + + + + + + + 详情 + + + + + + + 获取数据库表(实体)集合 + + + + + + 获取数据表列(实体属性)集合 + + + + + + 代码生成_本地项目 + + + + + + 获取模板文件路径集合 + + + + + + 设置生成文件路径 + + + + + + + 代码生成详细配置参数 + + + + + 主键 + + + + + 代码生成主表ID + + + + + 数据库字段名 + + + + + 字段描述 + + + + + .NET类型 + + + + + 作用类型(字典) + + + + + 字典code + + + + + 列表是否缩进(字典) + + + + + 是否必填(字典) + + + + + 是否是查询条件 + + + + + 查询方式 + + + + + 列表显示 + + + + + 增改 + + + + + 主外键 + + + + + 数据库中类型(物理类型) + + + + + 是否是通用字段 + + + + + 代码生成参数类 + + + + + 作者姓名 + + + + + 类名 + + + + + 是否移除表前缀 + + + + + 生成方式 + + + + + 数据库表名 + + + + + 命名空间 + + + + + 业务名(业务代码包名称) + + + + + 功能名(数据库表名称) + + + + + 数据库表名 + + + + + 业务名(业务代码包名称) + + + + + 命名空间 + + + + + 作者姓名 + + + + + 生成方式 + + + + + 代码生成器Id + + + + + 代码生成器Id + + + + + 代码生成参数类 + + + + + 代码生成器Id + + + + + 作者姓名 + + + + + 类名 + + + + + 是否移除表前缀 + + + + + 生成方式 + + + + + 数据库表名 + + + + + 包名 + + + + + 业务名(业务代码包名称) + + + + + 功能名(数据库表名称) + + + + + 数据库表列 + + + + + 字段名 + + + + + 数据库中类型 + + + + + 字段描述 + + + + + 主外键 + + + + + 数据库表列表参数 + + + + + 表名(字母形式的) + + + + + 创建时间 + + + + + 更新时间 + + + + + 表名称描述(注释)(功能名) + + + + + 参数配置 + + + + + 名称 + + + + + 编码 + + + + + 属性值 + + + + + 是否是系统参数(Y-是,N-否) + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 常量所属分类的编码,来自于“常量的分类”字典 + + + + + 名称 + + + + + 编码 + + + + + 应用Id + + + + + 应用Id + + + + + 系统参数配置服务 + + + + + 分页获取系统参数配置 + + + + + + + 获取系统参数配置列表 + + + + + + + 增加系统参数配置 + + + + + + + 删除系统参数配置 + + + + + + + 更新系统参数配置 + + + + + + + 获取系统参数配置 + + + + + + + 获取配置信息 + + + + + + + 更新配置缓存 + + + + + + + + 获取演示环境开关是否开启,默认为false + + + + + + 获取验证码开关标识 + + + + + + 字典值参数 + + + + + 字典类型Id + + + + + 值 + + + + + 编码 + + + + + 扩展编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 字典类型Id + + + + + 字典类型Id + + + + + 值 + + + + + 编码 + + + + + 字典值Id + + + + + 字典值Id + + + + + 字典值参数 + + + + + 字典Id + + + + + 字典类型与字典值构造的树 + + + + + Id + + + + + 父Id + + + + + 编码-对应字典值的编码 + + + + + 名称-对应字典值的value + + + + + 备注 + + + + + 排序 + + + + + 子节点集合 + + + + + Id + + + + + 父Id + + + + + 名称 + + + + + 值 + + + + + 排序,越小优先级越高 + + + + + 子节点 + + + + + 字典类型参数 + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 父Id + + + + + 名称 + + + + + 编码 + + + + + 编号Id + + + + + Id + + + + + 编码 + + + + + 编码 + + + + + 字典值服务 + + + + + 分页查询字典值 + + + + + + + 获取某个字典类型下字典值列表 + + + + + + 增加字典值 + + + + + + + 删除字典值 + + + + + + + 删除字典值 id数组传入 + + + + + + + 更新字典值 + + + + + + + 字典值详情 + + + + + + + 修改字典值状态 + + + + + + + 根据字典类型Id获取字典值集合 + + + + + + + 删除字典下所有值 + + + + + + 字典类型服务 + + + + + 分页查询字典类型 + + + + + + 获取字典类型列表 + + + + + + 获取字典类型下所有字典值 + + + + + + + + + + + + + + 添加字典类型 + + + + + + + 删除字典类型 + + + + + + + 更新字典类型 + + + + + + + 字典类型详情 + + + + + + + 更新字典类型状态 + + + + + + + 字典类型与字典值构造的字典树 + + + + + + 创建Pids格式 + 如果pid是0顶级节点,pids就是 [0]; + 如果pid不是顶级节点,pids就是 pid菜单的 pids + [pid] + , + + + + + + + 附属机构和职位参数 + + + + + 附属机构id + + + + + 附属机构编码 + + + + + 附属机构名称 + + + + + 附属职位id + + + + + 附属职位编码 + + + + + 附属职位名称 + + + + + 员工信息参数 + + + + + 工号 + + + + + 机构id + + + + + 机构名称 + + + + + 机构与职位信息 + + + + + 职位信息 + + + + + 员工信息参数2 + + + + + 员工Id + + + + + 工号 + + + + + 机构Id + + + + + 机构名称 + + + + + 附属机构 + + + + + 职位集合 + + + + + 员工职位参数 + + + + + 职位Id + + + + + 职位编码 + + + + + 职位名称 + + + + + 员工附属机构和职位服务 + + + + + 保存或编辑附属机构相关信息 + + + + + + 获取附属机构和职位信息 + + + + + + + 根据机构Id判断该附属机构下是否有员工 + + + + + + + 根据职位Id判断该附属职位下是否有员工 + + + + + + + 根据员工Id删除对应的员工-附属信息 + + + + + + + 员工职位服务 + + + + + 增加或编辑员工职位相关信息 + + 员工Id(用户Id) + 职位id集合 + + + + + 获取所属职位信息 + + 员工Id(用户Id) + + + + 根据职位Id判断该职位下是否有员工 + + + + + + + 根据员工Id删除对用的员工-职位信息 + + + + + + + 员工服务 + + + + + 获取用户员工相关信息(包括登录) + + + + + + + 增加或编辑员工相关信息 + + + + + + 修改员工相关机构信息 + + + + + + + + 根据机构Id判断该机构下是否有员工 + + + + + + + 根据员工Id删除对应的员工表信息 + + + + + + + 获取员工机构Id + + + + + + + 上传文件参数 + + + + + 文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地) + + + + + 文件仓库 + + + + + 文件名称(上传时候的文件名) + + + + + 文件后缀 + + + + + 文件大小kb + + + + + 文件大小信息,计算后的 + + + + + 存储到bucket的名称(文件唯一标识id) + + + + + 存储路径 + + + + + 文件Id + + + + + 上传文件参数 + + + + + 文件Id + + + + + 文件服务 + + + + + 分页获取文件列表 + + + + + + + 获取文件列表 + + + + + + + 删除文件 + + + + + + + 获取文件详情 + + + + + + + 预览文件 + + + + + + + 上传文件 + + + + + + + 下载文件 + + + + + + + 上传头像 + + + + + + + 上传文档 + + + + + + + 上传商店图片 + + + + + + + 上传文件 + + + + + + + + 请求日志参数 + + + + + 名称 + + + + + 操作类型(0其他 1增加 2删除 3编辑)(见LogAnnotionOpTypeEnum) + + + + + 是否执行成功(Y-是,N-否) + + + + + 具体消息 + + + + + ip + + + + + 地址 + + + + + 浏览器 + + + + + 操作系统 + + + + + 请求地址 + + + + + 类名称 + + + + + 方法名称 + + + + + 请求方式(GET POST PUT DELETE) + + + + + 请求参数 + + + + + 返回结果 + + + + + 耗时(毫秒) + + + + + 操作时间 + + + + + 操作人 + + + + + 请求日志参数 + + + + + 访问日志参数 + + + + + 名称 + + + + + 是否执行成功(Y-是,N-否) + + + + + 具体消息 + + + + + IP + + + + + 地址 + + + + + 浏览器 + + + + + 操作系统 + + + + + 访问类型(字典 1登入 2登出) + + + + + 访问时间 + + + + + 访问人 + + + + + 访问日志参数 + + + + + 操作日志服务 + + + + + 分页查询操作日志 + + + + + + + 清空操作日志 + + + + + + 访问日志服务 + + + + + 分页查询访问日志 + + + + + + + 清空访问日志 + + + + + + 登录菜单-AntDesign菜单类型 + + + + + id + + + + + 父id + + + + + 路由名称, 必须设置,且不能重名 + + + + + 组件 + + + + + 重定向地址, 访问这个路由时, 自定进行重定向 + + + + + 路由元信息(路由附带扩展信息) + + + + + 路径 + + + + + 控制路由和子路由是否显示在 sidebar + + + + + 打开方式 + + + + + 路由元信息内部类 + + + + + 路由标题, 用于显示面包屑, 页面标题 *推荐设置 + + + + + 图标 + + + + + 是否可见 + + + + + 如需外部打开,增加:_blank + + + + + 内链打开http链接 + + + + + 菜单参数 + + + + + 父Id + + + + + 名称 + + + + + 编码 + + + + + 菜单类型(字典 0目录 1菜单 2按钮) + + + + + 图标 + + + + + 路由地址 + + + + + 组件地址 + + + + + 权限标识 + + + + + 应用分类(应用编码) + + + + + 打开方式(字典 0无 1组件 2内链 3外链) + + + + + 是否可见(Y-是,N-否) + + + + + 内链地址 + + + + + 重定向地址 + + + + + 权重(字典 1系统权重 2业务权重) + + + + + 排序 + + + + + 备注 + + + + + 绑定上级菜单显示 + + + + + 菜单类型(字典 0目录 1菜单 2按钮) + + + + + 打开方式(字典 0无 1组件 2内链 3外链) + + + + + 菜单Id + + + + + 菜单Id + + + + + 父Id + DeleteMenuInput + + + + 应用编码 + DeleteMenuInput + + + + 菜单树(列表形式) + + + + + 菜单Id + + + + + 子节点 + + + + + 菜单树---授权、新增编辑时选择 + + + + + 主键 + + + + + 父Id + + + + + 名称 + + + + + 值 + + + + + 菜单类型 + + + + + 关联显示父级 + + + + + 权限标识 + + + + + 备注 + + + + + 排序,越小优先级越高 + + + + + 子节点 + + + + + 系统菜单服务 + + + + + 获取用户权限(按钮权限标识集合) + + + + + + + 获取用户AntDesign菜单集合 + + + + + + + + 获取用户菜单所属的应用编码集合 + + + + + + + 系统菜单列表(树表) + + + + + + + 创建Pids格式 + 如果pid是0顶级节点,pids就是 [0]; + 如果pid不是顶级节点,pids就是 pid菜单的 pids + [pid] + , + + + + + + + 增加和编辑时检查参数 + + + + + + 增加系统菜单 + + + + + + + 删除系统菜单 + + + + + + + 更新系统菜单 + + + + + + + 获取系统菜单 + + + + + + + 获取系统菜单树,用于新增、编辑时选择上级节点 + + + + + + + 获取系统菜单树,用于给角色授权时选择 + + + + + + + 根据应用编码判断该机构下是否有状态为正常的菜单 + + + + + + + 根据系统应用切换菜单 + + + + + + + 服务器信息服务 + + + + + 获取服务器资源信息 + + + + + + 获取服务器基本参数 + + + + + + 动态获取网络信息 + + + + + + 通知公告参数 + + + + + ID + + + + + 标题 + + + + + 内容 + + + + + 类型(字典 1通知 2公告) + + + + + 发布人Id + + + + + 发布人姓名 + + + + + 发布机构Id + + + + + 发布机构名称 + + + + + 发布时间 + + + + + 撤回时间 + + + + + 状态(字典 0草稿 1发布 2撤回 3删除) + + + + + 系统通知公告详情参数 + + + + + 通知到的用户Id集合 + + + + + 通知到的用户阅读信息集合 + + + + + 上传文件Id集合 + + + + + 用户Id + + + + + 用户名称 + + + + + 状态(字典 0未读 1已读) + + + + + 阅读时间 + + + + + 通知公告参数 + + + + + 标题 + + + + + 内容 + + + + + 类型(字典 1通知 2公告) + + + + + 状态(字典 0草稿 1发布 2撤回 3删除) + + + + + 通知到的人 + + + + + 标题 + + + + + 内容 + + + + + 类型(字典 1通知 2公告) + + + + + 状态(字典 0草稿 1发布 2撤回 3删除) + + + + + 通知到的人 + + + + + 上传文件集合 + + + + + Id + + + + + Id + + + + + 状态(字典 0草稿 1发布 2撤回 3删除) + + + + + 通知公告接收参数 + + + + + 阅读状态(字典 0未读 1已读) + + + + + 阅读时间 + + + + + 通知公告服务 + + + + + 分页查询通知公告 + + + + + + + 增加通知公告 + + + + + + + 删除通知公告 + + + + + + + 更新通知公告 + + + + + + + 获取通知公告详情 + + + + + + + 修改通知公告状态 + + + + + + + 获取接收的通知公告 + + + + + + + 获取接收到的通知公告总数 + + + + + + 更新发布信息 + + + + + + 通知公告用户 + + + + + 增加 + + + + + + + + + 更新 + + + + + + + + + 获取通知公告用户列表 + + + + + + + 设置通知公告读取状态 + + + + + + + + + OAuth服务 + + + + + 微信登录授权 + + + + + 微信登录授权回调 + + + + + + + + + 获取微信用户基本信息 + + + + + + + + 组织机构参数 + + + + + 父Id + + + + + 父Ids + + + + + 名称 + + + + + 编码 + + + + + 机构类型 + + + + + 电话 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 机构所在区域 + + + + + 名称 + + + + + 机构所在区域 + + + + + 机构Id + + + + + 机构Id + + + + + 组织机构参数 + + + + + 机构Id + + + + + 组织机构树 + + + + + Id + + + + + 父Id + + + + + 名称 + + + + + 值 + + + + + 类型 + + + + + 排序,越小优先级越高 + + + + + 子节点 + + + + + 上一级Id + + + + + 根据区域信息获取单位id + + 代表区域范围的类型 + 区域代码 + + + + + 当前区域信息不包括子区域 + + 区域代码 + + + + + 组织机构服务 + + + + + 分页查询组织机构 + + + + + + + (非管理员)获取当前用户数据范围(机构Id) + + + + + + + 获取组织机构列表 + + + + + + + 增加组织机构 + + + + + + + 填充父Ids字段 + + + + + + + 删除组织机构 + + + + + + + 更新组织机构 + + + + + + + 获取组织机构信息 + + + + + + + 根据节点Id获取所有子节点Id集合,包含自己 + + + + + + + 获取组织机构树 + + + + + + 根据数据范围类型获取当前用户的数据范围(机构Id)集合 + + + + + + + + 职位参数 + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 备注 + + + + + 状态(字典 0正常 1停用 2删除) + + + + + 当前页码 + + + + + 页码容量 + + + + + 名称 + + + + + 编码 + + + + + 职位Id + + + + + 职位Id + + + + + 职位服务 + + + + + 分页获取职位 + + + + + + + 获取职位列表 + + + + + + 增加职位 + + + + + + + 删除职位 + + + + + + + 更新职位 + + + + + + + 获取职位 + + + + + + + 角色参数 + + + + + 名称 + + + + + 编码 + + + + + 排序 + + + + + 数据范围类型(字典 1全部数据 2本部门及以下数据 3本部门数据 4仅本人数据 5自定义数据) + + + + + 备注 + + + + + 名称 + + + + + 编码 + + + + + 角色Id + + + + + 角色Id + + + + + 角色Id + + + + + 登录用户角色参数 + + + + + Id + + + + + 编码 + + + + + 名称 + + + + + 角色数据范围服务 + + + + + 授权角色数据范围 + + + + + + + 根据角色Id集合获取角色数据范围集合 + + + + + + + 根据机构Id集合删除对应的角色-数据范围关联信息 + + + + + + + 根据角色Id删除对应的角色-数据范围关联信息 + + + + + + + 角色菜单 + + + + + 获取角色的菜单Id集合 + + + + + + + 授权角色菜单 + + + + + + + 根据菜单Id集合删除对应的角色-菜单表信息 + + + + + + + 根据角色Id删除对应的角色-菜单表关联信息 + + + + + + + 角色服务 + + + + + 获取用户角色相关信息(登录) + + + + + + + 分页获取角色列表 + + + + + + + 获取角色列表 + + + + + + + 角色下拉(用于授权角色时选择) + + + + + + 增加角色 + + + + + + + 删除角色 + + + + + + + 更新角色 + + + + + + + 获取角色 + + + + + + + 授权角色菜单 + + + + + + + 授权角色数据 + + + + + + + 根据角色Id获取角色名称 + + + + + + + 获取角色拥有菜单Id集合 + + + + + + + 获取角色拥有数据Id集合 + + + + + + + 获取角色拥有区域Id集合 + + + + + + + 租户参数 + + + + + 名称 + + + + + 主机 + + + + + 电子邮箱 + + + + + 电话号码 + + + + + 模式 + + + + + 数据库连接 + + + + + 备注 + + + + + 创建时间 + + + + + 租户名称 + + + + + 主机名称 + + + + + 数据库连接 + + + + + 租户Id + + + + + 租户Id + + + + + 租户参数 + + + + + 租户Id + + + + + 名称 + + + + + 主机 + + + + + 电子邮箱 + + + + + 电话号码 + + + + + 模式 + + + + + 数据库连接 + + + + + 备注 + + + + + 创建时间 + + + + + 租户服务 + + + + + 分页查询租户 + + + + + + + 增加租户 + + + + + + + 删除租户 + + + + + + + 更新租户 + + + + + + + 获取租户 + + + + + + + 任务调度参数 + + + + + 任务名称 + + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型(并行、列队) + + + + + 执行间隔时间(单位秒) + + 5 + + + + Cron表达式 + + + + + 定时器类型 + + + + + 请求url + + + + + 请求参数(Post,Put请求用) + + + + + Headers(可以包含如:Authorization授权认证) + 格式:{"Authorization":"userpassword.."} + + + + + 请求类型 + + + + + 备注 + + + + + 任务名称 + + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型(并行、列队) + + + + + 执行间隔时间(单位秒) + + 5 + + + + Cron表达式 + + + + + 定时器类型 + + + + + 请求url + + + + + 请求参数(Post,Put请求用) + + + + + Headers(可以包含如:Authorization授权认证) + 格式:{"Authorization":"userpassword.."} + + + + + 请求类型 + + + + + 备注 + + + + + 任务名称 + + dilon + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型(并行、列队) + + + + + 执行间隔时间(单位秒) + + 5 + + + + Cron表达式 + + + + + + 定时器类型 + + + + + 请求url + + + + + 请求参数(Post,Put请求用) + + + + + Headers(可以包含如:Authorization授权认证) + 格式:{"Authorization":"userpassword.."} + + + + + 请求类型 + + 2 + + + + 备注 + + + + + 任务信息---任务详情 + + + + + Id + + + + + 已执行次数 + + + + + 定时器状态 + + + + + 异常信息 + + + + + 任务名称 + + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型(并行、列队) + + + + + 执行间隔时间(单位秒) + + + + + Cron表达式 + + + + + 定时器类型 + + + + + 请求url + + + + + 请求类型 + + 2 + + + + 备注 + + + + + 任务方法信息 + + + + + 方法名 + + + + + 方法所属类的Type对象 + + + + + 任务名称 + + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型(并行、列队) + + + + + 执行间隔时间(单位秒) + + + + + Cron表达式 + + + + + 定时器类型 + + + + + 请求url + + + + + 请求类型 + + 2 + + + + 备注 + + + + + 任务调度服务 + + + + + 分页获取任务列表 + + + + + + + 获取所有本地任务 + + + + + + 增加任务 + + + + + + + 删除任务 + + + + + + + 修改任务 + + + + + + + 查看任务 + + + + + + + 停止任务 + + + + + + + 启动任务 + + + + + + + 新增定时任务 + + + + + + 启动自启动任务 + + + + + 获取所有本地任务 + + + + + + AuthToken参数 + + + + + OAuth用户参数 + + + + + 用户参数 + + + + + 账号 + + + + + 密码 + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 + + + + + 邮箱 + + + + + 手机 + + + + + 电话 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 员工信息 + + + + + 搜索状态(字典 0正常 1停用 2删除) + + + + + 账号 + + + + + 用户Id + + + + + 用户Id + + + + + 密码 + + + + + 新密码 + + + + + 确认密码 + + + + + 用户参数 + + + + + Id + + + + + 账号 + + + + + 昵称 + + + + + 姓名 + + + + + 头像 + + + + + 生日 + + + + + 性别-男_1、女_2 + + + + + 邮箱 + + + + + 手机 + + + + + 电话 + + + + + 状态-正常_0、停用_1、删除_2 + + + + + 所在机构名称 + + + + + 角色编号 + + + + + 角色名称 + + + + + 员工信息 + + + + + 绑定的值 + + + + + 发送验证码类型,1为发送给原邮箱,2为发送给原手机号 + + + + + 第一次验证码 + + + + + 第二次验证码 + + + + + 用户数据范围服务 + + + + + 授权用户数据 + + + + + + + 根据机构Id集合删除对应的用户-数据范围关联信息 + + + + + + + 根据用户Id删除对应的用户-数据范围关联信息 + + + + + + + 用户角色服务 + + + + + 获取用户的角色Id集合 + + + + + + + 授权用户角色 + + + + + + + 根据角色Id删除对应的用户-角色表关联信息 + + + + + + + 根据用户Id删除对应的用户-角色表关联信息 + + + + + + + 用户服务 + + + + + 分页查询用户 + + + + + + + 增加用户 + + + + + + + 删除用户 + + + + + + + 更新用户 + + + + + + + 查看用户 + + + + + + + 修改用户状态 + + + + + + + 授权用户角色 + + + + + + + 授权用户数据范围 + + + + + + + 更新用户信息 + + + + + + + 修改用户密码 + + + + + + + 获取用户拥有角色 + + + + + + + 获取用户拥有数据 + + + + + + + 获取用户拥有区域 + + + + + + + 重置用户密码 + + + + + + + 修改用户头像(未实现) + + + + + + + 获取用户选择器 + + + + + + + 用户导出(未实现) + + + + + + + 根据用户Id获取用户 + + + + + + + 将OAuth账号转换成账号 + + + + + + + + 检查普通用户数据范围 + + + + + + + 发送验证码 + + + + + 检验验证码并且绑定 + + + + + 获取密码强度配置 + + + + + + + 发送验证码间隔时间(秒) + + + + + 验证code + + + + + 邮箱Code + + + + + 手机Code + + + + + 将code存入缓存 + + 验证方式 + 验证码 + code的类型 + + + + 判断是否含有code + + + + + + + + + 判断是否含有code + + + + + + + + + 删除相应缓存 + + + + + + + code60秒才可再次发送 + + 验证类型 + 值 + + + + + + 发送验证码倒计时 + + + + + + + 发送手机验证码 + + + + + 发送邮箱 + + + + + + + + 检测是否重复 + + + + + + + 邮箱类 + + 发送的信息 + 用户的地址 + + + + XML 文件转成PEM 公钥格式 + + + + + + + + 格式化 + + + + + + + + RSA加密 公钥 + + + + + + + RSA解密 私钥 + + + + + + + + + + XML 要读取的路径 + + + + + 当前程序集 + + + + + 读取文件夹下所有XML + add-migration init -c defaultDbContext 备用数据 + + + + + + 反序列化 + + + XML内容 + + + + + 数据流读取 + + + + + + + 反射 根据类名 反射整个类 得到实例 + + + + + + + 写入XML到磁盘 + + 类型 + 数据 + XML名称 + + + + 要操作的文件夹目录 + + + + + + 根据类名 创建一个XML文件 写入数据 + + + + + + + 写入种子数据 --不常用 + + + + + 获取服务器信息 + + + + + 获取资源使用信息 + + + + + + 获取基本参数 + + + + + + 动态获取网络信息 + + + + + + 是否Linux + + + + + + 获取CPU使用率 + + + + + + 获取系统运行时间 + + + + + + 获取内存信息 + + + + + + 毫秒转天时分秒 + + + + + + + 获取外网IP和地理位置 + + + + + + 系统Shell命令 + + + + + Bash命令 + + + + + + + cmd命令 + + + + + + + + + + + + + 当前正在联网的网卡信息 + + + + + + 获取当前网卡的网络速度 + + + + + + + 树基类 + + + + + 获取节点id + + + + + + 获取节点父id + + + + + + 设置Children + + + + + + 递归工具类,用于遍历有父子关系的节点,例如菜单树,字典树等等 + + + + + + 顶级节点的父节点Id(默认0) + + + + + 构造树节点 + + + + + + + 构造子节点集合 + + + + + + + + 下划线转为驼峰 + + + + + + + + 驼峰转为下划线 + + + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.dll new file mode 100644 index 0000000..72a747a Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.pdb new file mode 100644 index 0000000..c6348a0 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.EntityFramework.Core.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.deps.json b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.deps.json new file mode 100644 index 0000000..4a20062 --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.deps.json @@ -0,0 +1,3351 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Ewide.WorkOrderSys/1.0.0": { + "dependencies": { + "Ewide.Core": "1.0.0", + "Ewide.EntityFramework.Core": "1.0.0" + }, + "runtime": { + "Ewide.WorkOrderSys.dll": {} + } + }, + "aliyun-net-sdk-core/1.5.10": { + "runtime": { + "lib/netstandard2.0/aliyun-net-sdk-core.dll": { + "assemblyVersion": "1.5.10.0", + "fileVersion": "1.5.10.0" + } + } + }, + "Ben.Demystifier/0.4.1": { + "dependencies": { + "System.Reflection.Metadata": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Ben.Demystifier.dll": { + "assemblyVersion": "0.4.0.0", + "fileVersion": "0.4.0.2" + } + } + }, + "BouncyCastle.NetCore/1.8.5": {}, + "CSRedisCore/3.6.6": { + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.ValueTuple": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/CSRedisCore.dll": { + "assemblyVersion": "3.6.6.0", + "fileVersion": "3.6.6.0" + } + } + }, + "Dapper/2.0.78": { + "runtime": { + "lib/net5.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.78.45418" + } + } + }, + "Dapper.Contrib/2.0.78": { + "dependencies": { + "Dapper": "2.0.78" + }, + "runtime": { + "lib/net5.0/Dapper.Contrib.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.78.45418" + } + } + }, + "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { + "dependencies": { + "Ben.Demystifier": "0.4.1", + "Microsoft.AspNetCore.Razor.Language": "5.0.7", + "Microsoft.CodeAnalysis.CSharp": "3.10.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.7", + "Microsoft.Extensions.DependencyModel": "5.0.0" + }, + "runtime": { + "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll": { + "assemblyVersion": "2.12.9.0", + "fileVersion": "2.12.9.0" + } + } + }, + "Furion.Extras.Web.HttpContext/2.12.9": { + "runtime": { + "lib/net5.0/Furion.Extras.Web.HttpContext.dll": { + "assemblyVersion": "2.12.9.0", + "fileVersion": "2.12.9.0" + } + } + }, + "Google.Protobuf/3.14.0": { + "dependencies": { + "System.Memory": "4.5.4", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Google.Protobuf.dll": { + "assemblyVersion": "3.14.0.0", + "fileVersion": "3.14.0.0" + } + } + }, + "K4os.Compression.LZ4/1.1.11": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.1.11.0", + "fileVersion": "1.1.11.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "dependencies": { + "K4os.Compression.LZ4": "1.1.11", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.1.11.0", + "fileVersion": "1.1.11.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "Kendo.DynamicLinqCore/3.1.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Linq.Dynamic.Core": "1.2.2" + }, + "runtime": { + "lib/netstandard2.1/Kendo.DynamicLinqCore.dll": { + "assemblyVersion": "3.1.1.0", + "fileVersion": "3.1.1.0" + } + } + }, + "Mapster/7.2.0": { + "dependencies": { + "Mapster.Core": "1.2.0", + "Microsoft.CSharp": "4.7.0", + "System.Reflection.Emit": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Mapster.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Mapster.Core/1.2.0": { + "runtime": { + "lib/netstandard2.0/Mapster.Core.dll": { + "assemblyVersion": "1.2.0.0", + "fileVersion": "1.2.0.0" + } + } + }, + "Mapster.DependencyInjection/1.0.0": { + "dependencies": { + "Mapster": "7.2.0" + }, + "runtime": { + "lib/netstandard2.0/Mapster.DependencyInjection.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1" + }, + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26309" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.7": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26309" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/3.10.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.1000.21.31005" + } + }, + "resources": { + "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/3.10.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.10.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.1000.21.31005" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.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.7.0": {}, + "Microsoft.Data.Sqlite/2.2.4": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_green": "1.1.12" + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": { + "assemblyVersion": "3.1.6.0", + "fileVersion": "3.100.620.31604" + } + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26102" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26102" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {}, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26102" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/5.0.5": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/5.0.5": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "Microsoft.DotNet.PlatformAbstractions": "3.1.6", + "Microsoft.EntityFrameworkCore.Relational": "5.0.7", + "Microsoft.Extensions.DependencyModel": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "5.0.5.0", + "fileVersion": "5.0.521.16102" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {}, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0" + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": {}, + "Microsoft.Extensions.Options/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.Configuration.Binder": "2.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + } + }, + "Microsoft.Extensions.Primitives/5.0.0": {}, + "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "Microsoft.IdentityModel.Logging/6.7.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.7.1", + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.7.1", + "System.IdentityModel.Tokens.Jwt": "6.7.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.7.1": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.7.1", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.Win32.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "MiniProfiler.AspNetCore/4.2.22": { + "dependencies": { + "MiniProfiler.Shared": "4.2.22", + "System.Text.Json": "4.6.0" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "dependencies": { + "MiniProfiler.AspNetCore": "4.2.22" + }, + "runtime": { + "lib/netcoreapp3.0/MiniProfiler.AspNetCore.Mvc.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MiniProfiler.Shared/4.2.22": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Newtonsoft.Json": "12.0.3", + "System.ComponentModel.Primitives": "4.3.0", + "System.Data.Common": "4.3.0", + "System.Diagnostics.DiagnosticSource": "5.0.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" + }, + "runtime": { + "lib/netstandard2.0/MiniProfiler.Shared.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.2.22.25413" + } + } + }, + "MySql.Data/8.0.25": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.14.0", + "K4os.Compression.LZ4": "1.1.11", + "K4os.Compression.LZ4.Streams": "1.1.11", + "K4os.Hash.xxHash": "1.0.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/net5.0/MySql.Data.dll": { + "assemblyVersion": "8.0.25.0", + "fileVersion": "8.0.25.0" + }, + "lib/net5.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net5.0/Zstandard.Net.dll": { + "assemblyVersion": "1.1.7.0", + "fileVersion": "1.1.7.0" + } + } + }, + "MySqlConnector/1.1.0": { + "runtime": { + "lib/net5.0/MySqlConnector.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "NETStandard.Library/1.6.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.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.0.1", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "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.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.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.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/12.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.3.23909" + } + } + }, + "Npgsql/4.1.3.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/Npgsql.dll": { + "assemblyVersion": "4.1.3.1", + "fileVersion": "4.1.3.1" + } + } + }, + "Oracle.ManagedDataAccess.Core/2.18.3": { + "runtime": { + "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": { + "assemblyVersion": "2.0.18.3", + "fileVersion": "2.0.18.3" + } + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "5.0.7", + "MySqlConnector": "1.1.0" + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Portable.BouncyCastle/1.8.10": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.10.0", + "fileVersion": "1.8.10.1" + } + } + }, + "Quartz/3.3.2": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": { + "assemblyVersion": "3.3.2.0", + "fileVersion": "3.3.2.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, + "Serilog.AspNetCore/4.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Extensions.Hosting/4.1.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.2.0" + } + } + }, + "Serilog.Extensions.Logging/3.0.1": { + "dependencies": { + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.0.1.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "5.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Sinks.Console/3.1.1": { + "dependencies": { + "Serilog": "2.10.0", + "System.Console": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "runtime": { + "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": { + "assemblyVersion": "3.1.1.0", + "fileVersion": "3.1.1.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.10.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.File/4.1.0": { + "dependencies": { + "Serilog": "2.10.0", + "System.IO.FileSystem": "4.3.0", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading.Timer": "4.0.1" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.bundle_green/1.1.12": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12", + "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12", + "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12", + "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12" + }, + "runtime": { + "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": { + "assemblyVersion": "1.1.12.351", + "fileVersion": "1.0.0.0" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": { + "runtimeTargets": { + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": { + "runtimeTargets": { + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win8-arm/native/e_sqlite3.dll": { + "rid": "win8-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": { + "dependencies": { + "NETStandard.Library": "1.6.0", + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "1.1.12.351", + "fileVersion": "1.0.0.0" + } + } + }, + "SqlSugarCore/5.0.3.2": { + "dependencies": { + "Microsoft.Data.Sqlite": "2.2.4", + "MySql.Data": "8.0.25", + "Newtonsoft.Json": "12.0.3", + "Npgsql": "4.1.3.1", + "Oracle.ManagedDataAccess.Core": "2.18.3", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Data.SqlClient": "4.4.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/SqlSugar.dll": { + "assemblyVersion": "5.0.3.2", + "fileVersion": "5.0.3.2" + } + } + }, + "SqlSugarCore.Dm/1.0.0": { + "runtime": { + "lib/netstandard2.0/DmProvider.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.42711" + } + } + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "runtime": { + "lib/netstandard2.0/Kdbndp.dll": { + "assemblyVersion": "4.0.7.0", + "fileVersion": "4.0.7.0" + } + } + }, + "Swashbuckle.AspNetCore/6.1.4": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.1.4", + "Swashbuckle.AspNetCore.SwaggerGen": "6.1.4", + "Swashbuckle.AspNetCore.SwaggerUI": "6.1.4" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.1.4": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.1.4.0", + "fileVersion": "6.1.4.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.1.4" + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.1.4.0", + "fileVersion": "6.1.4.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.1.4.0", + "fileVersion": "6.1.4.0" + } + } + }, + "System.AppContext/4.1.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "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" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Annotations/5.0.0": {}, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Common/4.3.0": { + "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" + } + }, + "System.Data.SqlClient/4.4.0": { + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.7.0", + "System.Text.Encoding.CodePages": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": { + "assemblyVersion": "4.2.0.0", + "fileVersion": "4.6.25519.3" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.2.0.0", + "fileVersion": "4.6.25519.3" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.2.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.220.61120" + } + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/5.0.2": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.7.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.7.1", + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.7.1.0", + "fileVersion": "6.7.1.10630" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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.1.0" + } + }, + "System.IO.Compression.ZipFile/4.0.1": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.1.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" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Dynamic.Core/1.2.2": { + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { + "assemblyVersion": "1.2.2.0", + "fileVersion": "1.2.2.0" + } + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "5.0.1", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.0.11", + "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.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.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.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Net.Primitives/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "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" + } + }, + "System.Runtime.Numerics/4.0.1": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "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.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "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" + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.0.1", + "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.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.0" + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Json/4.6.0": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "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" + } + }, + "System.Threading.Timer/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.5.0": {}, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "5.0.2" + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "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.0.11", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.0.11": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.0.1", + "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.0.11" + } + }, + "UAParser/3.1.46": { + "runtime": { + "lib/netcoreapp2.0/UAParser.dll": { + "assemblyVersion": "3.1.46.0", + "fileVersion": "3.1.46.0" + } + } + }, + "Ewide.Core/1.0.0": { + "dependencies": { + "CSRedisCore": "3.6.6", + "Furion": "2.12.9", + "Furion.Extras.Authentication.JwtBearer": "2.12.9", + "Furion.Extras.DatabaseAccessor.Dapper": "2.12.9", + "Furion.Extras.DatabaseAccessor.SqlSugar": "2.12.9", + "Furion.Extras.Logging.Serilog": "2.12.9", + "Furion.Extras.ObjectMapper.Mapster": "2.12.9", + "Kendo.DynamicLinqCore": "3.1.1", + "Portable.BouncyCastle": "1.8.10", + "Quartz": "3.3.2", + "System.Drawing.Common": "5.0.2", + "System.Text.Encoding.CodePages": "5.0.0", + "UAParser": "3.1.46", + "aliyun-net-sdk-core": "1.5.10" + }, + "runtime": { + "Ewide.Core.dll": {} + } + }, + "Ewide.EntityFramework.Core/1.0.0": { + "dependencies": { + "Ewide.Core": "1.0.0", + "Microsoft.EntityFrameworkCore.Sqlite": "5.0.5", + "MySql.Data": "8.0.25", + "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2" + }, + "runtime": { + "Ewide.EntityFramework.Core.dll": {} + } + }, + "Furion/2.12.9": { + "dependencies": { + "Furion.Extras.DependencyModel.CodeAnalysis": "2.12.9", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.1.4" + }, + "runtime": { + "Furion.dll": {} + } + }, + "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "dependencies": { + "Furion.Extras.Web.HttpContext": "2.12.9", + "Microsoft.AspNetCore.Authentication.JwtBearer": "5.0.7" + }, + "runtime": { + "Furion.Extras.Authentication.JwtBearer.dll": {} + } + }, + "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "dependencies": { + "Dapper.Contrib": "2.0.78" + }, + "runtime": { + "Furion.Extras.DatabaseAccessor.Dapper.dll": {} + } + }, + "Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": { + "dependencies": { + "SqlSugarCore": "5.0.3.2" + }, + "runtime": { + "Furion.Extras.DatabaseAccessor.SqlSugar.dll": {} + } + }, + "Furion.Extras.Logging.Serilog/2.12.9": { + "dependencies": { + "Serilog.AspNetCore": "4.1.0" + }, + "runtime": { + "Furion.Extras.Logging.Serilog.dll": {} + } + }, + "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "dependencies": { + "Mapster": "7.2.0", + "Mapster.DependencyInjection": "1.0.0" + }, + "runtime": { + "Furion.Extras.ObjectMapper.Mapster.dll": {} + } + } + } + }, + "libraries": { + "Ewide.WorkOrderSys/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "aliyun-net-sdk-core/1.5.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QJfZdf3cQZEeudq2SDASJEJbl8D80p7YsGFZrrcFDba+1jsSeUT+oR0XoU4MdEF9kHr8mC6HoOsS5aioeMVQqw==", + "path": "aliyun-net-sdk-core/1.5.10", + "hashPath": "aliyun-net-sdk-core.1.5.10.nupkg.sha512" + }, + "Ben.Demystifier/0.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==", + "path": "ben.demystifier/0.4.1", + "hashPath": "ben.demystifier.0.4.1.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "CSRedisCore/3.6.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fxP+ZuW3wj1425iILLyF+L1oTjWRM5odFn0p/LFYkUWzEfYznjBB7xzn716kVH3SxD0cSv7fj9Jaf1kKaPduRA==", + "path": "csrediscore/3.6.6", + "hashPath": "csrediscore.3.6.6.nupkg.sha512" + }, + "Dapper/2.0.78": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vLPwL2HZXp/DN17Eu7sg6GMEj02alq7jcy6atn5Gv8i96b9Hu1UoxlCrhInUPfSFLQQiD8O7pdWAE1fdUEO/1Q==", + "path": "dapper/2.0.78", + "hashPath": "dapper.2.0.78.nupkg.sha512" + }, + "Dapper.Contrib/2.0.78": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUfDVIf8LlHNiz3MfUFodeyRiemfN1JFkPxYjCxFWlwNPg1iQ49mB+0E89TkywWs4X8fiRWOVDQgtH5FtzK5Kw==", + "path": "dapper.contrib/2.0.78", + "hashPath": "dapper.contrib.2.0.78.nupkg.sha512" + }, + "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ewZuytQCMFbqtbz2ILCFGSsPrhixkybYeSrIK2EFxchXOoiSVAsHniKMA+BFuRifxjp+oZHyMvZtNmUvAEK23w==", + "path": "furion.extras.dependencymodel.codeanalysis/2.12.9", + "hashPath": "furion.extras.dependencymodel.codeanalysis.2.12.9.nupkg.sha512" + }, + "Furion.Extras.Web.HttpContext/2.12.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUnCxN5LHCoDvxFGsVAHaPfvDpkpQQiRPNqrst9GbFUjt/Elt6URfmCEB35NsQ5PSqj0rHQWyY4MLteNsB+8Tw==", + "path": "furion.extras.web.httpcontext/2.12.9", + "hashPath": "furion.extras.web.httpcontext.2.12.9.nupkg.sha512" + }, + "Google.Protobuf/3.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==", + "path": "google.protobuf/3.14.0", + "hashPath": "google.protobuf.3.14.0.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.1.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==", + "path": "k4os.compression.lz4/1.1.11", + "hashPath": "k4os.compression.lz4.1.1.11.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==", + "path": "k4os.compression.lz4.streams/1.1.11", + "hashPath": "k4os.compression.lz4.streams.1.1.11.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "Kendo.DynamicLinqCore/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Hhwwxs1TTdrq25KsJ6xpS3FhlGolmnHA3oqgo4enLG8+3grEQ1Dkhvuy6JxDpuM9d5xX/E76qzBGSFKMwOC5/w==", + "path": "kendo.dynamiclinqcore/3.1.1", + "hashPath": "kendo.dynamiclinqcore.3.1.1.nupkg.sha512" + }, + "Mapster/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dIXWyCPHrzcQ7Aeblz/bKxsP9ZxGMMbHZTyywZS7/cGa9elPcJiTNeJ4OahzLtATzL13xC4MF8NRNcj49cCIng==", + "path": "mapster/7.2.0", + "hashPath": "mapster.7.2.0.nupkg.sha512" + }, + "Mapster.Core/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TNdqZk2zAuBYfJF88D/3clQTOyOdqr1crU81yZQtlGa+e7FYWhJdK/buBWT+TpM3qQko9UzmzfOT4iq3JCs/ZA==", + "path": "mapster.core/1.2.0", + "hashPath": "mapster.core.1.2.0.nupkg.sha512" + }, + "Mapster.DependencyInjection/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nNSGrgu5GirZ8nmuFXHGct+GwXjmbAAb+UqBl3Bwx/vbkCOypuvOziC+wTaNEjz/OE6LMg8yMCZzOtl59Lxw9Q==", + "path": "mapster.dependencyinjection/1.0.0", + "hashPath": "mapster.dependencyinjection.1.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-80zYklKE6CZZswm5zjCUNbDx2Pavt45qfmVWLY1Heoe7GiJsPGGs9odgmsUFZ75bq4D6F4ZwK0LOam1TGUlHCg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.5.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5lqzXIbvS31gPWYgRbJtbPVIlJaLYVjCOpOo0QnhhMDuCv0kxLXjAq30OCUMzq+2gmaa4XsLYHs9n7hXYRLWA==", + "path": "microsoft.aspnetcore.razor.language/5.0.7", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Htsk5pJmKjTgUwAP5oyuIODX/b6Zl4RD0tpM62NEncxne/LiQvP50j9g8h+qFtp4lS4AmAYTVPBbXgBuC5zcQA==", + "path": "microsoft.codeanalysis.common/3.10.0", + "hashPath": "microsoft.codeanalysis.common.3.10.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GM83V29l0zsOLReyxpFs32Ujss3wkrVbWFTVjGANXxceycWmi7aLBNL4TQ3r3ZiG4m2b+/LIqwIVkDvZpjOnuw==", + "path": "microsoft.codeanalysis.csharp/3.10.0", + "hashPath": "microsoft.codeanalysis.csharp.3.10.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite/2.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==", + "path": "microsoft.data.sqlite/2.2.4", + "hashPath": "microsoft.data.sqlite.2.2.4.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tFKcgzzk3495LzD38gw75qmFS6Y1lDr5O9TGfSSG8GgtYF2G5VuTp7VdkeHKaaKOOgrSgHjuc3ogyWh7TZ10Hg==", + "path": "microsoft.data.sqlite.core/5.0.5", + "hashPath": "microsoft.data.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==", + "path": "microsoft.dotnet.platformabstractions/3.1.6", + "hashPath": "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "path": "microsoft.entityframeworkcore/5.0.7", + "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H6I/1bRafr7RFMpLg62Nje+8uRo7E1amm5IBYAO8KJo6YOwwS/FGNGD2ZjT9Jf28WEo2ahvHH4isqYkvDJRKiw==", + "path": "microsoft.entityframeworkcore.sqlite/5.0.5", + "hashPath": "microsoft.entityframeworkcore.sqlite.5.0.5.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/5.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jo1QTSGpeMBJnjLhpD6aWqrMWOFI6qFurnm4v05qMJjkosfBNrXkEMu7YF5szLCXspoEsmHDej5CE44vPAYByw==", + "path": "microsoft.entityframeworkcore.sqlite.core/5.0.5", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.5.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "path": "microsoft.extensions.caching.memory/5.0.0", + "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==", + "path": "microsoft.extensions.configuration/2.0.0", + "hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IznHHzGUtrdpuQqIUdmzF6TYPcsYHONhHh3o9dGp39sX/9Zfmt476UnhvU0UhXgJnXXAikt/MpN6AuSLCCMdEQ==", + "path": "microsoft.extensions.configuration.binder/2.0.0", + "hashPath": "microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "hashPath": "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.8", + "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==", + "path": "microsoft.extensions.hosting.abstractions/3.1.8", + "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "path": "microsoft.extensions.options/5.0.0", + "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y/lGICwO27fCkQRK3tZseVzFjZaxfGmui990E67sB4MuiPzdJHnJDS/BeYWrHShSSBgCl4KyKRx4ux686fftPg==", + "path": "microsoft.extensions.options.configurationextensions/2.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "path": "microsoft.extensions.primitives/5.0.0", + "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==", + "path": "microsoft.identitymodel.jsonwebtokens/6.7.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==", + "path": "microsoft.identitymodel.logging/6.7.1", + "hashPath": "microsoft.identitymodel.logging.6.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==", + "path": "microsoft.identitymodel.protocols/6.7.1", + "hashPath": "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==", + "path": "microsoft.identitymodel.tokens/6.7.1", + "hashPath": "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "path": "microsoft.win32.primitives/4.0.1", + "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "path": "microsoft.win32.registry/4.4.0", + "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "MiniProfiler.AspNetCore/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bBirB5d4Q0Bgx05Zg4yzXSmOHZQV4ZJhmxU3DGya4FZxNBwjaVHchqEKY0MJW5XLZo8axMAQm4yywgCvUlTymA==", + "path": "miniprofiler.aspnetcore/4.2.22", + "hashPath": "miniprofiler.aspnetcore.4.2.22.nupkg.sha512" + }, + "MiniProfiler.AspNetCore.Mvc/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzCEaZnh77U9jw+c/qu4CtwYUpHEf+FH1ZMbYKMzIXr8CNNPlypSR6AJEAwjo3bq9TIJIpBMZIaK3inRLUCg4g==", + "path": "miniprofiler.aspnetcore.mvc/4.2.22", + "hashPath": "miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512" + }, + "MiniProfiler.Shared/4.2.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OOA99Iu7FjFrdYaADcWL78KK9Kq6M+hfnZac5577aSrx0UYOM2apKlhBPKzoPtGPTRtQNKe4RK00u/FmahcU3g==", + "path": "miniprofiler.shared/4.2.22", + "hashPath": "miniprofiler.shared.4.2.22.nupkg.sha512" + }, + "MySql.Data/8.0.25": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nt0RP1Z3Prz3JQAH1PgIbvBYzumInTVQZEOMU57iRSNeD97+YjMuHgQBCLCqju2Btb4Hmn2Kv9aMFX3jhVaMlg==", + "path": "mysql.data/8.0.25", + "hashPath": "mysql.data.8.0.25.nupkg.sha512" + }, + "MySqlConnector/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==", + "path": "mysqlconnector/1.1.0", + "hashPath": "mysqlconnector.1.1.0.nupkg.sha512" + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "path": "netstandard.library/1.6.0", + "hashPath": "netstandard.library.1.6.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "path": "newtonsoft.json/12.0.3", + "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + }, + "Npgsql/4.1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-354pl/Picmt5/AIrm8urFwtxfK4n4NbmfBnLA9yvP8VtILSQF3/sFo3+lGuz+q4iyD18QeNFy0NMNBzsocFVlw==", + "path": "npgsql/4.1.3.1", + "hashPath": "npgsql.4.1.3.1.nupkg.sha512" + }, + "Oracle.ManagedDataAccess.Core/2.18.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==", + "path": "oracle.manageddataaccess.core/2.18.3", + "hashPath": "oracle.manageddataaccess.core.2.18.3.nupkg.sha512" + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==", + "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2", + "hashPath": "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512" + }, + "Portable.BouncyCastle/1.8.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XLhjNAwuVB9ynwn11l5K44eyozh8q6gFseTrlnLNttejimglX7+F9+vxh60LPjvA/DAt6fUdS43N3ah8K6eaWg==", + "path": "portable.bouncycastle/1.8.10", + "hashPath": "portable.bouncycastle.1.8.10.nupkg.sha512" + }, + "Quartz/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zsLt0LLHfIO+hlLBrBB2f7Qolf2C3SeCWXawgnWXSuvsAWsvWBLSax9Tpu5X/KzoF4Y4UHX7tdxvQjxILEsRWA==", + "path": "quartz/3.3.2", + "hashPath": "quartz.3.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "path": "runtime.native.system.io.compression/4.1.0", + "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "path": "runtime.native.system.net.http/4.0.1", + "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "path": "runtime.native.system.security.cryptography/4.0.0", + "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "path": "serilog.aspnetcore/4.1.0", + "hashPath": "serilog.aspnetcore.4.1.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "path": "serilog.extensions.hosting/4.1.2", + "hashPath": "serilog.extensions.hosting.4.1.2.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==", + "path": "serilog.extensions.logging/3.0.1", + "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "path": "serilog.settings.configuration/3.1.0", + "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==", + "path": "serilog.sinks.console/3.1.1", + "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==", + "path": "serilog.sinks.file/4.1.0", + "hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f5U8Sw0lRym8tTraJ2zm6OqcDrcrEVvcKDtYlKSLs3Ox9SerkwkPXiFXb/uiW0g2tJdUw6oBhsxI/l5DoRxXMg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_green/1.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==", + "path": "sqlitepclraw.bundle_green/1.1.12", + "hashPath": "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==", + "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12", + "hashPath": "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==", + "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12", + "hashPath": "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==", + "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12", + "hashPath": "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==", + "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12", + "hashPath": "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512" + }, + "SqlSugarCore/5.0.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Oyl73NFAPBYNgV/6qfclNTarLMAkpvPFT0kzzwNryoriJXtUgDngTPedfd4nYbrs+k7vlTMlgAOfQtJoIA6tWQ==", + "path": "sqlsugarcore/5.0.3.2", + "hashPath": "sqlsugarcore.5.0.3.2.nupkg.sha512" + }, + "SqlSugarCore.Dm/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TCZRpNQ21lZqTnBFbuVOKIFWMvl2IFRiU5FcSWbyOVD/F9tSwRK9BUQXtrBh3xpn2v/cUcRJgQdNEknWNjFd6w==", + "path": "sqlsugarcore.dm/1.0.0", + "hashPath": "sqlsugarcore.dm.1.0.0.nupkg.sha512" + }, + "SqlSugarCore.Kdbndp/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xQpxN40OUlg3FZnypcXBCFvNl1ndueOjW4Wc+lnk2YjCK+sKjKr/YejJY/DuT/WthY+Z5p086K6igUTX9ZHg2Q==", + "path": "sqlsugarcore.kdbndp/1.0.0", + "hashPath": "sqlsugarcore.kdbndp.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aglxV+kJA5wP0RoAS8Rrh4Jp7bmVEcDAAofdSyGfea4TSEtNRLam9Fq0A4+0asUWDRk1N0/6VnuLC6+ev50wSQ==", + "path": "swashbuckle.aspnetcore/6.1.4", + "hashPath": "swashbuckle.aspnetcore.6.1.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5XRKPKXpQRJMdOwHgotSZjWYGKnvresUIKiUOecmDrsiTkRpUd15QJMS/+HKYjjOvWnJthYwhLJG3pABJOHwOg==", + "path": "swashbuckle.aspnetcore.swagger/6.1.4", + "hashPath": "swashbuckle.aspnetcore.swagger.6.1.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i0Y3a3XMKz7r9vMNtB7TUIsWXpz9uJwnJ42NV3lAnmem7XpTykxm/cFJqHc9CqVBdbPf7XPvhUvEiUybRlocIg==", + "path": "swashbuckle.aspnetcore.swaggergen/6.1.4", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.1.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ue8Ag73DOXPPB/NCqT7oN1PYSj35IETWROsIZG9EbwAtFDcgonWOrHbefjMFUGyPalNm6CSmVm1JInpURnxMgw==", + "path": "swashbuckle.aspnetcore.swaggerui/6.1.4", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.1.4.nupkg.sha512" + }, + "System.AppContext/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "path": "system.appcontext/4.1.0", + "hashPath": "system.appcontext.4.1.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Common/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==", + "path": "system.data.common/4.3.0", + "hashPath": "system.data.common.4.3.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==", + "path": "system.data.sqlclient/4.4.0", + "hashPath": "system.data.sqlclient.4.4.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "path": "system.diagnostics.tools/4.0.1", + "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", + "path": "system.drawing.common/5.0.2", + "hashPath": "system.drawing.common.5.0.2.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "path": "system.globalization.calendars/4.0.1", + "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "path": "system.globalization.extensions/4.0.1", + "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==", + "path": "system.identitymodel.tokens.jwt/6.7.1", + "hashPath": "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "path": "system.io.compression/4.1.0", + "hashPath": "system.io.compression.4.1.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "path": "system.io.compression.zipfile/4.0.1", + "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Dynamic.Core/1.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3IaeyTL7eXF1EmRe5K5qpFomnD0Fd8uLfv7SqBC9IniiM2xaUDMarjDsHT1Qbvv40irH0278RkzEu0ajHKh+w==", + "path": "system.linq.dynamic.core/1.2.2", + "hashPath": "system.linq.dynamic.core.1.2.2.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "path": "system.net.http/4.1.0", + "hashPath": "system.net.http.4.1.0.nupkg.sha512" + }, + "System.Net.Primitives/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "path": "system.net.primitives/4.0.11", + "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "path": "system.net.sockets/4.1.0", + "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "path": "system.runtime.numerics/4.0.1", + "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "path": "system.runtime.serialization.primitives/4.3.0", + "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "path": "system.security.cryptography.algorithms/4.2.0", + "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "path": "system.security.cryptography.csp/4.0.0", + "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "path": "system.security.cryptography.encoding/4.0.0", + "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "path": "system.security.cryptography.openssl/4.0.0", + "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "path": "system.security.cryptography.primitives/4.0.0", + "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "path": "system.security.cryptography.x509certificates/4.1.0", + "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "path": "system.text.encoding.codepages/5.0.0", + "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "path": "system.text.encoding.extensions/4.0.11", + "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" + }, + "System.Text.Json/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==", + "path": "system.text.json/4.6.0", + "hashPath": "system.text.json.4.6.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "path": "system.threading.timer/4.0.1", + "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "path": "system.valuetuple/4.5.0", + "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "path": "system.xml.readerwriter/4.0.11", + "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "path": "system.xml.xdocument/4.0.11", + "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" + }, + "UAParser/3.1.46": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A3B7dwr9RHXdXapJxE+5OFTXyB6HNh0mnqrvQ0GvJ0bseFOO9HLVXNjQlC8SoVySijN2Hwb+KLPX43gLgCMOig==", + "path": "uaparser/3.1.46", + "hashPath": "uaparser.3.1.46.nupkg.sha512" + }, + "Ewide.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Ewide.EntityFramework.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion.Extras.Logging.Serilog/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.dll new file mode 100644 index 0000000..24d3d39 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.pdb new file mode 100644 index 0000000..691ef98 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Ewide.WorkOrderSys.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.dll new file mode 100644 index 0000000..92e632c Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.pdb new file mode 100644 index 0000000..75430a6 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.xml new file mode 100644 index 0000000..1bcb2ed --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Authentication.JwtBearer.xml @@ -0,0 +1,233 @@ + + + + Furion.Extras.Authentication.JwtBearer + + + + + JWT 授权服务拓展类 + + + + + 添加 JWT 授权 + + + token 验证参数 + + 启动全局授权 + + + + + 添加 JWT 授权 + + + 授权配置 + token 验证参数 + + + + + + 添加 JWT 授权 + + + + + + + + + + + + 添加 JWT 授权 + + + + + + JWT 加解密 + + + + + 生成 Token + + + 过期时间(分钟) + + + + + 生成 Token + + + + + + + + + 生成 Token + + + + + + + + + 生成刷新 Token + + + 刷新 Token 有效期(分钟) + + + + + 通过过期Token 和 刷新Token 换取新的 Token + + + + 过期时间(分钟) + 刷新token容差值,秒做单位 + + + + + 自动刷新 Token 信息 + + + + 新 Token 过期时间(分钟) + 新刷新 Token 有效期(分钟) + + + + + + + 验证 Token + + + + + + + 验证 Token + + + + + + + + + + 读取 Token,不含验证 + + + + + + + 获取 JWT Bearer Token + + + + + + + + + 获取 JWT 配置 + + + + + + 生成Token验证参数 + + + + + + + 组合 Claims 负荷 + + + 过期时间,单位:分钟 + + + + + 设置默认 Jwt 配置 + + + + + + + 固定的 Claim 类型 + + + + + Jwt 配置 + + + + + 验证签发方密钥 + + + + + 签发方密钥 + + + + + 验证签发方 + + + + + 签发方 + + + + + 验证签收方 + + + + + 签收方 + + + + + 验证生存期 + + + + + 过期时间容错值,解决服务器端时间不同步问题(秒) + + + + + 过期时间(分钟) + + + + + 加密算法 + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.dll new file mode 100644 index 0000000..88b5950 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.pdb new file mode 100644 index 0000000..a8c3197 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.xml new file mode 100644 index 0000000..1b896ef --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.Dapper.xml @@ -0,0 +1,582 @@ + + + + Furion.Extras.DatabaseAccessor.Dapper + + + + + Dapper 拓展类 + + + + + 添加 Dapper 拓展 + + + 连接字符串 + 类型 + + + + + Sql 类型 + + + + + SqlServer 提供器程序集 + + + + + Sqlite 提供器程序集 + + + + + MySql 提供器程序集 + + + + + PostgreSQL 提供器程序集 + + + + + Oracle 提供器程序集 + + + + + Firebird 提供器程序集 + + + + + 数据库提供器连接对象类型集合 + + + + + 静态构造函数 + + + + + 获取数据库连接对象类型 + + + + + + + 非泛型 SqlSugar 仓储 + + + + + 数据库连接对象 + + + + + 服务提供器 + + + + + 构造函数 + + + + + + + 连接上下文 + + + + + 动态连接上下文 + + + + + 查询返回动态类型 + + + + + + + + + + + + 查询返回特定类型 + + + + + + + + + + + + + 查询返回动态类型 + + + + + + + + + + + 查询返回特定类型 + + + + + + + + + + + + 执行命令 + + + + + + + + + + + 执行命令 + + + + + + + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + SqlSugar 仓储实现类 + + + + + + 构造函数 + + + + + + + 获取一条 + + + + + + + + + 获取一条 + + + + + + + + + 获取所有实体 + + + + + + + + 获取所有实体 + + + + + + + + 新增一条 + + + + + + + + + 新增一条 + + + + + + + + + + 新增多条 + + + + + + + + + 新增多条 + + + + + + + + + + 更新一条 + + + + + + + + + 更新一条 + + + + + + + + + 更新多条 + + + + + + + + + 更新多条 + + + + + + + + + 删除一条 + + + + + + + + + 删除一条 + + + + + + + + + 删除多条 + + + + + + + + + 删除多条 + + + + + + + + + 非泛型 SqlSugar 仓储 + + + + + 连接上下文 + + + + + 动态连接上下文 + + + + + 查询返回动态类型 + + + + + + + + + + + + 查询返回特定类型 + + + + + + + + + + + + + 查询返回动态类型 + + + + + + + + + + + 查询返回特定类型 + + + + + + + + + + + + 执行命令 + + + + + + + + + + + 执行命令 + + + + + + + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + SqlSugar 仓储接口定义 + + + + + + 获取一条 + + + + + + + + + 获取一条 + + + + + + + + + 获取所有实体 + + + + + + + + 获取所有实体 + + + + + + + + 新增一条 + + + + + + + + + 新增一条 + + + + + + + + + + 新增多条 + + + + + + + + + 新增多条 + + + + + + + + + + 更新一条 + + + + + + + + + 更新一条 + + + + + + + + + 更新多条 + + + + + + + + + 更新多条 + + + + + + + + + 删除一条 + + + + + + + + + 删除一条 + + + + + + + + + 删除多条 + + + + + + + + + 删除多条 + + + + + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll new file mode 100644 index 0000000..8dcccf8 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb new file mode 100644 index 0000000..af7c09b Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.xml new file mode 100644 index 0000000..6e173b8 --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.DatabaseAccessor.SqlSugar.xml @@ -0,0 +1,960 @@ + + + + Furion.Extras.DatabaseAccessor.SqlSugar + + + + + 分页拓展类 + + + + + 分页拓展 + + + + + + + + + 分页拓展 + + + + + + + + + SqlSugar 打印SQL语句参数格式化帮助类 + 【使用方式】:在需要打印SQL语句的地方,如 Startup,将 + App.PrintToMiniProfiler("SqlSugar1", "Info", sql + "\r\n" + db.Utilities.SerializeObject(pars.ToDictionary(it => it.ParameterName, it => it.Value))); + 替换为 + App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars)); + + + + + 格式化参数拼接成完整的SQL语句 + + + + + + + + 格式化参数拼接成完整的SQL语句 + + + + + + + + 分页泛型集合 + + + + + + 页码 + + + + + 页容量 + + + + + 总条数 + + + + + 总页数 + + + + + 当前页集合 + + + + + 是否有上一页 + + + + + 是否有下一页 + + + + + 分页集合 + + + + + 非泛型 SqlSugar 仓储 + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 原生 Ado 对象 + + + + + SqlSugar 仓储接口定义 + + + + + + 实体集合 + + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 原生 Ado 对象 + + + + + 获取总数 + + + + + + + 获取总数 + + + + + + + 检查是否存在 + + + + + + + 检查是否存在 + + + + + + + 通过主键获取实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取列表 + + + + + + 获取列表 + + + + + + + 获取列表 + + + + + + + + + 获取列表 + + + + + + 获取列表 + + + + + + + 获取列表 + + + + + + + + + 新增一条记录 + + + + + + + 新增多条记录 + + + + + + + 新增多条记录 + + + + + + + 新增一条记录返回自增Id + + + + + + + 新增一条记录 + + + + + + + 新增多条记录 + + + + + + + 新增多条记录 + + + + + + + 新增一条记录返回自增Id + + + + + + + 更新一条记录 + + + + + + + 更新多条记录 + + + + + + + 更新多条记录 + + + + + + + 更新一条记录 + + + + + + + 更新多条记录 + + + + + + + 更新多条记录 + + + + + + + 删除一条记录 + + + + + + + 删除一条记录 + + + + + + + 删除多条记录 + + + + + + + 自定义条件删除记录 + + + + + + + 删除一条记录 + + + + + + + 删除一条记录 + + + + + + + 删除多条记录 + + + + + + + 自定义条件删除记录 + + + + + + + 根据表达式查询多条记录 + + + + + + + 根据表达式查询多条记录 + + + + + + + + 构建查询分析器 + + + + + + 构建查询分析器 + + + + + + + 直接返回数据库结果 + + + + + + 直接返回数据库结果 + + + + + + + 直接返回数据库结果 + + + + + + 直接返回数据库结果 + + + + + + + 切换仓储 + + + + + + + 非泛型 SqlSugar 仓储 + + + + + 服务提供器 + + + + + 构造函数 + + 服务提供器 + + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 原生 Ado 对象 + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + SqlSugar 仓储实现类 + + + + + + 非泛型 SqlSugar 仓储 + + + + + 构造函数 + + + + + + 实体集合 + + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 原生 Ado 对象 + + + + + 获取总数 + + + + + + + 获取总数 + + + + + + + 检查是否存在 + + + + + + + 检查是否存在 + + + + + + + 通过主键获取实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取一个实体 + + + + + + + 获取列表 + + + + + + 获取列表 + + + + + + + 获取列表 + + + + + + + + + 获取列表 + + + + + + 获取列表 + + + + + + + 获取列表 + + + + + + + + + 新增一条记录 + + + + + + + 新增多条记录 + + + + + + + 新增多条记录 + + + + + + + 新增一条记录返回自增Id + + + + + + + 新增一条记录 + + + + + + + 新增多条记录 + + + + + + + 新增多条记录 + + + + + + + 新增一条记录返回自增Id + + + + + + + 更新一条记录 + + + + + + + 更新多条记录 + + + + + + + 更新多条记录 + + + + + + + 更新一条记录 + + + + + + + 更新多条记录 + + + + + + + 更新多条记录 + + + + + + + 删除一条记录 + + + + + + + 删除一条记录 + + + + + + + 删除多条记录 + + + + + + + 自定义条件删除记录 + + + + + + + 删除一条记录 + + + + + + + 删除一条记录 + + + + + + + 删除多条记录 + + + + + + + 自定义条件删除记录 + + + + + + + 根据表达式查询多条记录 + + + + + + + 根据表达式查询多条记录 + + + + + + + + 构建查询分析器 + + + + + + 构建查询分析器 + + + + + + + 直接返回数据库结果 + + + + + + 直接返回数据库结果 + + + + + + + 直接返回数据库结果 + + + + + + 直接返回数据库结果 + + + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + SqlSugar 工作单元配置特性 + + + + + 构造函数 + + + + + 构造函数 + + + 支持传入事务隔离级别 参数值 + + 事务隔离级别 + + + + 事务隔离级别 + + + 默认:,参见: + 说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作 + + + + + SqlSugar 工作单元拦截器 + + + + + 过滤器排序 + + + + + 排序属性 + + + + + SqlSugar 对象 + + + + + 构造函数 + + + + + + + + + + + + + + SqlSugar 拓展类 + + + + + 添加 SqlSugar 拓展 + + + + + + + + + 添加 SqlSugar 拓展 + + + + + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.dll new file mode 100644 index 0000000..c3f5d21 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.pdb new file mode 100644 index 0000000..6ce7f1f Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.xml new file mode 100644 index 0000000..f270dc4 --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.Logging.Serilog.xml @@ -0,0 +1,29 @@ + + + + Furion.Extras.Logging.Serilog + + + + + Serilog 日志拓展 + + + + + 添加默认日志拓展 + + + + IWebHostBuilder + + + + 添加默认日志拓展 + + + + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.dll new file mode 100644 index 0000000..aa0b3ab Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.pdb new file mode 100644 index 0000000..ebc28a4 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.xml new file mode 100644 index 0000000..6a0e5ad --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.Extras.ObjectMapper.Mapster.xml @@ -0,0 +1,21 @@ + + + + Furion.Extras.ObjectMapper.Mapster + + + + + 对象映射拓展类 + + + + + 添加对象映射 + + 服务集合 + 扫描的程序集 + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.dll new file mode 100644 index 0000000..aed603f Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.dll differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.pdb b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.pdb new file mode 100644 index 0000000..b319669 Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.pdb differ diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.xml b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.xml new file mode 100644 index 0000000..b264c0d --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Furion.xml @@ -0,0 +1,28238 @@ + + + + Furion + + + + + 全局应用类 + + + + + 私有设置,避免重复解析 + + + + + 应用全局配置 + + + + + 全局配置选项 + + + + + 获取Web主机环境,如,是否是开发环境,生产环境等 + + + + + 获取泛型主机环境,如,是否是开发环境,生产环境等 + + + + + 应用有效程序集 + + + + + 有效程序集类型 + + + + + 存储根服务,可能为空 + + + + + 获取请求上下文 + + + + + 获取请求上下文用户 + + 只有授权访问的页面或接口才存在值,否则为 null + + + + 未托管的对象集合 + + + + + 解析服务提供器 + + + + + + + 获取请求生命周期的服务 + + + + + + + + 获取请求生命周期的服务 + + + + + + + + 获取请求生命周期的服务 + + + + + + + + 获取请求生命周期的服务 + + + + + + + + 获取配置 + + 强类型选项类 + 配置中对应的Key + TOptions + + + + 获取选项 + + 强类型选项类 + + TOptions + + + + 获取选项 + + 强类型选项类 + + TOptions + + + + 获取选项 + + 强类型选项类 + + TOptions + + + + 打印验证信息到 MiniProfiler + + 分类 + 状态 + 消息 + 是否为警告消息 + + + + 构造函数 + + + + + 应用所有启动配置对象 + + + + + 外部程序集 + + + + + 获取应用有效程序集 + + IEnumerable + + + + 释放所有未托管的对象 + + + + + 注册服务启动配置 + + + + + 构造函数 + + + + + + 排序 + + + + + IConfiguration 拓展类 + + + + + 重载配置 + + + + + + + + 对象拓展类 + + + + + 将 DateTimeOffset 转换成本地 DateTime + + + + + + + 将 DateTime 转换成 DateTimeOffset + + + + + + + 判断是否是富基元类型 + + 类型 + + + + + 合并两个字典 + + + 字典 + 新字典 + + + + + 判断是否是元组类型 + + 类型 + + + + + 判断方法是否是异步 + + 方法 + + + + + 判断类型是否实现某个泛型 + + 类型 + 泛型类型 + bool + + + + 判断是否是匿名类型 + + 对象 + + + + + 获取所有祖先类型 + + + + + + + 获取方法真实返回类型 + + + + + + + 首字母大写 + + + + + + + 将一个对象转换为指定类型 + + + + + + + + 将一个对象转换为指定类型 + + 待转换的对象 + 目标类型 + 转换后的对象 + + + + 获取对象实际类型 + + + + + + + 清空线程安全集合 + + + + + + + 官方包定义 + + + + + Jwt 验证包 + + + + + Mapster 映射包 + + + + + 应用启动时自动注册中间件 + + + + + + + 配置中间件 + + + + + + + 配置 Startup 的 Configure + + 应用构建器 + + + + 解析方法参数实例 + + + + + + + + 内部 App 副本 + + + + + 应用服务 + + + + + 根服务 + + + + + 全局配置构建器 + + + + + 获取Web主机环境 + + + + + 获取泛型主机环境 + + + + + 添加配置文件 + + + + + + + 自动加载自定义 .json 配置文件 + + + + + + + + 排序的配置文件前缀 + + + + + 排除运行时 Json 后缀 + + + + + 对配置文件名进行分组 + + + + + + + 应用全局配置 + + + + + 集成 MiniProfiler 组件 + + + + + 是否启用规范化文档 + + + + + 是否启用分布式内存缓存 + + + + + 是否启用引用程序集扫描 + + + + + 外部程序集 + + + + + 是否打印数据库连接信息到 MiniProfiler 中 + + + + + 是否记录 EFCore Sql 执行命令日志 + + + + + 配置支持的包前缀名 + + + + + 是否启用虚拟文件服务 + + + + + 后期配置 + + + + + + + 监听主机启动停止 + + + + + 主机启动监听 + + + + + + + 主机停止监听 + + + + + + + 依赖注入全局模块 + + + + + 配置程序启动时自动注入 + + + + + 配置应用启动 + + + + + + 授权策略执行程序 + + + + + 授权验证核心方法 + + + + + + + 验证管道 + + + + + + + + 策略验证管道 + + + + + + + + + 授权处理 + + + + + + + 常量、公共方法配置类 + + + + + 授权策略前缀 + + + + + 授权策略提供器 + + + + + 默认回退策略 + + + + + 构造函数 + + + + + + 获取默认策略 + + + + + + 获取回退策略 + + + + + + 获取策略 + + + + + + + 策略对应的需求 + + + + + 构造函数 + + + + + + 策略 + + + + + 粘土对象 + + + + + 构造函数 + + + + + 构造函数 + + + + + + + 是否是 Object 类型 + + + + + 是否是 Array 类型 + + + + + XML 元素 + + + + + 创建一个超级类型 + + + + + + 基于现有类型创建一个超级类型 + + + + + + + 将 Json 转换成动态类型 + + + + + + + 将 Json 转换成动态类型 + + + + + + + + 将 Steam 转换成动态类型 + + + + + + + 将 Steam 转换成动态类型 + + + + + + + + 序列化对象 + + + + + + + 是否定义某个键 + + + + + + + 判断数组索引是否存在 + + + + + + + 删除键 + + + + + + + 根据索引删除元素 + + + + + + + 反序列化 + + + + + + + 删除 + + + + + + + + + 判断是否定义 + + + + + + + + + 支持 Foreach 遍历 + + + + + + + + 获取索引值 + + + + + + + + + 获取成员值 + + + + + + + + 设置索引 + + + + + + + + + 设置成员 + + + + + + + + 获取动态成员名称 + + + + + + 重写 .ToString() + + + + + + 固化粘土,也就是直接输出对象 + + + + + + 固化粘土,也就是直接输出对象 + + + + + + + JSON 类型 + + + + + XElement 转动态类型 + + + + + + + 获取 JSON 类型 + + + + + + + 创建类型属性 + + + + + + + 创建 JSON 节点 + + + + + + + 创建 XStreamingElement 对象 + + + + + + + + 创建 XStreamingElement 对象 + + + + + + + 创建 JSON 字符串 + + + + + + + JSON 类型 + + + + + 读取值 + + + + + + + + 设置值 + + + + + + + + 设置值 + + + + + + + + 反序列化 + + + + + + + 反序列化值 + + + + + + + + 反序列化对象 + + + + + + + 序列化数组 + + + + + + + 将被转换成字符串的类型 + + + + + 字典类型拓展类 + + + + + 将对象转成字典 + + + + + + + 将对象转字典类型,其中值返回原始类型 Type 类型 + + + + + + + 获取成员值 + + + + + + + + ExpandoObject 对象拓展 + + + + + 将对象转 ExpandoObject 类型 + + + + + + + 移除 ExpandoObject 对象属性 + + + + + + + 判断 ExpandoObject 是否为空 + + + + + + + 判断 ExpandoObject 是否拥有某属性 + + + + + + + + 实现 ExpandoObject 浅拷贝 + + + + + + + 实现 ExpandoObject 深度拷贝 + + + + + + + 拷贝 ExpandoObject 对象 + + + + + + + + 选项配置特性 + + + + + 构造函数 + + + + + 构造函数 + + appsetting.json 对应键 + + + + 构造函数 + + 启动所有实例进行后期配置 + + + + 构造函数 + + appsetting.json 对应键 + 启动所有实例进行后期配置 + + + + 对应配置文件中的Key + + + + + 对所有配置实例进行后期配置 + + + + + 应用选项依赖接口 + + + + + 选项后期配置 + + + + + + 选项后期配置 + + + + + + + 带验证的应用选项依赖接口 + + + + + + + 带监听的应用选项依赖接口 + + + + + + 监听 + + + + + + + 跨域配置选项 + + + + + 策略名称 + + + + + 允许来源域名,没有配置则允许所有来源 + + + + + 请求表头,没有配置则允许所有表头 + + + + + 响应标头 + + + + + 设置跨域允许请求谓词,没有配置则允许所有 + + + + + 跨域请求中的凭据 + + + + + 设置预检过期时间 + + + + + 后期配置 + + + + + + + DbParameter 配置特性 + + + + + 构造函数 + + + + + 构造函数 + + 参数方向 + + + + 参数输出方向 + + + + + 数据库对应类型 + + + + + 大小 + + Nvarchar/varchar类型需指定 + + + + 数据库上下文池 + + + + + MiniProfiler 分类名 + + + + + MiniProfiler 组件状态 + + + + + 是否打印数据库连接信息 + + + + + 线程安全的数据库上下文集合 + + + + + 登记错误的数据库上下文 + + + + + 服务提供器 + + + + + 构造函数 + + + + + + 数据库上下文事务 + + + + + 获取所有数据库上下文 + + + + + + 保存数据库上下文 + + + + + + 保存数据库上下文(异步) + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文(异步) + + + + + + + + 打开事务 + + + + + + + 提交事务 + + + + 是否自动关闭所有连接 + + + + 释放所有数据库上下文 + + + + + 设置数据库上下文共享事务 + + + + + + + 数据库上下文池 + + + + + 数据库上下文事务 + + + + + 获取所有数据库上下文 + + + + + + 保存数据库上下文 + + + + + + 保存数据库上下文(异步) + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文(异步) + + + + + + + + 打开事务 + + + + + + + 提交事务 + + + + 是否自动关闭所有连接 + + + + 关闭所有数据库链接 + + + + + 默认应用数据库上下文 + + 数据库上下文 + + + + 构造函数 + + + + + + 应用数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + + + + 构造函数 + + + + + + 数据库上下文提交更改之前执行事件 + + + + + + + 数据库上下文提交更改成功执行事件 + + + + + + + 数据库上下文提交更改失败执行事件 + + + + + + 数据库上下文初始化调用方法 + + + + + + 数据库上下文配置模型调用方法 + + + + + + 新增或更新忽略空值(默认值) + + + + + 启用实体跟踪(默认值) + + + + + 启用实体数据更改监听 + + + + + 保存失败自动回滚 + + + + + 获取租户信息 + + + + + 构建基于表租户查询过滤器表达式 + + 实体类型构建器 + 数据库上下文 + 多租户Id属性名 + 表达式 + + + + 正在更改并跟踪的数据 + + + + + 内部数据库上下文提交更改之前执行事件 + + + + + + + 内部数据库上下文提交更改成功执行事件 + + + + + + + 内部数据库上下文提交更改失败执行事件 + + + + + + 附加实体改变监听 + + + + + + + + 数据库上下文配置特性 + + + + + 默认构造函数 + + + + + + 构造函数 + + + + + + + 构造函数 + + + + + + + + 数据库连接字符串 + + + + + 数据库提供器名称 + + + + + 数据库上下文模式 + + + + + 表统一前缀 + + + + + 表统一后缀 + + + + + 指定从库定位器 + + + + + 数据库上下文构建器 + + + + + 数据库实体相关类型 + + + + + 数据库函数方法集合 + + + + + 创建数据库实体方法 + + + + + 构造函数 + + + + + 配置数据库上下文实体 + + 模型构建器 + 数据库上下文 + 数据库上下文定位器 + + + + 创建实体类型构建器 + + 数据库关联类型 + 模型构建器 + 数据库上下文 + 数据库上下文类型 + 数据库上下文定位器 + + 数据库上下文特性 + EntityTypeBuilder + + + + 配置实体表名 + + 实体类型 + 数据库上下文特性 + 实体类型构建器 + 数据库上下文 + 数据库上下文类型 + + + + 配置实体动态表名 + + 实体类型 + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + 数据库实体关联类型 + + + + 配置无键实体类型 + + 实体类型 + 实体类型构建器 + 无键实体列表 + + + + 加载模型构建筛选器创建之前拦截 + + 模型构建器 + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + 模型构建器筛选器实例 + + + + 加载模型构建筛选器创建之后拦截 + + 模型构建器 + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + 模型构建器筛选器实例 + + + + 配置数据库实体类型构建器 + + 实体类型 + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + 数据库实体关联类型 + + + + 配置数据库实体种子数据 + + 实体类型 + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + 数据库实体关联类型 + + + + 配置数据库函数 + + 模型构建起 + 数据库上下文定位器 + + + + 判断当前类型是否在数据库上下文中 + + 数据库上下文定位器 + 数据库实体关联类型 + bool + + + + 判断当前函数是否在数据库上下文中 + + 数据库上下文定位器 + 标识为数据库的函数 + bool + + + + 数据库上下文定位器关联类型集合 + + + + + 获取当前数据库上下文关联类型 + + 数据库上下文 + 数据库上下文定位器 + DbContextCorrelationType + + + + 数据库上下文关联类型 + + + + + 构造函数 + + + + + 关联的数据库上下文 + + + + + 所有关联类型 + + + + + 实体类型集合 + + + + + 无键实体类型集合 + + + + + 实体构建器类型集合 + + + + + 种子数据类型集合 + + + + + 实体数据改变类型 + + + + + 模型构建筛选器类型集合 + + + + + 可变表实体类型集合 + + + + + 数据库函数方法集合 + + + + + 模型构建器筛选器实例 + + + + + 动态模型缓存工厂 + + 主要用来实现数据库分表分库 + + + + 动态模型缓存Key + + + + + 重写构建模型 + + 动态切换表之后需要调用该方法 + + + + 更新模型缓存 + + + + + + + 数据库上下文模式 + + + + + 缓存模型数据库上下文 + + OnModelCreating 只会初始化一次 + + + + + + 动态模型数据库上下文 + + OnModelCreating 每次都会调用 + + + + + + 数据库公开类 + + + + + 迁移类库名称 + + + + + 是否启用自定义租户类型 + + + + + 基于表的多租户外键名 + + + + + 获取非泛型仓储 + + + + + + + 获取实体仓储 + + 实体类型 + + IRepository{TEntity} + + + + 获取实体仓储 + + 实体类型 + 数据库上下文定位器 + + IRepository{TEntity, TDbContextLocator} + + + + 根据定位器类型获取仓储 + + + + + + + + + 获取Sql仓储 + + + ISqlRepository + + + + 获取Sql仓储 + + 数据库上下文定位器 + + ISqlRepository{TDbContextLocator} + + + + 获取随机主从库仓储 + + + ISqlRepository + + + + 获取随机主从库仓储 + + 主库数据库上下文定位器 + + IMSRepository{TDbContextLocator} + + + + 获取Sql代理 + + + ISqlRepository + + + + 获取作用域数据库上下文 + + + + + + + 获取作用域数据库上下文 + + 数据库上下文定位器 + + + + + + 获取作用域数据库上下文 + + 数据库上下文定位器 + + + + + + 监听 EFCore 操作进程 + + + + + 监听进程名 + + + + + 操作命令集合 + + + + + 操作命令集合 + + + + + 操作命令集合 + + + + + 操作完成监听 + + + + + 操作错误监听 + + + + + + 操作过程监听 + + + + + + 手动配置实体特性 + + 支持类和方法 + + + + 实体函数配置特性 + + + + + 构造函数 + + 函数名 + 架构名 + + + + 构造函数 + + 函数名 + 架构名 + 数据库上下文定位器 + + + + 数据库上下文定位器 + + + + + 禁止实体监听 + + + + + 实体数据改变监听依赖接口 + + 实体类型 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 实体数据改变监听依赖接口(禁止外部继承) + + + + + + 监听数据改变之前(仅支持EFCore操作) + + + + + + + + + 监听数据改变之后(仅支持EFCore操作) + + + + + + + + + + 监听数据改变失败(仅支持EFCore操作) + + + + + + + + + 动态表名依赖接口 + + 实体类型 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 动态表名依赖接口(禁止外部继承) + + + + + + 获取表名 + + + + + + + + 数据库种子数据依赖接口 + + 实体类型 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库种子数据依赖接口(禁止外部继承) + + + + + + 配置种子数据 + + 数据库上下文 + 数据库上下文定位器 + + + + + 数据库实体类型配置依赖接口 + + 实体类型 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口 + + 实体类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体类型配置依赖接口(禁止外部继承) + + + + + + 实体类型配置 + + 实体类型构建器 + 数据库上下文 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库模型构建筛选器依赖接口(禁止外部继承) + + + + + 模型构建之前 + + 模型构建器 + 实体构建器 + 数据库上下文 + 数据库上下文定位器 + + + + 模型构建之后 + + 模型构建器 + 实体构建器 + 数据库上下文 + 数据库上下文定位器 + + + + 数据库模型构建器依赖(禁止直接继承) + + + 对应 + + + + + 数据库实体依赖基类 + + + + + 数据库实体依赖基类 + + 主键类型 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类(禁止外部继承) + + 主键类型 + + + + 创建时间 + + + + + 更新时间 + + + + + 数据库实体依赖基类 + + + + + 数据库实体依赖基类 + + 主键类型 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类 + + 主键类型 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基类(禁止外部继承) + + 主键类型 + + + + 主键Id + + + + + 租户Id + + + + + 数据库无键实体依赖基接口 + + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 构造函数 + + 数据库中定义名 + + + + 数据库无键实体基类(禁止外部继承) + + + + + 无键实体名 + + + + + 构造函数 + + 数据库中定义名 + + + + 获取视图名称 + + + + + + 数据库实体依赖基接口 + + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 数据库实体依赖接口(禁止外部继承) + + + + + 数据库实体依赖基接口 + + + + + 无键实体基接口 + + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口 + + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + 数据库上下文定位器 + + + + 无键实体基接口(禁止外部直接继承) + + + + + 数据库中定义名 + + + + + 数据库函数类型 + + + + + 标量函数 + + + + + 表值函数 + + + + + 数据库数据转换拓展 + + + + + 将 DataTable 转 List 集合 + + 返回值类型 + DataTable + List{T} + + + + 将 DataTable 转 List 集合 + + 返回值类型 + DataTable + List{T} + + + + 将 DataSet 转 元组 + + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 元组 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + DataSet + 元组类型 + + + + 将 DataSet 转 特定类型 + + DataSet + 特定类型集合 + List{object} + + + + 将 DataSet 转 特定类型 + + DataSet + 特定类型集合 + object + + + + 将 DataTable 转 特定类型 + + DataTable + 返回值类型 + object + + + + 将 DataTable 转 特定类型 + + DataTable + 返回值类型 + object + + + + 将 DbDataReader 转 DataTable + + + + + + + 将 DbDataReader 转 DataSet + + + + + + + 处理元组类型返回值 + + 数据集 + 返回值类型 + + + + + DatabaseFacade 拓展类 + + + + + MiniProfiler 分类名 + + + + + 是否是开发环境 + + + + + 是否打印数据库连接信息到 MiniProfiler 中 + + + + + 是否记录 EFCore 执行 sql 命令打印日志 + + + + + 构造函数 + + + + + 初始化数据库命令对象 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + (DbConnection dbConnection, DbCommand dbCommand) + + + + 初始化数据库命令对象 + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + (DbConnection dbConnection, DbCommand dbCommand, DbParameter[] dbParameters) + + + + 初始化数据库命令对象 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 异步取消令牌 + (DbConnection dbConnection, DbCommand dbCommand) + + + + 初始化数据库命令对象 + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + 异步取消令牌 + (DbConnection dbConnection, DbCommand dbCommand, DbParameter[] dbParameters) + + + + 创建数据库命令对象 + + ADO.NET 数据库对象 + sql 语句 + 命令类型 + (DbConnection dbConnection, DbCommand dbCommand) + + + + 打开数据库连接 + + ADO.NET 数据库对象 + 数据库连接对象 + + + + + 打开数据库连接 + + ADO.NET 数据库对象 + 数据库连接对象 + + 异步取消令牌 + + + + + 设置数据库命令对象参数 + + + 数据库命令对象 + 命令参数 + + + + 设置数据库命令对象参数 + + + 数据库命令对象 + 参数模型 + 命令参数 + + + + 打印数据库连接信息到 MiniProfiler + + ADO.NET 数据库对象 + 数据库连接对象 + + + + + 记录 Sql 执行命令日志 + + + + + + + ADONET 拓展类 + + + + + 执行 Sql 返回 DataTable + + ADO.NET 数据库对象 + sql 语句 + 命令类型 + 命令参数 + 行为 + DataTable + + + + 执行 Sql 返回 DataTable + + ADO.NET 数据库对象 + sql 语句 + 命令类型 + 命令模型 + 行为 + (DataTable dataTable, DbParameter[] dbParameters) + + + + 执行 Sql 返回 DataTable + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 行为 + 异步取消令牌 + DataTable + + + + 执行 Sql 返回 DataTable + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + 行为 + 异步取消令牌 + (DataTable dataTable, DbParameter[] dbParameters) + + + + 执行 Sql 语句返回受影响行数 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 受影响行数 + + + + 执行 Sql 语句返回受影响行数 + + ADO.NET 数据库对象 + sql 语句 + 参数模型 + 命令类型 + (int rowEffects, DbParameter[] dbParameters) + + + + 执行 Sql 语句返回受影响行数 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 异步取消令牌 + 受影响行数 + + + + 执行 Sql 语句返回受影响行数 + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + 异步取消令牌 + (int rowEffects, DbParameter[] dbParameters) + + + + 执行 Sql 返回单行单列的值 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 单行单列的值 + + + + 执行 Sql 返回单行单列的值 + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + (object result, DbParameter[] dbParameters) + + + + 执行 Sql 返回单行单列的值 + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 异步取消令牌 + 单行单列的值 + + + + 执行 Sql 返回单行单列的值 + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + 异步取消令牌 + (object result, DbParameter[] dbParameters) + + + + 执行 Sql 返回 DataSet + + ADO.NET 数据库对象 + sql 语句 + 命令类型 + 命令参数 + 行为 + DataSet + + + + 执行 Sql 返回 DataSet + + ADO.NET 数据库对象 + sql 语句 + 命令类型 + 命令模型 + 行为 + (DataSet dataSet, DbParameter[] dbParameters) + + + + 执行 Sql 返回 DataSet + + ADO.NET 数据库对象 + sql 语句 + 命令参数 + 命令类型 + 行为 + 异步取消令牌 + DataSet + + + + 执行 Sql 返回 DataSet + + ADO.NET 数据库对象 + sql 语句 + 命令模型 + 命令类型 + 行为 + 异步取消令牌 + (DataSet dataSet, DbParameter[] dbParameters) + + + + 常量、公共方法配置类 + + + + + 数据库上下文和定位器缓存 + + + + + 数据库上下文定位器缓存 + + + + + 构造函数 + + + + + 配置 SqlServer 数据库上下文 + + 数据库上下文选项构建器 + 拦截器 + + + + + 数据库数据库拦截器 + + 拦截器 + + + + + 分部拓展类 + + + + + 分页拓展 + + + + 页码,必须大于0 + + + + + + 分页拓展 + + + + 页码,必须大于0 + + + + + + + 实体拓展类 + + + + + 设置实体 + + + + + + + + 设置数据库执行作用域 + + + + + + + + + 设置数据库上下文定位器 + + + + + + + + + 设置数据库上下文定位器 + + + + + + + + + 获取实体同类(族群) + + 实体 + DbSet{TEntity} + + + + 新增一条记录 + + 实体 + 实体 + + 代理的实体 + + + + 新增一条记录 + + 实体 + 实体 + + 异步取消令牌 + 代理的实体 + + + + 新增一条记录并立即提交 + + 实体 + 实体 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 实体 + 接受所有提交更改 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 实体 + 异步取消令牌 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 实体 + 接受所有提交更改 + + 异步取消令牌 + 数据库中的实体 + + + + 更新一条记录 + + 实体 + 实体 + + 代理中的实体 + + + + 更新一条记录 + + 实体 + 实体 + + 代理中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 实体 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 实体 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 实体 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 删除一条记录 + + 实体 + 实体 + 代理中的实体 + + + + 删除一条记录 + + 实体 + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 实体 + 接受所有更改 + + + + + 删除一条记录并立即提交 + + 实体 + 实体 + 取消异步令牌 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 实体 + 接受所有更改 + 取消异步令牌 + 代理中的实体 + + + + 实体多数据库上下文拓展类 + + + + + 获取实体同类(族群) + + 实体 + 数据库上下文定位器 + DbSet{TEntity} + + + + 新增一条记录 + + 实体 + 数据库上下文定位器 + 实体 + + 代理的实体 + + + + 新增一条记录 + + 实体 + 数据库上下文定位器 + 实体 + + 异步取消令牌 + 代理的实体 + + + + 新增一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有提交更改 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + + 异步取消令牌 + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有提交更改 + + 异步取消令牌 + 数据库中的实体 + + + + 更新一条记录 + + 实体 + 数据库上下文定位器 + 实体 + + 代理中的实体 + + + + 更新一条记录 + + 实体 + 数据库上下文定位器 + 实体 + + 代理中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 取消异步令牌 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 取消异步令牌 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 删除一条记录 + + 实体 + 数据库上下文定位器 + 实体 + 代理中的实体 + + + + 删除一条记录 + + 实体 + 数据库上下文定位器 + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有更改 + + + + + 删除一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 取消异步令牌 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 数据库上下文定位器 + 实体 + 接受所有更改 + 取消异步令牌 + 代理中的实体 + + + + Sql 字符串执行拓展类 + + + + + 切换数据库 + + + + + + + + 切换数据库 + + + + + + + + 设置数据库执行作用域 + + + + + + + + 设置 ADO.NET 超时时间 + + + 单位秒 + + + + + Sql 查询返回 DataTable + + + 命令参数 + DataTable + + + + Sql 查询返回 DataTable + + + 参数模型 + DataTable + + + + Sql 查询返回 DataTable + + + 命令参数 + Task{DataTable} + + + + Sql 查询返回 DataTable + + + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 DataTable + + + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 List 集合 + + + 返回类型 + 命令参数 + List{T} + + + + Sql 查询返回 List 集合 + + + 返回类型 + 参数模型 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + + 命令参数 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 DataSet + + + 命令参数 + DataSet + + + + Sql 查询返回 DataSet + + + 参数模型 + DataSet + + + + Sql 查询返回 DataSet + + + 命令参数 + Task{DataSet} + + + + Sql 查询返回 DataSet + + + 命令参数 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 DataSet + + + 参数模型 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 List 集合 + + 返回类型 + + 命令参数 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + + 参数模型 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + + 命令参数 + Task{List{T1}} + + + + Sql 查询返回 List 集合 + + 返回类型 + + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + + 参数模型 + 异步取消令牌 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行 Sql 无数据返回 + + + 命令参数 + int + + + + 执行 Sql 无数据返回 + + + 参数模型 + int + + + + 执行 Sql 无数据返回 + + + 命令参数 + int + + + + 执行 Sql 无数据返回 + + + 命令参数 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + + 参数模型 + object + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + + 参数模型 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + + 参数模型 + TResult + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + + 命令参数 + 异步取消令牌 + TResult + + + + 执行 Sql 返回 单行单列 + + + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程返回 DataTable + + + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + + 参数模型 + DataTable + + + + 执行存储过程返回 DataTable + + + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + + 命令参数 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 DataTable + + + 参数模型 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 List 集合 + + + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + + 参数模型 + List{T} + + + + 执行存储过程返回 List 集合 + + + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + + 命令参数 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 List 集合 + + + 参数模型 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 DataSet + + + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + + 参数模型 + DataSet + + + + 执行存储过程返回 DataSet + + + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + + 命令参数 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 DataSet + + + 参数模型 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 List 集合 + + 返回类型 + + 命令参数 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + + 参数模型 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + + 命令参数 + Task{List{T1}} + + + + 执行存储过程返回 List 集合 + + 返回类型 + + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + + 参数模型 + 异步取消令牌 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 单行单列 + + + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + + 参数模型 + object + + + + 执行存储过程返回 单行单列 + + + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + + 命令参数 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + + 参数模型 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + + 参数模型 + TResult + + + + 执行存储过程返回 单行单列 + + + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + + 命令参数 + 异步取消令牌 + TResult + + + + 执行存储过程返回 单行单列 + + + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程无数据返回 + + + 命令参数 + int + + + + 执行存储过程无数据返回 + + + 参数模型 + int + + + + 执行存储过程无数据返回 + + + 命令参数 + int + + + + 执行存储过程无数据返回 + + + 命令参数 + 异步取消令牌 + int + + + + 执行存储过程无数据返回 + + + 参数模型 + 异步取消令牌 + int + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行标量函数返回 单行单列 + + + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + + + object + + + + 执行标量函数返回 单行单列 + + + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + + 命令参数 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + + 参数模型 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 返回值类型 + + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + + 参数模型 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + + 命令参数 + 异步取消令牌 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + + 参数模型 + 异步取消令牌 + object + + + + 执行表值函数返回 DataTable + + + 命令参数 + DataTable + + + + 执行表值函数返回 DataTable + + + 参数模型 + DataTable + + + + 执行表值函数返回 DataTable + + + 命令参数 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 List 集合 + + 返回类型 + + 命令参数 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + + 参数模型 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + + 命令参数 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + 多租户数据库上下文拓展 + + + + + 刷新多租户缓存 + + + + + + 将模型转为 DbParameter 集合 + + 参数模型 + 数据库命令对象 + + + + + 将字典转换成命令参数 + + 字典 + 数据库命令对象 + + + + + 配置数据库命令参数 + + 参数名 + 参数值 + 参数特性 + 数据库命令参数 + DbParameter + + + + 生成函数执行 sql 语句 + + ADO.NET 数据库对象 + 函数类型 + 函数名词 + 函数参数 + sql 语句 + + + + 生成函数执行 sql 语句 + + ADO.NET 数据库对象 + 函数类型 + 函数名词 + 参数模型 + (string sql, DbParameter[] parameters) + + + + 生成函数执行 sql 语句 + + ADO.NET 数据库对象 + 函数类型 + 函数名词 + 字典类型参数 + + + + + 包裹存储过程返回结果集 + + + 命令参数 + 数据集 + ProcedureOutput + + + + 包裹存储过程返回结果集 + + 数据集结果 + + 命令参数 + 数据集 + ProcedureOutput + + + + 包裹存储过程返回结果集 + + + 命令参数 + 数据集 + 返回类型 + ProcedureOutput + + + + 数据没找到异常 + + + + + + 修正不同数据库命令参数前缀不一致问题 + + + + + + + + + 读取输出返回值 + + + 参数 + 输出参数 + 返回值 + + + + 数据库上下文提交拦截器 + + + + + 拦截保存数据库之前 + + + + + + + + 拦截保存数据库之前 + + + + + + + + + 拦截保存数据库成功 + + + + + + + + 拦截保存数据库成功 + + + + + + + + + 拦截保存数据库失败 + + + + + + 拦截保存数据库失败 + + + + + + + + 数据库执行命令拦截 + + + + + 数据库连接拦截分析器 + + + + + MiniProfiler 分类名 + + + + + 是否打印数据库连接信息 + + + + + 构造函数 + + + + + 拦截数据库连接 + + 数据库连接对象 + 数据库连接事件数据 + 拦截结果 + + + + + 拦截数据库连接 + + 数据库连接对象 + 数据库连接事件数据 + 拦截器结果 + 取消异步Token + + + + + 打印数据库连接信息到 MiniProfiler + + 数据库连接对象 + 数据库连接事件数据 + + + + 数据库提供器选项 + + + + + SqlServer 提供器程序集 + + + + + Sqlite 提供器程序集 + + + + + Cosmos 提供器程序集 + + + + + 内存数据库 提供器程序集 + + + + + MySql 提供器程序集 + + + + + MySql 官方包(更新不及时,只支持 8.0.23+ 版本, 所以单独弄一个分类) + + + + + PostgreSQL 提供器程序集 + + + + + Oracle 提供器程序集 + + + + + Firebird 提供器程序集 + + + + + Dm 提供器程序集 + + + + + 不支持存储过程的数据库 + + + + + 不支持函数的数据库 + + + + + 不支持表值函数的数据库 + + + + + 构造函数 + + + + + 判断是否是特定数据库 + + + + bool + + + + 获取数据库上下文连接字符串 + + + + + + + + 获取默认拦截器 + + + + + 数据库上下文 [AppDbContext] 特性缓存 + + + + + 获取数据库上下文 [AppDbContext] 特性 + + + + + + + 不支持操作类型 + + + + + 检查是否支持存储过程 + + 数据库提供器名词 + 命令类型 + + + + 检查是否支持函数 + + 数据库提供器名 + 数据库函数类型 + + + + 实体执行部件 + + + + 实体执行组件 + + + 实体执行部件 + + + + + 实体 + + + + + 数据库上下文定位器 + + + + + 数据库上下文执行作用域 + + + + + 获取实体同类(族群) + + DbSet{TEntity} + + + + 新增一条记录 + + + 代理的实体 + + + + 新增一条记录 + + + 异步取消令牌 + 代理的实体 + + + + 新增一条记录并立即提交 + + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 接受所有提交更改 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 异步取消令牌 + + 数据库中的实体 + + + + 新增一条记录并立即提交 + + 接受所有提交更改 + + 异步取消令牌 + 数据库中的实体 + + + + 更新一条记录 + + + 代理中的实体 + + + + 更新一条记录 + + + 代理中的实体 + + + + 更新一条记录并立即提交 + + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + + 数据库中实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中特定属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + + 数据库中实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 删除一条记录 + + 代理中的实体 + + + + 删除一条记录 + + 代理中的实体 + + + + 删除一条记录并立即提交 + + 代理中的实体 + + + + 删除一条记录并立即提交 + + 接受所有更改 + + + + + 删除一条记录并立即提交 + + 取消异步令牌 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 接受所有更改 + 取消异步令牌 + 代理中的实体 + + + + 获取实体仓储 + + + + + + 设置实体 + + + + + + + 设置数据库执行作用域 + + + + + + + 设置数据库上下文定位器 + + + + + + + 设置数据库上下文定位器 + + + + + + 存储过程输出返回值 + + + + + 构造函数 + + + + + 存储过程输出返回值 + + 泛型版本 + + + + 构造函数 + + + + + 输出值 + + + + + 返回值 + + + + + 结果集 + + + + + 存储过程输出值模型 + + + + + 输出参数名 + + + + + 输出参数值 + + + + + 构建 Sql 字符串执行部件 + + + 构建 Sql 字符串执行部件 + + + 构建 Sql 字符串执行部件 + + + + + Sql 字符串 + + + + + 设置超时时间 + + + + + 数据库上下文定位器 + + + + + 设置服务提供器 + + + + + Sql 查询返回 DataTable + + 命令参数 + DataTable + + + + Sql 查询返回 DataTable + + 参数模型 + DataTable + + + + Sql 查询返回 DataTable + + 命令参数 + Task{DataTable} + + + + Sql 查询返回 DataTable + + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 DataTable + + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + 参数模型 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 DataSet + + 命令参数 + DataSet + + + + Sql 查询返回 DataSet + + 参数模型 + DataSet + + + + Sql 查询返回 DataSet + + 命令参数 + Task{DataSet} + + + + Sql 查询返回 DataSet + + 命令参数 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 DataSet + + 参数模型 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + 参数模型 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + Task{List{T1}} + + + + Sql 查询返回 List 集合 + + 返回类型 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + 参数模型 + 异步取消令牌 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行 Sql 无数据返回 + + 命令参数 + int + + + + 执行 Sql 无数据返回 + + 参数模型 + int + + + + 执行 Sql 无数据返回 + + 命令参数 + int + + + + 执行 Sql 无数据返回 + + 命令参数 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 返回 单行单列 + + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + 参数模型 + object + + + + 执行 Sql 返回 单行单列 + + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + 命令参数 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + 参数模型 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + 参数模型 + TResult + + + + 执行 Sql 返回 单行单列 + + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + 命令参数 + 异步取消令牌 + TResult + + + + 执行 Sql 返回 单行单列 + + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程返回 DataTable + + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 参数模型 + DataTable + + + + 执行存储过程返回 DataTable + + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 命令参数 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 DataTable + + 参数模型 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 List 集合 + + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 参数模型 + List{T} + + + + 执行存储过程返回 List 集合 + + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 命令参数 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 List 集合 + + 参数模型 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 DataSet + + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 参数模型 + DataSet + + + + 执行存储过程返回 DataSet + + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 命令参数 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 DataSet + + 参数模型 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 List 集合 + + 返回类型 + 命令参数 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 参数模型 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 命令参数 + Task{List{T1}} + + + + 执行存储过程返回 List 集合 + + 返回类型 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 参数模型 + 异步取消令牌 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 单行单列 + + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 参数模型 + object + + + + 执行存储过程返回 单行单列 + + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 命令参数 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 参数模型 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 参数模型 + TResult + + + + 执行存储过程返回 单行单列 + + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 命令参数 + 异步取消令牌 + TResult + + + + 执行存储过程返回 单行单列 + + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程无数据返回 + + 命令参数 + int + + + + 执行存储过程无数据返回 + + 参数模型 + int + + + + 执行存储过程无数据返回 + + 命令参数 + int + + + + 执行存储过程无数据返回 + + 命令参数 + 异步取消令牌 + int + + + + 执行存储过程无数据返回 + + 参数模型 + 异步取消令牌 + int + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行标量函数返回 单行单列 + + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + + object + + + + 执行标量函数返回 单行单列 + + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + 命令参数 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 参数模型 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 参数模型 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 命令参数 + 异步取消令牌 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 参数模型 + 异步取消令牌 + object + + + + 执行表值函数返回 DataTable + + 命令参数 + DataTable + + + + 执行表值函数返回 DataTable + + 参数模型 + DataTable + + + + 执行表值函数返回 DataTable + + 命令参数 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 命令参数 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 参数模型 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 命令参数 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + 获取 Sql 执行仓储 + + + + + + 设置 Sql 字符串 + + + + + + + 设置 ADO.NET 超时时间 + + 单位秒 + + + + + 设置数据库执行作用域 + + + + + + + 设置数据库上下文定位器 + + + + + + + 设置数据库上下文定位器 + + + + + + 数据库上下文定位器 + + + + + 默认数据库上下文定位器 + + + + + 基于多个数据库多租户模式 + + + + + 获取数据库连接字符串 + + + + + + 基于数据库架构的多租户模式 + + + + + 获取数据库架构名称 + + + + + + 基于数据库表的多租户模式 + + + + + 获取租户Id + + + + + + 多租户依赖接口(禁止外部继承) + + + + + 租户实体 + + + + + 构造函数 + + + + + 租户Id + + + + + 租户名 + + + + + 来源主机地址 + + + + + 电子邮箱 + + + + + 手机号码 + + + + + 架构名 + + + + + 数据库链接字符串 + + + + + 创建时间 + + + + + 多租户数据库上下文定位器 + + + + + 多数据库仓储 + + + + + + 服务提供器 + + + + + 构造函数 + + 服务提供器 + + + + 切换实体 + + + + + + + 获取 Sql 操作仓储 + + + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + 可删除仓储接口 + + 实体类型 + + + + 可删除仓储接口 + + 实体类型 + 数据库上下文定位器 + + + + 可删除仓储接口 + + 实体类型 + + + + 删除一条记录 + + 实体 + 代理中的实体 + + + + 删除多条记录 + + 多个实体 + + + + 删除多条记录 + + 多个实体 + + + + 删除一条记录 + + 实体 + 代理中的实体 + + + + 删除多条记录 + + 多个实体 + Task + + + + 删除多条记录 + + 多个实体 + Task + + + + 删除一条记录并立即提交 + + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 接受所有更改 + + + + + 删除多条记录并立即提交 + + 多个实体 + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 删除多条记录并立即提交 + + 多个实体 + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 删除一条记录并立即提交 + + 实体 + 取消异步令牌 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 接受所有更改 + 取消异步令牌 + 代理中的实体 + + + + 删除多条记录并立即提交 + + 多个实体 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 根据主键删除一条记录 + + 主键 + + + + 根据主键删除一条记录 + + 主键 + 异步取消令牌 + Task + + + + 根据主键删除一条记录并立即提交 + + 主键 + + + + 根据主键删除一条记录并立即提交 + + 主键 + 接受所有更改 + + + + 根据主键删除一条记录并立即提交 + + 主键 + 异步取消令牌 + + + + + 根据主键删除一条记录并立即提交 + + 主键 + 接受所有更改 + 异步取消令牌 + + + + + 可插入仓储接口 + + 实体类型 + + + + 可插入仓储接口 + + 实体类型 + 数据库上下文定位器 + + + + 可插入仓储接口 + + 实体类型 + + + + 新增一条记录 + + 实体 + + 代理的实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增一条记录 + + 实体 + + 取消异步令牌 + 代理的实体 + + + + 新增多条记录 + + 多个实体 + Task + + + + 新增多条记录 + + 多个实体 + 取消异步令牌 + + + + + 新增一条记录并立即提交 + + 实体 + + 数据库中返回的实体 + + + + 新增一条记录并立即提交 + + 实体 + 接受所有更改 + + 数据库中返回的实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + 接受所有更改 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + 接受所有更改 + + + + 新增一条记录并立即提交 + + 实体 + 取消异步令牌 + + 数据库中返回的实体 + + + + 新增一条记录并立即提交 + + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中返回的实体 + + + + 新增多条记录并立即提交 + + 多个实体 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 仓储依赖空接口 + + + + + 可读仓储接口 + + 实体类型 + + + + 可读仓储接口 + + 实体类型 + 数据库上下文定位器 + + + + 可读仓储接口 + + 实体类型 + + + + 根据键查询一条记录 + + 键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 取消异步令牌 + 数据库实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 取消异步令牌 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 取消异步令牌 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询多条记录 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据表达式查询多条记录 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 加载关联数据 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件加载关联数据 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 判断记录是否存在 + + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 根据表达式判断记录是否存在 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 判断记录是否存在 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 根据表达式判断记录是否存在 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 根据表达式判断记录是否全部满足条件 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 根据表达式判断记录是否全部满足条件 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 查看记录条数 + + 是否跟踪实体 + 是否忽略查询过滤器 + int + + + + 根据表达式查询记录条数 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + int + + + + 查看记录条数 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + int + + + + 根据表达式查询记录条数 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + int + + + + 查看最小记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 实体 + + + + 根据表达式查看最小值 + + 最小值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + TResult + + + + 查看最小记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + 实体 + + + + 根据表达式查看最小值 + + 最小值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + TResult + + + + 查看最大记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 实体 + + + + 根据表达式查看最大值 + + 最大值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + TResult + + + + 查看最大记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + 实体 + + + + 根据表达式查看最大值 + + 最大值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + TResult + + + + 构建查询分析器 + + 是否跟踪实体 + IQueryable{TEntity} + + + + 构建查询分析器 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IQueryable{TEntity} + + + + 构建查询分析器 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IQueryable{TEntity} + + + + 直接返回数据库结果 + + 是否跟踪实体 + IEnumerable{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + List{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IEnumerable{TEntity} + + + + 直接返回数据库结果 + + 是否跟踪实体 + List{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IAsyncEnumerable{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IAsyncEnumerable{TEntity} + + + + 执行 Sql 返回 IQueryable + + sql 语句 + 命令参数 + IQueryable{TEntity} + + + + 执行 Sql 返回 IQueryable + + + 支持字符串内插语法 + + sql 语句 + IQueryable{TEntity} + + + + Sql 执行仓储接口 + + + + + Sql 执行仓储接口 + + 数据库上下文定位器 + + + + Sql 执行仓储接口 + + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 参数模型 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 参数模型 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 参数模型 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 参数模型 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 参数模型 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 参数模型 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 参数模型 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + Task{List{T1}} + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 参数模型 + 异步取消令牌 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + 异步取消令牌 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 参数模型 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + 异步取消令牌 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 参数模型 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + 异步取消令牌 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 参数模型 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 参数模型 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 参数模型 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + 异步取消令牌 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 参数模型 + 异步取消令牌 + object + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + DataTable + + + + 执行表值函数返回 DataTable + + 函数名 + 参数模型 + DataTable + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 函数名 + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 参数模型 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询仓储接口 + + + + + Sql 查询仓储接口 + + 数据库上下文定位器 + + + + Sql 查询仓储接口 + + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + DataTable + + + + Sql 查询返回 DataTable + + sql 语句 + 参数模型 + DataTable + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + Task{DataTable} + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 DataTable + + sql 语句 + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + DataSet + + + + Sql 查询返回 DataSet + + sql 语句 + 参数模型 + DataSet + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + Task{DataSet} + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 DataSet + + sql 语句 + 参数模型 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + Task{List{T1}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + 异步取消令牌 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 可更新仓储接口 + + 实体类型 + + + + 可更新仓储接口 + + 实体类型 + 数据库上下文定位器 + + + + 可更新仓储接口 + + 实体类型 + + + + 更新一条记录 + + 实体 + + 代理中的实体 + + + + 更新多条记录 + + 多个实体 + + + + 更新多条记录 + + 多个实体 + + + + 更新一条记录 + + 实体 + + 代理中的实体 + + + + 更新多条记录 + + 多个实体 + Task + + + + 更新多条记录 + + 多个实体 + Task + + + + 更新一条记录并立即提交 + + 实体 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 接受所有更改 + + 数据库中的实体 + + + + 更新多条记录并立即提交 + + 多个实体 + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 更新多条记录并立即提交 + + 多个实体 + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 更新一条记录并立即提交 + + 实体 + 取消异步令牌 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新多条记录并立即提交 + + 多个实体 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 取消异步令牌 + + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 更新一条记录中特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 可写仓储接口 + + 实体类型 + + + + 可写仓储接口 + + 实体类型 + 数据库上下文定位器 + + + + 可写仓储接口 + + 实体类型 + + + + 接受所有更改 + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + + 提交更改操作 + + + + + + 提交更改操作 + + + + + + + 提交更改操作(异步) + + + + + + + 提交更改操作(异步) + + + + + + + + 非泛型EF Core仓储实现 + + + + + 服务提供器 + + + + + 构造函数 + + 服务提供器 + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 切换多数据库上下文仓储 + + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 重新构建并切换仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 仓储 + + + + 重新构建并切换多数据库上下文仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 获取 Sql 操作仓储 + + ISqlRepository + + + + 获取多数据库上下文 Sql 操作仓储 + + ISqlRepository{TDbContextLocator} + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + EF Core仓储实现 + + 实体类型 + + + + 构造函数 + + 服务提供器 + + + + 多数据库上下文仓储 + + + + + 构造函数 + + 服务提供器 + + + + 私有仓储 + + + + 可删除仓储分部类 + + + 可插入仓储分部类 + + + 可写仓储分部类 + + + 可更新仓储分部类 + + + 可写仓储分部类 + + + + + 非泛型仓储 + + + + + 数据库上下文池 + + + + + 构造函数 + + + 服务提供器 + + + + 实体集合 + + + + + 不跟踪的(脱轨)实体 + + + + + 查看实体类型 + + + + + 数据库连接对象 + + + + + 实体追综器 + + + + + 实体模型 + + + + + 租户信息 + + + + + 数据库提供器名 + + + + + 服务提供器 + + + + + 租户Id + + + + + 判断上下文是否更改 + + bool + + + + 将实体加入数据上下文托管 + + 实体 + EntityEntry + + + + 将实体加入数据上下文托管 + + 实体 + + + + + 获取实体状态 + + 实体 + + + + + 获取实体状态 + + 实体 + EntityState + + + + 将实体属性加入托管 + + 实体 + 属性名 + PropertyEntry + + + + 将实体属性加入托管 + + 实体 + 属性名 + PropertyEntry + + + + 将实体属性加入托管 + + 属性类型 + 实体 + 属性表达式 + PropertyEntry + + + + 改变实体状态 + + 实体 + 实体状态 + EntityEntry + + + + 改变实体状态 + + 实体 + 实体状态 + EntityEntry{TEntity} + + + + 改变实体状态 + + 实体条目 + 实体状态 + EntityEntry + + + + 改变实体状态 + + 实体条目 + 实体状态 + EntityEntry{TEntity} + + + + 检查实体跟踪状态 + + + + + + + + + 检查实体跟踪状态 + + + + + + + + + + 判断是否被附加 + + 实体 + bool + + + + 判断是否被附加 + + 实体 + bool + + + + 附加实体 + + 实体 + EntityEntry + + + + 附加实体 + + 实体 + EntityEntry + + + + 附加多个实体 + + 多个实体 + + + + 附加多个实体 + + 多个实体 + + + + 取消附加实体 + + 实体 + + + + 取消附加实体 + + 实体 + + + + 取消附加实体 + + 实体条目 + + + + 取消附加实体 + + 实体条目 + + + + 获取所有数据库上下文 + + ConcurrentBag{DbContext} + + + + 判断实体是否设置了主键 + + 实体 + bool + + + + 删除数据库 + + + + + 删除数据库 + + + + + 创建数据库 + + + + + 创建数据库 + + + + + 动态改变表名 + + 表名 + + + + 动态改变数据库 + + 连接字符串 + + + + 动态改变数据库 + + 连接字符串 + 异步取消令牌 + + + + 判断是否是 SqlServer 数据库 + + bool + + + + 判断是否是 Sqlite 数据库 + + bool + + + + 判断是否是 Cosmos 数据库 + + bool + + + + 判断是否是 内存中 数据库 + + bool + + + + 判断是否是 MySql 数据库 + + bool + + + + 判断是否是 MySql 数据库 官方包(更新不及时,只支持 8.0.23+ 版本, 所以单独弄一个分类) + + bool + + + + 判断是否是 PostgreSQL 数据库 + + bool + + + + 判断是否是 Oracle 数据库 + + bool + + + + 判断是否是 Firebird 数据库 + + bool + + + + 判断是否是 Dm 数据库 + + bool + + + + 判断是否是关系型数据库 + + bool + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 切换多数据库上下文仓储 + + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 重新构建并切换仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 仓储 + + + + 重新构建并切换多数据库上下文仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 删除一条记录 + + 实体 + 代理中的实体 + + + + 删除多条记录 + + 多个实体 + + + + 删除多条记录 + + 多个实体 + + + + 删除一条记录 + + 实体 + 代理中的实体 + + + + 删除多条记录 + + 多个实体 + Task + + + + 删除多条记录 + + 多个实体 + Task + + + + 删除一条记录并立即提交 + + 实体 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 接受所有更改 + + + + + 删除多条记录并立即提交 + + 多个实体 + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 删除多条记录并立即提交 + + 多个实体 + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 删除一条记录并立即提交 + + 实体 + 取消异步令牌 + 代理中的实体 + + + + 删除一条记录并立即提交 + + 实体 + 接受所有更改 + 取消异步令牌 + 代理中的实体 + + + + 删除多条记录并立即提交 + + 多个实体 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 删除多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 根据主键删除一条记录 + + 主键 + + + + 根据主键删除一条记录 + + 主键 + 异步取消令牌 + Task + + + + 根据主键删除一条记录并立即提交 + + 主键 + + + + 根据主键删除一条记录并立即提交 + + 主键 + 接受所有更改 + + + + 根据主键删除一条记录并立即提交 + + 主键 + 异步取消令牌 + + + + + 根据主键删除一条记录并立即提交 + + 主键 + 接受所有更改 + 异步取消令牌 + + + + + 构建被删除的实体 + + 主键 + 是否真删除 + + + + + 新增一条记录 + + 实体 + + 代理的实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增一条记录 + + 实体 + + 取消异步令牌 + 代理的实体 + + + + 新增多条记录 + + 多个实体 + Task + + + + 新增多条记录 + + 多个实体 + 取消异步令牌 + + + + + 新增一条记录并立即提交 + + 实体 + + 数据库中返回的实体 + + + + 新增一条记录并立即提交 + + 实体 + 接受所有更改 + + 数据库中返回的实体 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + 接受所有更改 + + + + 新增多条记录 + + 多个实体 + + + + 新增多条记录 + + 多个实体 + 接受所有更改 + + + + 新增一条记录并立即提交 + + 实体 + + 取消异步令牌 + 数据库中返回的实体 + + + + 新增一条记录并立即提交 + + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中返回的实体 + + + + 新增多条记录并立即提交 + + 多个实体 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 新增多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 根据键查询一条记录 + + 键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 取消异步令牌 + 数据库实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 取消异步令牌 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据键查询一条记录 + + 键 + 取消异步令牌 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 数据库中的实体 + + + + 根据多个键查询一条记录 + + 多个键 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + 异步取消令牌 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 取消异步令牌 + 数据库中的实体 + + + + 查询一条记录 + + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询一条记录 + + 表达式 + 是否跟踪实体 + 异步取消令牌 + 数据库中的实体 + + + + 根据表达式查询多条记录 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据表达式查询多条记录 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 数据库中的多个实体 + + + + 根据条件执行表达式查询多条记录 + + 条件表达式集合 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 加载关联数据 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 根据条件加载关联数据 + + 条件 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 数据库中的多个实体 + + + + 判断记录是否存在 + + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 根据表达式判断记录是否存在 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 判断记录是否存在 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 根据表达式判断记录是否存在 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 根据表达式判断记录是否全部满足条件 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + bool + + + + 根据表达式判断记录是否全部满足条件 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + bool + + + + 查看记录条数 + + 是否跟踪实体 + 是否忽略查询过滤器 + int + + + + 根据表达式查询记录条数 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + int + + + + 查看记录条数 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + int + + + + 根据表达式查询记录条数 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + int + + + + 查看最小记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 实体 + + + + 根据表达式查看最小值 + + 最小值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + TResult + + + + 查看最小记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + 实体 + + + + 根据表达式查看最小值 + + 最小值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + TResult + + + + 查看最大记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 实体 + + + + 根据表达式查看最大值 + + 最大值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + TResult + + + + 查看最大记录 + + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + 实体 + + + + 根据表达式查看最大值 + + 最大值类型 + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + 取消异步令牌 + TResult + + + + 构建查询分析器 + + 是否跟踪实体 + IQueryable{TEntity} + + + + 构建查询分析器 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IQueryable{TEntity} + + + + 构建查询分析器 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IQueryable{TEntity} + + + + 直接返回数据库结果 + + 是否跟踪实体 + IEnumerable{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + List{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IEnumerable{TEntity} + + + + 直接返回数据库结果 + + 是否跟踪实体 + List{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IAsyncEnumerable{TEntity} + + + + 直接返回数据库结果 + + 表达式 + 是否跟踪实体 + 是否忽略查询过滤器 + IAsyncEnumerable{TEntity} + + + + 执行 Sql 返回 IQueryable + + sql 语句 + 命令参数 + IQueryable + + + + 执行 Sql 返回 IQueryable + + + 支持字符串内插语法 + + sql 语句 + IQueryable + + + + 更新一条记录 + + 实体 + + 代理中的实体 + + + + 更新多条记录 + + 多个实体 + + + + 更新多条记录 + + 多个实体 + + + + 更新一条记录 + + 实体 + + 代理中的实体 + + + + 更新多条记录 + + 多个实体 + Task + + + + 更新多条记录 + + 多个实体 + Task + + + + 更新一条记录并立即提交 + + 实体 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 接受所有更改 + + 数据库中的实体 + + + + 更新多条记录并立即提交 + + 多个实体 + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 更新多条记录并立即提交 + + 多个实体 + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + + + + 更新一条记录并立即提交 + + 实体 + 取消异步令牌 + + 数据库中的实体 + + + + 更新一条记录并立即提交 + + 实体 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新多条记录并立即提交 + + 多个实体 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 取消异步令牌 + + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 取消异步令牌 + Task + + + + 更新多条记录并立即提交 + + 多个实体 + 接受所有更改 + 取消异步令牌 + Task + + + + 更新一条记录中特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录中的特定属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性名 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性 + + 实体 + 属性表达式 + + 代理中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 数据库中实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性名 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + + 取消异步令牌 + 数据库中的实体 + + + + 更新一条记录并排除属性并立即提交 + + 实体 + 属性表达式 + 接受所有更改 + + 取消异步令牌 + 数据库中的实体 + + + + 忽略空值属性 + + + + + + + 接受所有更改 + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + 保存数据库上下文池中所有已更改的数据库上下文 + + + + + + + + 提交更改操作 + + + + + + 提交更改操作 + + + + + + + 提交更改操作(异步) + + + + + + + 提交更改操作(异步) + + + + + + + + 多数据库仓储 + + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 获取 Sql 操作仓储 + + + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + Sql 执行仓储分部类 + + + Sql 查询仓储分部类 + + + 私有 Sql 仓储 + + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 参数模型 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 命令参数 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 DataTable + + 存储过程名 + 参数模型 + 异步取消令牌 + DataTable + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 参数模型 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 命令参数 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 List 集合 + + 存储过程名 + 参数模型 + 异步取消令牌 + List{T} + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 参数模型 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 命令参数 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 DataSet + + 存储过程名 + 参数模型 + 异步取消令牌 + DataSet + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 参数模型 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + Task{List{T1}} + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 命令参数 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 List 集合 + + 返回类型 + 存储过程名 + 参数模型 + 异步取消令牌 + List{T1} + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 存储过程名 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + 异步取消令牌 + object + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 命令参数 + 异步取消令牌 + TResult + + + + 执行存储过程返回 单行单列 + + 存储过程名 + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 参数模型 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 命令参数 + 异步取消令牌 + int + + + + 执行存储过程无数据返回 + + 存储过程名 + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 参数模型 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 命令参数 + 异步取消令牌 + int + + + + 执行 Sql 无数据返回 + + sql 语句 + 参数模型 + 异步取消令牌 + int + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + 异步取消令牌 + object + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 命令参数 + 异步取消令牌 + TResult + + + + 执行 Sql 返回 单行单列 + + sql 语句 + 参数模型 + 异步取消令牌 + TResult + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 存储过程名 + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令参数 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令参数 + 异步取消令牌 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令模型 + ProcedureOutput + + + + 执行存储过程返回OUPUT、RETURN、结果集 + + 数据集结果 + 存储过程名 + 命令模型 + 异步取消令牌 + ProcedureOutput + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 参数模型 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 命令参数 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 函数名 + 参数模型 + 异步取消令牌 + object + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 参数模型 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 命令参数 + 异步取消令牌 + TResult + + + + 执行标量函数返回 单行单列 + + 返回值类型 + 函数名 + 参数模型 + 异步取消令牌 + object + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + DataTable + + + + 执行表值函数返回 DataTable + + 函数名 + 参数模型 + DataTable + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 函数名 + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 DataTable + + 函数名 + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 参数模型 + List{T} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + 执行表值函数返回 List 集合 + + 返回类型 + 函数名 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + DataTable + + + + Sql 查询返回 DataTable + + sql 语句 + 参数模型 + DataTable + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + Task{DataTable} + + + + Sql 查询返回 DataTable + + sql 语句 + 命令参数 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 DataTable + + sql 语句 + 参数模型 + 异步取消令牌 + Task{DataTable} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + List{T} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + 异步取消令牌 + Task{List{T}} + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + DataSet + + + + Sql 查询返回 DataSet + + sql 语句 + 参数模型 + DataSet + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + Task{DataSet} + + + + Sql 查询返回 DataSet + + sql 语句 + 命令参数 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 DataSet + + sql 语句 + 参数模型 + 异步取消令牌 + Task{DataSet} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + Task{List{T1}} + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 命令参数 + 异步取消令牌 + Task{List{T1}} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 命令参数 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 List 集合 + + 返回类型 + sql 语句 + 参数模型 + 异步取消令牌 + List{T1} + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + Sql 查询返回 元组 集合 + + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + 元组元素类型 + sql 语句 + 参数模型 + 异步取消令牌 + 元组类型 + + + + 服务提供器 + + + + + 构造函数 + + + 服务提供器 + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 数据库操作对象 + + + + + 切换仓储 + + 数据库上下文定位器 + 仓储 + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + 将仓储约束为特定仓储 + + 特定仓储 + TRestrainRepository + + + + 确保工作单元(事务)可用 + + + + + 随机主从库仓储(主库是默认数据库) + + + + + 随机主从库仓储 + + 主库 + + + + 获取主库仓储 + + 实体类型 + + + + + 动态获取从库(随机) + + 实体类型 + + + + + 动态获取从库(自定义) + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + + + + 获取主库仓储 + + 实体类型 + + + + + 获取从库仓储 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + + + + 获取从库仓储2 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + + + + 获取从库仓储3 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + + + + 获取从库仓储4 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 获取从库仓储5 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 获取从库仓储6 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 获取从库仓储7 + + 实体类型 + + + + + 非泛型仓储 + + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 切换多数据库上下文仓储 + + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 重新构建并切换仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 仓储 + + + + 重新构建并切换多数据库上下文仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 获取 Sql 操作仓储 + + ISqlRepository + + + + 获取多数据库上下文 Sql 操作仓储 + + ISqlRepository{TDbContextLocator} + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + 仓储接口 + + 实体类型 + + + + 多数据库上下文仓储 + + 实体类型 + 数据库上下文定位器 + + + + 私有公共实体 + + + + + + 实体集合 + + + + + 不跟踪的(脱轨)实体 + + + + + 查看实体类型 + + + + + 数据库连接对象 + + + + + 实体追综器 + + + + + 实体模型 + + + + + 租户信息 + + + + + 数据库提供器名 + + + + + 服务提供器 + + + + + 租户Id + + + + + 判断上下文是否更改 + + bool + + + + 将实体加入数据上下文托管 + + 实体 + EntityEntry + + + + 将实体加入数据上下文托管 + + 实体 + + + + + 获取实体状态 + + 实体 + + + + + 获取实体状态 + + 实体 + EntityState + + + + 将实体属性加入托管 + + 实体 + 属性名 + PropertyEntry + + + + 将实体属性加入托管 + + 实体 + 属性名 + PropertyEntry + + + + 将实体属性加入托管 + + 属性类型 + 实体 + 属性表达式 + PropertyEntry + + + + 改变实体状态 + + 实体 + 实体状态 + EntityEntry + + + + 改变实体状态 + + 实体 + 实体状态 + EntityEntry{TEntity} + + + + 改变实体状态 + + 实体条目 + 实体状态 + EntityEntry + + + + 改变实体状态 + + 实体条目 + 实体状态 + EntityEntry{TEntity} + + + + 检查实体跟踪状态 + + + + + + + + + 检查实体跟踪状态 + + + + + + + + + + 判断是否被附加 + + 实体 + bool + + + + 判断是否被附加 + + 实体 + bool + + + + 附加实体 + + 实体 + EntityEntry + + + + 附加实体 + + 实体 + EntityEntry + + + + 附加多个实体 + + 多个实体 + + + + 附加多个实体 + + 多个实体 + + + + 取消附加实体 + + 实体 + + + + 取消附加实体 + + 实体 + + + + 取消附加实体 + + 实体条目 + + + + 取消附加实体 + + 实体条目 + + + + 获取所有数据库上下文 + + ConcurrentBag{DbContext} + + + + 判断实体是否设置了主键 + + 实体 + bool + + + + 删除数据库 + + + + + 删除数据库 + + + + + 创建数据库 + + + + + 创建数据库 + + + + + 动态改变表名 + + 表名 + + + + 动态改变数据库 + + 连接字符串 + + + + 动态改变数据库 + + 连接字符串 + 异步取消令牌 + + + + 判断是否是 SqlServer 数据库 + + bool + + + + 判断是否是 Sqlite 数据库 + + bool + + + + 判断是否是 Cosmos 数据库 + + bool + + + + 判断是否是 内存中 数据库 + + bool + + + + 判断是否是 MySql 数据库 + + bool + + + + 判断是否是 MySql 数据库 官方包(更新不及时,只支持 8.0.23+ 版本, 所以单独弄一个分类) + + bool + + + + 判断是否是 PostgreSQL 数据库 + + bool + + + + 判断是否是 Oracle 数据库 + + bool + + + + 判断是否是 Firebird 数据库 + + bool + + + + 判断是否是 Dm 数据库 + + bool + + + + 判断是否是关系型数据库 + + bool + + + + 切换仓储 + + 实体类型 + 仓储 + + + + 切换多数据库上下文仓储 + + 实体类型 + 数据库上下文定位器 + 仓储 + + + + 重新构建并切换仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 仓储 + + + + 重新构建并切换多数据库上下文仓储 + + 特别注意,Scoped 必须手动释放 + 实体类型 + 数据库上下文定位器 + 仓储 + + + + Sql 操作仓储接口 + + + + + Sql 操作仓储接口 + + 数据库上下文定位器 + + + + 私有 Sql 仓储 + + + + + 数据库操作对象 + + + + + 数据库上下文 + + + + + 动态数据库上下文 + + + + + 切换仓储 + + 数据库上下文定位器 + 仓储 + + + + 解析服务 + + + + + + + 解析服务 + + + + + + + 将仓储约束为特定仓储 + + 特定仓储 + TRestrainRepository + + + + 确保工作单元(事务)可用 + + + + + 默认主库主从仓储 + + + + + 构造函数 + + + 非泛型仓储 + + + + 主从库仓储 + + 主库 + + + + 服务提供器 + + + + + 非泛型仓储 + + + + + 构造函数 + + + 非泛型仓储 + + + + 获取主库仓储 + + 实体类型 + + + + + 动态获取从库(随机) + + 实体类型 + + + + + 动态获取从库(自定义) + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取主库仓储 + + 实体类型 + + + + + 获取从库仓储 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储2 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储3 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储4 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储5 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储6 + + 实体类型 + + + + + 主从库仓储 + + 主库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + 从库 + + + + 非泛型仓储 + + + + + 构造函数 + + 非泛型仓储 + + + + 获取从库仓储7 + + 实体类型 + + + + + Sql 操作仓储实现 + + + + + 构造函数 + + 服务提供器 + + + + Sql 操作仓储实现 + + + + + 构造函数 + + 服务提供器 + + + + Sql 对象类型执行代理 + + + + + 构造函数 + + 对象名 + + + + 对象名 + + + + + Sql 执行代理基特性 + + + + + 配置拦截唯一 ID(比方法名优先级高) + + + + + Sql 语句执行代理 + + + + + 构造函数 + + + + + + Sql 语句 + + + + + 命令类型 + + + + + Sql 代理拦截器 + + 如果贴在静态方法中且 InterceptorId/MethodName 为空,则为全局拦截 + + + + 构造函数 + + + + + 构造函数 + + + + + + 方法名称 + + + + + Sql 代理指定定位器特性 + + + + + 构造函数 + + + + + + 定位器 + + + + + Sql 执行特性 + + + + + 构造函数 + + sql 语句 + + + + Sql 函数特性 + + + + + 构造函数 + + 函数名 + + + + 数据库存储过程特性 + + + + + 构造函数 + + 存储过程名 + + + + 配置 ADO.NET 超时时间 + + + + + 构造函数 + + + + + + 超时时间(秒) + + + + + Sql 代理方法元数据 + + + + + 参数模型 + + + + + 方法返回值 + + + + + 数据库操作上下文 + + + + + 是否是异步方法 + + + + + 命令类型 + + + + + 最终 Sql 语句 + + + + + 当前执行的方法 + + + + + 传递参数 + + + + + 拦截Id + + + + + Sql 执行代理依赖接口 + + + + + 切换数据库上下文定位器 + + + + + + + 重置运行时数据库上下文定位器 + + + + + Sql 执行代理类 + + + + + 实例对象 + + + + + 服务提供器 + + + + + 数据库上下文定位器类型 + + + + + 拦截同步方法 + + + + + + + + 拦截异步方法 + + + + + + + + 拦截异步带返回值方法 + + + + + + + + + 执行 Sql 操作 + + 代理方法 + + + + + 执行 Sql 操作 + + 代理方法 + + + + + 执行 Sql 操作 + + 代理方法 + + + + + 获取代理方法信息 + + 方法 + 参数列表 + SqlProxyMethod + + + + 获取 ADO.NET 超时时间 + + + + + + + + 创建数据库命令参数字典 + + + + + + + + 获取上下文定位器 + + + + + + + + + 添加方法拦截 + + + + + + + 手动提交 SaveChanges + 默认情况下,框架会自动在方法结束之时调用 SaveChanges 方法,贴此特性可以忽略该行为 + + + + + 工作单元配置特性 + + + + + 构造函数 + + + + + 构造函数 + + + + + + 确保事务可用 + 此方法为了解决静态类方式操作数据库的问题 + + + + + 工作单元拦截器 + + + + + MiniProfiler 分类名 + + + + + 过滤器排序 + + + + + 排序属性 + + + + + 数据库上下文池 + + + + + 构造函数 + + + + + + 拦截请求 + + 动作方法上下文 + 中间件委托 + + + + + 创建作用域静态类 + + + 创建作用域静态类 + + + + + 创建一个工作单元作用域 + + + + + + + 创建一个工作单元作用域 + + + + + + + 创建一个工作单元作用域 + + + + + + + + + 创建一个工作单元作用域 + + + + + + + + + 创建一个作用域范围 + + + + + + + 创建一个作用域范围 + + + + + + + 创建一个作用域范围 + + + + + + + + + 创建一个作用域范围 + + + + + + + + + 创建一个作用域 + + + + + + + 设置依赖注入方式 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 添加服务方式,存在不添加,或继续添加 + + + + + 注册选项 + + + + + 注册别名 + + 多服务时使用 + + + + 排序,排序越大,则在后面注册 + + + + + 排除接口 + + + + + 代理类型,必须继承 DispatchProxy、IDispatchProxy + + + + + 跳过全局代理 + + + + + 不被扫描和发现的特性 + + 用于程序集扫描类型或方法时候 + + + + 依赖空接口(禁止外部继承) + + + + + 作用域服务注册依赖 + + + + + 单例服务注册依赖 + + + + + 瞬时服务注册依赖 + + + + + 服务注册方式 + + + + + 如果存在则覆盖 + + + + + 如果存在则跳过,默认方式 + + + + + 注册范围 + + + + + 只注册自己 + + + + + 第一个接口 + + + + + 自己和第一个接口,默认值 + + + + + 所有接口 + + + + + 注册自己包括所有接口 + + + + + 注册类型 + + + + + 瞬时 + + + + + 作用域 + + + + + 单例 + + + + + 依赖注入拓展 + + + + + 解析服务 + + + + + + + + + 解析服务 + + + + + + + + + 外部注册类型模型 + + + + + 接口类型,格式:"程序集名称;接口完整名称" + + + + + 实例类型,格式:"程序集名称;接口完整名称" + + + + + 注册类型 + + + + + 添加服务方式,存在不添加,或继续添加 + + + + + 注册选项 + + + + + 注册别名 + + 多服务时使用 + + + + 排序,排序越大,则在后面注册 + + + + + 代理类型,格式:"程序集名称;接口完整名称" + + + + + 依赖注入配置选项 + + + + + 外部注册定义 + + + + + 后期配置 + + + + + + + AES 加解密 + + + + + 加密 + + 加密文本 + 密钥 + + + + + 解密 + + 加密后字符串 + 密钥 + + + + + DESC 加解密 + + + + + 加密 + + 加密文本 + 密钥 + 是否输出大写加密,默认 false + + + + + 解密 + + 加密后字符串 + 密钥 + 是否输出大写加密,默认 false + + + + + MD5 加密 + + + + + MD5实例 + + + + + 静态构造函数 + + + + + 字符串 MD5 比较 + + 加密文本 + MD5 字符串 + 是否输出大写加密,默认 false + bool + + + + MD5 加密 + + 加密文本 + 是否输出大写加密,默认 false + + + + + RSA 加密 + + + + + 生成 RSA 秘钥 + + 大小必须为 2048 到 16384 之间,且必须能被 8 整除 + + + + + 加密 + + 明文内容 + 公钥 + + + + + 解密 + + 密文内容 + 私钥 + + + + + DataEncryption 字符串加密拓展 + + + + + 字符串的 MD5 + + + 是否输出大写加密,默认 false + string + + + + 字符串的 MD5 + + + + 是否输出大写加密,默认 false + string + + + + 字符串 AES 加密 + + 需要加密的字符串 + + string + + + + 字符串 AES 解密 + + + + string + + + + 字符串 DESC 加密 + + 需要加密的字符串 + 密钥 + 是否输出大写加密,默认 false + string + + + + 字符串 DESC 解密 + + + 密钥 + 是否输出大写加密,默认 false + string + + + + 字符串 RSA 加密 + + 需要加密的文本 + 公钥 + + + + + 字符串 RSA 解密 + + 需要解密的文本 + 私钥 + + + + + 验证项元数据 + + + + + 构造函数 + + 正则表达式 + 失败提示默认消息 + 正则表达式匹配选项 + + + + 正则表达式 + + + + + 默认验证失败类型 + + + + + 正则表达式选项 + + + + + 验证消息特性 + + + + + 构造函数 + + + + + + 错误消息 + + + + + 验证消息类型特性 + + + + + 验证类型特性 + + + + + 验证类型 + + + + + 数值类型 + + 表达式:^\+?(:?(:?\d+\.\d+)?$|(:?\d+))?$|(-?\d+)(\.\d+)?$ + + + + + + 正数 + + 表达式:^(0\.0*[1-9]+[0-9]*$|[1-9]+[0-9]*\.[0-9]*[0-9]$|[1-9]+[0-9]*$) + + + + + + 负数 + + 表达式:^-(0\.0*[1-9]+[0-9]*$|[1-9]+[0-9]*\.[0-9]*[0-9]$|[1-9]+[0-9]*$) + + + + + + 整数 + + 表达式:^-?[1-9]+[0-9]*$|^0$ + + + + + + 金钱类型 + + 表达式:^(([0-9]|([1-9][0-9]{0,9}))((\.[0-9]{1,2})?))$ + + + + + + 日期类型 + + 表达式:^(?:(?:1[6-9]|[2-9][0-9])[0-9]{2}([-/.]?)(?:(?:0?[1-9]|1[0-2])\1(?:0?[1-9]|1[0-9]|2[0-8])|(?:0?[13-9]|1[0-2])\1(?:29|30)|(?:0?[13578]|1[02])\1(?:31))|(?:(?:1[6-9]|[2-9][0-9])(?:0[48]|[2468][048]|[13579][26])|(?:16|[2468][048]|[3579][26])00)([-/.]?)0?2\2(?:29))(\s+([01][0-9]:|2[0-3]:)?[0-5][0-9]:[0-5][0-9])?$ + + + + + + 时间类型 + + 表达式:^(\d{1,2})(:)?(\d{1,2})\2(\d{1,2})$ + + + + + + 身份证号码 + + 表达式:(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$) + + + + + + 邮政编码 + + 表达式:^[0-9]{6}$ + + + + + + 手机号码 + + 表达式:^1[3456789][0-9]{9}$ + + + + + + 固话格式 + + 表达式:(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$) + + + + + + 手机或固话类型 + + 表达式:(^1[3456789][0-9]{9}$)|((^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)) + + + + + + 邮件类型 + + 表达式:^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$ + + + + + + 网址类型 + + 表达式:^(\w+:\/\/)?\w+(\.\w+)+.*$ + + + + + + 颜色类型 + + 表达式:(^#([0-9a-f]{6}|[0-9a-f]{3})$)|(^rgb\(([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\,([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\,([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\)$)|(^rgba\(([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\,([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\,([0-9]|[0-9][0-9]|25[0-5]|2[0-4][0-9]|[0-1][0-9][0-9])\,(1|1.0|0.[0-9])\)$) + + + + + + 中文 + + 表达式:^[\u4e00-\u9fa5]+$ + + + + + + IPv4 类型 + + 表达式:^((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){3}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})$ + + + + + + IPv6 类型 + + 表达式:/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*$ + + + + + + 年龄 + + 表达式:^[1-99]?\d*$ + + + + + + 中文名 + + 表达式:^[\u0391-\uFFE5]{2,15}$ + + + + + + 英文名 + + 表达式:^[A-Za-z]{1,161}$ + + + + + + 纯大写 + + 表达式:^[A-Z]+$ + + + + + + 纯小写 + + 表达式:^[a-z]+$ + + + + + + ASCII 编码 + + 表达式:^[\x00-\xFF]+$ + + + + + + MD5 加密字符串 + + 表达式:^([a-fA-F0-9]{32})$ + + + + + + 压缩文件格式 + + 表达式:(.*)\.(rar|zip|7zip|tgz)$ + + + + + + 图片格式 + + 表达式:(.*)\.(jpg|gif|ico|jpeg|png)$ + + + + + + 文档格式 + + 表达式:(.*)\.(doc|xls|docx|xlsx|pdf|md)$ + + + + + + MP3 格式 + + 表达式:(.*)\.(mp3)$ + + + + + + Flash 格式 + + 表达式:(.*)\.(swf|fla|flv)$ + + + + + + 视频文件格式 + + 表达式:(.*)\.(rm|rmvb|wmv|avi|mp4|3gp|mkv)$ + + + + + + 字母加数字组合 + + 表达式:^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]*$ + + + + + + 数据验证拓展类 + + + + + 拓展方法,验证类类型对象 + + 对象实例 + 是否验证所有属性 + 验证结果 + + + + 拓展方法,验证单个值 + + 单个值 + 验证特性 + + + + + 拓展方法,验证单个值 + + 单个值 + 验证类型 + + + + + 拓展方法,验证单个值 + + 单个值 + 验证逻辑 + 验证类型 + + + + + 拓展方法,验证类类型对象 + + 对象实例 + 是否验证所有属性 + + + + 拓展方法,验证单个值 + + 单个值 + 验证特性 + + + + 拓展方法,验证单个值 + + 单个值 + 验证类型 + + + + 拓展方法,验证单个值 + + 单个值 + 验证逻辑 + 验证类型 + + + + 拓展方法,验证单个值 + + 单个值 + 正则表达式 + 正则表达式选项 + + + + + 直接抛出异常信息 + + + + + + 数据验证控制器 + + + + + MiniProfiler 分类名 + + + + + 过滤器排序 + + + + + 排序属性 + + + + + 是否是可重复使用的 + + + + + 动作方法执行之前操作 + + + + + + 设置验证失败结果 + + 动作方法执行上下文 + 模型验证状态 + + + + + + 动作方法执行完成操作 + + + + + + 数据验证结果 + + + + + 验证状态 + + + + + 验证结果 + + + + + 成员或值 + + + + + 验证失败模型 + + + + + 构造函数 + + + + + + + 出错字段 + + + + + 错误列表 + + + + + 验证上下文 + + + + + 输出验证信息 + + + + + + + 验证消息配置选项 + + + + + 验证消息配置表 + + + + + 验证消息类型提供器 + + + + + 验证消息类型定义 + + + + + 数据验证器 + + + + + 所有验证类型 + + + + + 所有验证类型 + + + + + 验证类型正则表达式 + + + + + 构造函数 + + + + + 验证类类型对象 + + 对象实例 + 是否验证所有属性 + 验证结果 + + + + 验证单个值 + + 单个值 + 验证特性 + + + + + 正则表达式验证 + + + + 正则表达式选项 + + + + + 验证类型验证 + + + + + + + + 验证类型验证 + + + 验证方式 + + + + + + 获取验证类型验证Item集合 + + + + + 获取验证类型正则表达式(需要缓存) + + + + + + + 获取所有验证类型 + + + + + + 获取所有验证消息类型 + + + + + + 获取验证类型所有有效的正则表达式 + + + + + + 替换默认验证失败消息 + + 验证唯一名称 + + + + + + 连续 GUID 类型选项 + + + + + 标准连续 GUID 字符串 + + + + + Byte 数组类型的连续 `GUID` 字符串 + + + + + 连续部分在末尾展示 + + + + + 分布式 ID 生成器 + + + + + 生成逻辑 + + + + + + + 连续 GUID ID 生成器 + 代码参考自:https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/blob/ebe011a6f1b2a2a9709fe558cfc7ed3215b55c37/src/EFCore.MySql/ValueGeneration/Internal/MySqlSequentialGuidValueGenerator.cs + + + + + 随机数生成器 + + + + + 生成逻辑 + + + + + + + ID 生成器 + + + + + 生成唯一 ID + + + + + + + + 生成连续 GUID + + + + + + + 连续 GUID 配置 + + + + + 当前时间 + + + + + LittleEndianBinary 16 格式化 + + + + + 短 ID 约束 + + + + + 最小长度 + + + + + 最大长度 + + + + + 最小可选字符长度 + + + + + 随机数帮助类 + + + + + 随机数对象 + + + + + 线程锁 + + + + + 生成线程安全的范围内随机数 + + + + + + + + 短 ID 生成配置选项 + + + + + 是否使用数字 + 默认 false + + + + + 是否使用特殊字符 + 默认 true + + + + + 设置短 ID 长度 + + + + + 短 ID 生成核心代码 + 代码参考自:https://github.com/bolorundurowb/shortid + + + + + 短 ID 生成器期初数据 + + + + + 线程安全锁 + + + + + 生成目前比较主流的短 ID + 包含字母、数字,不包含特殊字符 + 默认生成 8 位 + + + + + + 生成短 ID + + + + + + + 设置参与运算的字符,最少 50 位 + + + + + + 设置种子步长 + + + + + + 重置所有配置 + + + + + 动态 WebApi特性接口 + + + + + 将 Action 所有参数 [FromQuery] 化 + + + + + 默认构造函数 + + + + + 动态接口控制器应用模型转换器 + + + + + 动态接口控制器配置实例 + + + + + 带版本的名称正则表达式 + + + + + 默认方法名映射规则 + + + + + 构造函数 + + + + + 配置应用模型信息 + + 引用模型 + + + + 配置控制器 + + 控制器模型 + 接口描述配置 + + + + 配置控制器区域 + + + + + + + 配置控制器名称 + + 控制器模型 + 接口描述配置 + + + + 配置动作方法 + + 控制器模型 + 接口描述配置 + 控制器接口描述配置 + 是否贴有 ApiController 特性 + + + + 配置动作方法接口可见性 + + 动作方法模型 + + + + 配置动作方法名称 + + 动作方法模型 + 接口描述配置 + + + + + + 配置动作方法请求谓词特性 + + 动作方法模型 + + + + 处理类类型参数(添加[FromBody] 特性) + + + + + + 配置动作方法路由特性 + + 动作方法模型 + 接口描述配置 + 控制器接口描述配置 + + + + + + + 生成控制器路由模板 + + + + 参数路由模板 + + + + + 生成参数路由模板(非引用类型) + + 动作方法模型 + + + + + + 配置控制器和动作方法名称 + + + + + + + + + + + 检查是否设置了 KeepName参数 + + + + + + + + 检查是否设置了 KeepVerb 参数 + + + + + + + + 判断切割命名参数是否配置 + + + + + + + + 检查是否启用小写路由 + + + + + + + + 配置规范化结果类型 + + + + + + 解析名称中的版本号 + + 名称 + 名称和版本号 + + + + 获取方法名映射 [HttpMethod] 规则 + + + + + + 动态Api控制器依赖接口 + + + + + 参数路由模板 + + + + + 构造函数 + + + + + 控制器之前的参数 + + + + + 控制器之后的参数 + + + + + 行为之前的参数 + + + + + 行为之后的参数 + + + + + 常量、公共方法配置类 + + + + + 分组分隔符 + + + + + 请求动词映射字典 + + + + + 控制器排序集合 + + + + + 构造函数 + + + + + 缓存集合 + + + + + 是否是Api控制器 + + type + + + + + 清除字符串前后缀 + + 字符串 + 0:前后缀,1:后缀,-1:前缀 + 前后缀集合 + + + + + 切割骆驼命名式字符串 + + + + + + + 动态接口控制器配置 + + + + + 默认路由前缀 + + + + + 默认请求谓词 + + + + + 默认模块名称 + + + + + 小写路由 + + + + + 保留行为名称谓词 + + + + + 保留名称 + + + + + 骆驼命名分隔符 + + + + + 版本号分隔符 + + + + + 模型转查询参数(只有GET、HEAD请求有效) + + + + + 支持Mvc控制器处理 + + + + + 配置参数 [FromQuery] 化,默认 false ([FromRoute]) + + + + + 被舍弃的控制器名称前后缀 + + + + + 被舍弃的行为名称前后缀 + + + + + 复写默认配置路由规则配置 + + + + + 默认区域 + + + + + 选项后期配置 + + + + + + + 动态接口控制器特性提供器 + + + + + 扫描控制器 + + 类型 + bool + + + + 订阅消息特性 + + + + + 构造函数 + + + + + + 消息Id + + + + + 订阅处理程序空依赖接口 + + + + + 轻量级消息中心(进程内) + + + + + 消息注册队列 + + + + + 类型消息 Id 注册表 + + + + + 私有构造函数 + + + + + 采用延迟加载设计模式处理单例 + + + + + 获取消息中心对象 + + + + + 订阅消息 + + + + + + + 订阅消息 + + + + + + + 发送消息 + + + + 是否同步执行 + + + + 取消订阅 + + + + + + 订阅消息 + + + + + + + + 订阅消息 + + + + + + + + 轻量级消息中心(进程内) + + + + + 订阅消息 + + + + + + + 订阅消息 + + + + + + + 发送消息 + + + + 是否同步执行 + + + + 取消订阅 + + + + + + 异常元数据特性 + + + + + 构造函数 + + 错误消息 + 格式化参数 + + + + 私有错误消息 + + + + + 错误消息 + + + + + 错误码 + + + + + 格式化参数 + + + + + 错误代码类型特性 + + + + + 异常复写特性 + + + + + 默认构造函数 + + + + + 构造函数 + + 错误编码 + 格式化参数 + + + + 捕获特定异常类型异常(用于全局异常捕获) + + + + + + 错误编码 + + + + + 异常类型 + + + + + 私有错误消息 + + + + + 错误消息 + + + + + 格式化参数 + + + + + 自定义友好异常类 + + + + + 构造函数 + + + + + 构造函数 + + + + + + + 构造函数 + + + + + + + + 构造函数 + + + + + + + 错误码 + + + + + 异常拓展 + + + + + 设置异常状态码 + + + + + + + + 全局异常处理 + + + + + 异常拦截 + + + + + + + 方法异常类 + + + + + 出异常的方法 + + + + + 异常特性 + + + + + 抛异常静态类 + + + + + MiniProfiler 分类名 + + + + + 方法错误异常特性 + + + + + 错误代码类型 + + + + + 错误消息字典 + + + + + 友好异常设置 + + + + + 构造函数 + + + + + 抛出字符串异常 + + 异常消息 + String.Format 参数 + 异常实例 + + + + 抛出字符串异常 + + 异常消息 + 具体异常类型 + String.Format 参数 + 异常实例 + + + + 抛出错误码异常 + + 错误码 + String.Format 参数 + 异常实例 + + + + 抛出错误码异常 + + 错误码 + 具体异常类型 + String.Format 参数 + 异常实例 + + + + 重试有异常的方法,还可以指定特定异常 + + + 重试次数 + 重试间隔时间 + 异常类型,可多个 + + + + 重试有异常的方法,还可以指定特定异常 + + + + 重试次数 + 重试间隔时间 + 异常类型,可多个 + + + + 打印错误到 MiniProfiler 中 + + + + + + 格式化错误消息 + + 错误消息 + 格式化参数 + + + + + 获取错误码消息 + + + + + + + + 处理枚举类型错误码 + + 错误码 + + + + + 获取错误代码类型 + + + + + + 获取所有错误消息 + + + + + + 处理异常配置数据 + + 错误消息配置对象 + + 方式:数组第一个元素为错误码,第二个参数为错误消息,剩下的参数为错误码格式化字符串 + + + + + + 获取堆栈中顶部抛异常方法 + + + + + + 获取错误代码消息实体 + + 字段对象 + (object key, object value) + + + + 获取错误码字符串 + + + + + + + + 异常配置选项,最优的方式是采用后期配置,也就是所有异常状态码先不设置(推荐) + + + + + 异常状态码配置列表 + + + + + 友好异常配置选项 + + + + + 隐藏错误码 + + + + + 默认错误码 + + + + + 默认错误消息 + + + + + 选项后期配置 + + + + + + + 异常错误代码提供器 + + + + + 错误代码定义类型 + + + + + 即时通信集线器配置特性 + + + + + 构造函数 + + + + + + 配置终点路由地址 + + + + + 即时通信静态类 + + + + + 获取集线器实例 + + + + + + + + 获取强类型集线器实例 + + + + + + + + + DateTime 类型序列化 + + + + + 默认构造函数 + + + + + 构造函数 + + + + + + 时间格式化格式 + + + + + 反序列化 + + + + + + + + + 序列化 + + + + + + + + DateTimeOffset 类型序列化 + + + + + 默认构造函数 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 时间格式化格式 + + + + + 是否输出为为当地时间 + + + + + 反序列化 + + + + + + + + + 序列化 + + + + + + + + JSON 静态帮助类 + + + + + 获取 JSON 序列化提供器 + + + + + + + 序列化对象 + + + + 是否继承全局配置,默认 true + + + + + + 反序列化字符串 + + + + + 是否继承全局配置,默认 true + + + + + + 获取 JSON 配置选项 + + + + + + + + Json 序列化提供器 + + + + + 序列化对象 + + + + 是否继承全局配置,默认 true + + + + + 反序列化字符串 + + + + + 是否继承全局配置,默认 true + + + + + 返回读取全局配置的 JSON 选项 + + + + + + System.Text.Json 序列化提供器(默认实现) + + + + + 获取 JSON 配置选项 + + + + + 构造函数 + + + + + + 序列化对象 + + + + 是否继承全局配置,默认 true + + + + + 反序列化字符串 + + + + + 是否继承全局配置,默认 true + + + + + 返回读取全局配置的 JSON 选项 + + + + + + EF Core Linq 拓展 + + + + + 创建 Linq/Lambda 表达式 + + 泛型类型 + 表达式 + 新的表达式 + + + + 创建 Linq/Lambda 表达式,支持索引器 + + 泛型类型 + 表达式 + 新的表达式 + + + + 创建 And 表达式 + + 泛型类型 + 新的表达式 + + + + 创建 And 表达式,支持索引器 + + 泛型类型 + 新的表达式 + + + + 创建 Or 表达式 + + 泛型类型 + 新的表达式 + + + + 创建 Or 表达式,支持索引器 + + 泛型类型 + 新的表达式 + + + + 表达式拓展类 + + + + + 组合两个表达式 + + 泛型类型 + 表达式1 + 表达式2 + 组合方式 + 新的表达式 + + + + 与操作合并两个表达式 + + 泛型类型 + 表达式1 + 表达式2 + 新的表达式 + + + + 与操作合并两个表达式,支持索引器 + + 泛型类型 + 表达式1 + 表达式2 + 新的表达式 + + + + 根据条件成立再与操作合并两个表达式 + + 泛型类型 + 表达式1 + 布尔条件 + 表达式2 + 新的表达式 + + + + 根据条件成立再与操作合并两个表达式,支持索引器 + + 泛型类型 + 表达式1 + 布尔条件 + 表达式2 + 新的表达式 + + + + 或操作合并两个表达式 + + 泛型类型 + 表达式1 + 表达式2 + 新的表达式 + + + + 或操作合并两个表达式,支持索引器 + + 泛型类型 + 表达式1 + 表达式2 + 新的表达式 + + + + 根据条件成立再或操作合并两个表达式 + + 泛型类型 + 表达式1 + 布尔条件 + 表达式2 + 新的表达式 + + + + 根据条件成立再或操作合并两个表达式,支持索引器 + + 泛型类型 + 表达式1 + 布尔条件 + 表达式2 + 新的表达式 + + + + 获取Lambda表达式属性名,只限 u=>u.Property 表达式 + + 泛型类型 + 表达式 + 属性名 + + + + 是否是空集合 + + 泛型类型 + 集合对象 + 是否为空集合 + + + + 处理 Lambda 参数不一致问题 + + + + + 参数表达式映射集合 + + + + + 构造函数 + + 参数表达式映射集合 + + + + 替换表达式参数 + + 参数表达式映射集合 + 表达式 + 新的表达式 + + + + 重写基类参数访问器 + + + + + + + 常量、公共方法配置类 + + + + + 设置请求多语言对象 + + + + + + + 全局多语言静态类 + + + + + 语言类型 + + + + + 静态构造函数 + + + + + String 多语言 + + + + + Html 多语言 + + + + + 设置多语言区域 + + + + + + 获取当前选择的语言 + + + + + + 获取系统提供的语言列表 + + + + + + 多语言配置选项 + + + + + 资源路径 + + + + + 支持的语言列表 + + + + + 默认的语言 + + + + + 选项后期配置 + + + + + + + 字符串日志输出拓展 + + + + + 设置消息格式化参数 + + + + + + + 设置日志级别 + + + + + + + 设置事件 Id + + + + + + + 设置日志分类 + + + + + + + 设置日志分类名 + + + + + + + 设置异常对象 + + + + + 设置日志服务作用域 + + + + + + + + LogInformation + + + + + + + LogInformation + + + + + + + + LogInformation + + + + + + + + LogInformation + + + + + + + + + LogInformation + + + + + + + + LogInformation + + + + + + + + + LogInformation + + + + + + + + + LogInformation + + + + + + + + + + LogWarning + + + + + + + LogWarning + + + + + + + + LogWarning + + + + + + + + LogWarning + + + + + + + + + LogWarning + + + + + + + + LogWarning + + + + + + + + + LogWarning + + + + + + + + + LogWarning + + + + + + + + + + LogError + + + + + + + LogError + + + + + + + + LogError + + + + + + + + LogError + + + + + + + + + LogError + + + + + + + + LogError + + + + + + + + + LogError + + + + + + + + + LogError + + + + + + + + + + LogDebug + + + + + + + LogDebug + + + + + + + + LogDebug + + + + + + + + LogDebug + + + + + + + + + LogDebug + + + + + + + + LogDebug + + + + + + + + + LogDebug + + + + + + + + + LogDebug + + + + + + + + + + LogTrace + + + + + + + LogTrace + + + + + + + + LogTrace + + + + + + + + LogTrace + + + + + + + + + LogTrace + + + + + + + + LogTrace + + + + + + + + + LogTrace + + + + + + + + + LogTrace + + + + + + + + + + LogCritical + + + + + + + LogCritical + + + + + + + + LogCritical + + + + + + + + LogCritical + + + + + + + + + LogCritical + + + + + + + + LogCritical + + + + + + + + + LogCritical + + + + + + + + + LogCritical + + + + + + + + + + 构建字符串日志部分类 + + + 构建字符串日志部分类 + + + 构建字符串日志部分类 + + + + + 日志内容 + + + + + 日志级别 + + + + + 消息格式化参数 + + + + + 事件 Id + + + + + 日志分类类型(从依赖注入中解析) + + + + + 日志分类名(总是创建新的实例) + + + + + 异常对象 + + + + + 日志对象所在作用域 + + + + + Information + + + + + Warning + + + + + Error + + + + + Debug + + + + + Trace + + + + + Critical + + + + + 写入日志 + + + + + + 设置消息 + + + + + + 设置日志级别 + + + + + + 设置消息格式化参数 + + + + + + 设置事件 Id + + + + + + 设置日志分类 + + + + + + 设置日志分类名 + + + + + + 设置异常对象 + + + + + 设置日志服务作用域 + + + + + + + Method Info 拓展 + + + + + 获取真实方法的特性集合 + + + + + + + + 获取真实方法的特性集合 + + + + + + + + + 获取真实方法的特性集合 + + + + + + + + + 获取真实方法的特性集合 + + + + + + + + + + 获取真实方法的特性集合 + + + + + + + + 获取真实方法的特性集合 + + + + + + + + + 获取真实方法的特性 + + + + + + + + + 获取真实方法的特性 + + + + + + + + + + 获取真实方法的特性 + + + + + + + + 获取真实方法的特性 + + + + + + + + + 获取实际方法对象 + + + + + + + + 方法参数信息 + + + + + 参数 + + + + + 参数名 + + + + + 参数值 + + + + + 异步代理分发类 + + + + + 创建代理 + + + + + + + + 执行同步代理 + + + + + + + + 执行异步代理 + + + + + + + + 执行异步返回 Task{T} 代理 + + + + + + + + + 异步分发代理生成器 + + + + + 代理分发处理 + + + + + 构造函数 + + + + + 同步处理 + + + + + + + 异步处理 + + + + + + + 异步带返回值处理 + + + + + + + + 代理拦截依赖接口 + + + + + 实例 + + + + + 服务提供器 + + + + + 全局代理拦截接口 + + + + + 配置请求客户端 + + + + + 构造函数 + + + + + + 客户端名称 + + + + + 配置请求报文头 + + + + + 构造函数 + + + + + + + 构造函数 + + 用于将参数添加到请求报文头中,如 Token + + + + 构造函数 + + 用于将参数添加到请求报文头中,如 Token + 别名 + + + + 键 + + + + + 值 + + + + + HttpDelete 请求 + + + + + 构造函数 + + + + + + HttpGet 请求 + + + + + 构造函数 + + + + + + HttpHead 请求 + + + + + 构造函数 + + + + + + 请求方法基类 + + + + + 构造函数 + + + + + + + 请求地址 + + + + + 请求谓词 + + + + + HttpPatch 请求 + + + + + 构造函数 + + + + + + HttpPost 请求 + + + + + 构造函数 + + + + + + HttpPut 请求 + + + + + 构造函数 + + + + + + 远程请求参数拦截器 + + 如果贴在静态方法中,则为全局拦截 + + + + 构造函数 + + + + + + 拦截类型 + + + + + JSON 序列化提供器 + + + + + 构造函数 + + + + + + 提供器类型 + + + + + 配置序列化 + + + + + 配置Body参数 + + + + + 构造函数 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 内容类型 + + + + + 内容编码 + + + + + 配置 Body Bytes 参数 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 参数别名 + + + + + 文件名 + + + + + 代理参数基类特性 + + + + + 配置查询参数 + + + + + 构造函数 + + + + + 构造函数 + + + + + + 参数别名 + + + + + 配置客户端请求超时时间 + + + + + 构造函数 + + + + + + 超时时间(秒) + + + + + 拦截类型 + + + + + HttpClient 拦截 + + + + + HttpRequestMessage 拦截 + + + + + HttpResponseMessage 拦截 + + + + + 异常拦截 + + + + + 远程请求字符串拓展 + + + + + 设置 URL 模板 + + + + + + + + 设置 URL 模板 + + + + + + + + 设置请求方法 + + + + + + + + 设置请求报文头 + + + + + + + + 设置请求报文头 + + + + + + + + 设置 URL 参数 + + + + + + + + 设置 URL 参数 + + + + + + + + 设置客户端分类名 + + + + + + + + 设置 Body 内容 + + + + + + + + + + 设置 Body 内容 + + + + + + + + + + 设置内容类型 + + + + + + + + 设置内容编码 + + + + + + + + 设置 Body Bytes + + + + + + + + 设置 Body Bytes + + + + + + + + 设置超时时间(秒) + + + + + + + + 设置 JSON 序列化提供器 + + + + + + + + + 设置 JSON 序列化提供器 + + + + + + + + + 是否启用验证状态 + + + + + + + + 设置请求作用域 + + + + + + + + 构建请求对象拦截器 + + + + + + + + 创建客户端对象拦截器 + + + + + + + + 请求成功拦截器 + + + + + + + + 请求异常拦截器 + + + + + + + + 发送 GET 请求返回 T 对象 + + + + + + + + + 发送 GET 请求返回 Stream + + + + + + + + 发送 GET 请求返回 String + + + + + + + + 发送 GET 请求 + + + + + + + + 发送 POST 请求返回 T 对象 + + + + + + + + + 发送 POST 请求返回 Stream + + + + + + + + 发送 POST 请求返回 String + + + + + + + + 发送 POST 请求 + + + + + + + + 发送 PUT 请求返回 T 对象 + + + + + + + + + 发送 PUT 请求返回 Stream + + + + + + + + 发送 PUT 请求返回 String + + + + + + + + 发送 PUT 请求 + + + + + + + + 发送 DELETE 请求返回 T 对象 + + + + + + + + + 发送 DELETE 请求返回 Stream + + + + + + + + 发送 DELETE 请求返回 String + + + + + + + + 发送 DELETE 请求 + + + + + + + + 发送 PATCH 请求返回 T 对象 + + + + + + + + + 发送 PATCH 请求返回 Stream + + + + + + + + 发送 PATCH 请求返回 String + + + + + + + + 发送 PATCH 请求 + + + + + + + + 发送 HEAD 请求返回 T 对象 + + + + + + + + + 发送 HEAD 请求返回 Stream + + + + + + + + 发送 HEAD 请求返回 String + + + + + + + + 发送 HEAD 请求 + + + + + + + + 发送请求返回 T 对象 + + + + + + + + + 发送请求返回 Stream + + + + + + + + 发送请求返回 String + + + + + + + + 发送请求 + + + + + + + + 远程请求静态类 + + + + + 获取远程请求代理 + + + IHttpDispatchProxy + + + + HttpClient 对象组装部件 + + + HttpClient 对象组装部件 + + + HttpClient 对象组装部件 + + + + + 请求地址 + + + + + Url 地址模板 + + + + + 请求方式 + + + + + 请求报文头 + + + + + 查询参数 + + + + + 客户端名称 + + + + + 请求报文 Body 参数 + + + + + 请求报文 Body 内容类型 + + + + + 内容编码 + + + + + 设置 Body Bytes 类型 + + + + + 超时时间(秒) + + + + + Json 序列化提供器 + + + + + 是否启用模型验证 + + + + + 构建请求对象拦截器 + + + + + 创建客户端对象拦截器 + + + + + 请求成功拦截器 + + + + + 请求异常拦截器 + + + + + 设置请求作用域 + + + + + MiniProfiler 分类名 + + + + + 发送 GET 请求返回 T 对象 + + + + + + + + 发送 GET 请求返回 Stream + + + + + + + 发送 GET 请求返回 String + + + + + + + 发送 GET 请求 + + + + + + + 发送 POST 请求返回 T 对象 + + + + + + + + 发送 POST 请求返回 Stream + + + + + + + 发送 POST 请求返回 String + + + + + + + 发送 POST 请求 + + + + + + + 发送 PUT 请求返回 T 对象 + + + + + + + + 发送 PUT 请求返回 Stream + + + + + + + 发送 PUT 请求返回 String + + + + + + + 发送 PUT 请求 + + + + + + + 发送 DELETE 请求返回 T 对象 + + + + + + + + 发送 DELETE 请求返回 Stream + + + + + + + 发送 DELETE 请求返回 String + + + + + + + 发送 DELETE 请求 + + + + + + + 发送 PATCH 请求返回 T 对象 + + + + + + + + 发送 PATCH 请求返回 Stream + + + + + + + 发送 Patch 请求返回 String + + + + + + + 发送 PATCH 请求 + + + + + + + 发送 HEAD 请求返回 T 对象 + + + + + + + + 发送 HEAD 请求返回 Stream + + + + + + + 发送 Head 请求返回 String + + + + + + + 发送 HEAD 请求 + + + + + + + 发送请求返回 T 对象 + + + + + + + + 发送请求返回 Stream + + + + + + + 发送请求返回 String + + + + + + + 发送请求 + + + + + + + 设置 HttpContent + + + + + + 转换 Body 为 字典类型 + + + + + + 序列化对象 + + + + + + + 设置请求地址 + + + + + + + 设置 URL 模板 + + + + + + + 设置 URL 模板 + + + + + + + 设置请求方法 + + + + + + + 设置请求报文头 + + + + + + + 设置请求报文头 + + + + + + + 设置 URL 参数 + + + + + + + 设置 URL 参数 + + + + + + + 设置客户端分类名 + + + + + + + 设置 Body 内容 + + + + + + + + + 设置 Body 内容 + + + + + + + + + 设置内容类型 + + + + + + + 设置内容编码 + + + + + + + 设置 Body Bytes + + + + + + + 设置 Body Bytes + + + + + + + 设置超时时间(秒) + + + + + + + 设置 JSON 序列化提供器 + + + + + + + + 设置 JSON 序列化提供器 + + + + + + + + 是否启用验证状态 + + + + + + + + 构建请求对象拦截器 + + + + + + + 创建客户端对象拦截器 + + + + + + + 请求成功拦截器 + + + + + + + 请求异常拦截器 + + + + + + + 设置请求作用域 + + + + + + + 远程请求实现类(以下代码还需进一步优化性能,启动时把所有扫描缓存起来) + + + + + 被代理对象 + + + + + 服务提供器 + + + + + 拦截同步方法 + + + + + + + + 拦截异步无返回方法 + + + + + + + + 拦截异步带返回方法 + + + + + + + + + 构建 HttpClient 请求部件 + + + + + + + + 设置客户端信息 + + + + + + + + 设置请求超时时间 + + + + + + + + 设置 Url 地址参数 + + + + + + + 设置 Body 参数 + + + + + + + 设置验证 + + + + + + 设置序列化 + + + + + + + + + 调用全局拦截 + + + + + + + 设置请求拦截 + + + + + + + 设置请求报文头 + + + + + + + + + 远程请求代理接口 + + + + + 脱敏词汇(脱敏)提供器 + + + + + 返回所有脱敏词汇 + + + + + + 判断脱敏词汇是否有效(支持自定义算法) + + + + + + + 替换敏感词汇 + + + + + + + + 脱敏词汇(脱敏)提供器(默认实现) + + + + + 序列化提供器 + + + + + 分布式缓存 + + + + + 文件提供器(支持物理路径和嵌入资源) + + + + + 构造函数 + + + + + + + + 分布式缓存键 + + + + + 返回所有脱敏词汇 + + + + + + 判断脱敏词汇是否有效(支持自定义算法) + + + + + + + 替换敏感词汇 + + + + + + + + 查找脱敏词汇 + + + + + + 获取敏感词索引 + + + + + + + + + 规范化文档构建器 + + + + + 规范化文档配置 + + + + + 分组信息 + + + + + 带排序的分组名 + + + + + 文档分组列表 + + + + + 构造函数 + + + + + 检查方法是否在分组中 + + + + + + + + 构建Swagger全局配置 + + Swagger 全局配置 + + + + + Swagger 生成器构建 + + Swagger 生成器配置 + 自定义配置 + + + + Swagger UI 构建 + + + + + + + + 创建分组文档 + + Swagger生成器对象 + + + + 加载分组控制器和动作方法列表 + + Swagger 生成器配置 + + + + 配置标签 + + + + + + 配置 Action 排序 + + + + + + 配置 Swagger SchemaId + + Swagger 生成器配置 + + + + 加载注释描述文件 + + Swagger 生成器配置 + + + + 配置授权 + + Swagger 生成器配置 + + + + 配置分组终点路由 + + + + + + 注入 MiniProfiler 插件 + + + + + + 添加默认请求/响应拦截器 + + + + + + 获取分组信息缓存集合 + + + + + 获取分组配置信息 + + + + + + + 读取所有分组信息 + + + + + + 获取控制器组缓存集合 + + + + + 获取控制器分组列表 + + + + + + + 缓存集合 + + + + + 获取动作方法分组列表 + + 方法 + + + + + 缓存集合 + + + + + 获取控制器标签 + + 控制器接口描述器 + + + + + 缓存集合 + + + + + 获取动作方法标签 + + 接口描述器 + + + + + 是否是动作方法 + + 方法 + 声明类型 + + + + + 解析分组附加信息 + + 分组名 + + + + + 修正 规范化文档 Enum 提示 + + + + + JSON 序列化 + + + + + 构造函数 + + + + + + 实现过滤器方法 + + + + + + + 标签文档排序拦截器 + + + + + 配置拦截 + + + + + + + 获取标签排序 + + + + + + + 分组附加信息 + + + + + 分组名 + + + + + 分组排序 + + + + + 是否可见 + + + + + 规范化文档开放接口信息 + + + + + 构造函数 + + + + + 分组私有字段 + + + + + 所属组 + + + + + 排序 + + + + + 是否可见 + + + + + 安全定义需求子项 + + + + + 构造函数 + + + + + 安全Schema + + + + + 权限 + + + + + 规范化稳定安全配置 + + + + + 构造函数 + + + + + 唯一Id + + + + + 安全需求 + + + + + 规范化文档配置选项 + + + + + 文档标题 + + + + + 默认分组名 + + + + + 启用授权支持 + + + + + 格式化为V2版本 + + + + + 配置规范化文档地址 + + + + + 配置虚拟目录 + + + + + 文档展开设置 + + + + + XML 描述文件 + + + + + 分组信息 + + + + + 安全定义 + + + + + 配置 Servers + + + + + 隐藏 Servers + + + + + 默认 swagger.json 路由模板 + + + + + 配置安装第三方包的分组名 + + + + + 后期配置 + + + + + + + 配置定时任务特性 + + + + + 构造函数 + + + + + + + 构造函数 + + 表达式或配置Key + + + + + 间隔 + + + + + Cron 表达式 + + + + + 任务名称 + + + + + 任务类型 + + + + + 任务描述 + + + + + 只执行一次 + + + + + 立即执行(默认等待启动) + + + + + 执行类型 + + + + + Cron 表达式格式化方式 + + + + + 日历帮助类 + + + + + Cron 表达式的解析器和调度程序 + 代码参考自:https://github.com/HangfireIO/Cronos + + + + + Constructs a new based on the specified + cron expression. It's supported expressions consisting of 5 fields: + minute, hour, day of month, month, day of week. + If you want to parse non-standard cron expressions use with specified CronFields argument. + See more: https://github.com/HangfireIO/Cronos + + + + + Constructs a new based on the specified + cron expression. It's supported expressions consisting of 5 or 6 fields: + second (optional), minute, hour, day of month, month, day of week. + See more: https://github.com/HangfireIO/Cronos + + + + + Calculates next occurrence starting with (optionally ) in UTC time zone. + + + + + Returns the list of next occurrences within the given date/time range, + including and excluding + by default, and UTC time zone. When none of the occurrences found, an + empty list is returned. + + + + + Calculates next occurrence starting with (optionally ) in given + + + + + Returns the list of next occurrences within the given date/time range, including + and excluding by default, and + specified time zone. When none of the occurrences found, an empty list is returned. + + + + + Calculates next occurrence starting with (optionally ) in given + + + + + Returns the list of occurrences within the given date/time offset range, + including and excluding by + default. When none of the occurrences found, an empty list is returned. + + + + + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; + otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data + structures like a hash table. + + + + + Implements the operator ==. + + + + + Implements the operator !=. + + + + + Cron 表达式标识 + + + + + Cron 表达式内置字段 + + + + + Cron 表达式支持类型 + + + + + 只有 5 个字符:分钟,小时,月/天,天,周/天 + + + + + 支持秒解析,也就是 6 个字符 + + + + + 解析 Cron 表达式出错异常类 + + + + + 构造函数 + + + + + + 内部构造函数 + + + + + + + 日期时间帮助类 + + + + + 处理不同平台时区的区别 + + + + + 任务执行类型 + + + + + 并行执行(默认方式) + 无需等待上一个完成 + + + + + 串行执行 + 需等待上一个完成 + + + + + 任务状态 + + + + + 运行中 + + + + + 已停止或未启动 + + + + + 单次执行失败 + + + + + 任务已取消或没有该任务 + + + + + 任务类型 + + + + + 间隔方式 + + + + + Cron 表达式 + + + + + 内置时间调度器 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 当前任务名 + + + + + 任务类型 + + + + + 任务描述 + + + + + 任务状态 + + + + + 执行类型 + + + + + 异常信息 + + + + + 任务执行计数 + + + + + 记录任务数据 + + + + + 定时器 + + + + + 任务执行计数 + + + + + 解决定时器重入问题 + + + + + Cron 表达式实际执行计数 + + + + + 是否上一个已完成 + + + + + 后台任务静态类 + + + + + 开始执行简单任务(持续的) + + 时间间隔(毫秒) + + + + + + + + + + 开始执行简单任务(持续的) + + 时间间隔(毫秒) + + + + + + + + + + 模拟后台执行任务 + 10毫秒后执行 + + + + + + + + + 模拟后台执行任务 + 10毫秒后执行 + + + + + + + + + 开始执行简单任务(只执行一次) + + 时间间隔(毫秒) + + + + + + + + + + 开始执行简单任务(只执行一次) + + 时间间隔(毫秒) + + + + + + + + + + 开始执行 Cron 表达式任务 + + Cron 表达式 + + + + + + 配置 Cron 表达式格式化 + + + + + 开始执行 Cron 表达式任务 + + Cron 表达式 + + + + + + 配置 Cron 表达式格式化 + + + + + 开始执行下一发生时间任务 + + 返回下一次执行时间 + + + + + 在下一个空时间取消任务 + + + + + 开始执行下一发生时间任务 + + 返回下一次执行时间 + + + + + 在下一个空时间取消任务 + + + + + 开始执行简单任务 + + 时间间隔(毫秒) + + + + + + + 是否持续执行 + + + + 开始执行简单任务 + + 时间间隔(毫秒) + + + + + + + 是否持续执行 + + + + 开始简单任务(持续的) + 用于 Worker Services + + + + + + + + + 开始简单任务(持续的) + 用于 Worker Services + + + + + + + + + 开始简单任务(持续的) + 用于 Worker Services + + + + + + + + + 开始简单任务(持续的) + 用于 Worker Services + + + + + + + + + 开始 Cron 表达式任务(持续的) + 用于 Worker Services + + + + + + + + + + 开始 Cron 表达式任务(持续的) + 用于 Worker Services + + + + + + + + + + 开始 Cron 表达式任务(持续的) + 用于 Worker Services + + + + + + + + + 开始 Cron 表达式任务(持续的) + 用于 Worker Services + + + + + + + + + 开始某个任务 + + + + + + 停止某个任务 + + + + + + + 取消某个任务 + + + + + + 销毁所有任务 + + + + + 获取所有任务列表 + + + + + + 获取单个任务信息 + + + + + + + 获取 Cron 表达式下一个发生时间 + + + + + + + + 更新工作记录 + + + + + + + 记录任务 + + + + + 静态构造函数 + + + + + 业务时间任务工作类 + + + + + 模板操作静态类 + + + + + 模板正则表达式 + + + + + 读取配置模板正则表达式 + + + + + 渲染模板 + + + + + + + + 渲染模板 + + + + + + + + + 从配置中渲染字符串模板 + + + + + + + + 匹配模板值 + + + + + + + + 解析模板的值 + + + + + + + + 规范化模型特性 + + + + + 规范化模型 + + + + + + 模型类型(泛型) + + + + + 规范化结构(请求成功)过滤器 + + + + + 过滤器排序 + + + + + 排序属性 + + + + + 处理规范化结果 + + + + + + + + RESTful 风格结果集 + + + + + + 状态码 + + + + + 数据 + + + + + 执行成功 + + + + + 错误信息 + + + + + 附加数据 + + + + + 时间戳 + + + + + 状态码中间件 + + + + + 请求委托 + + + + + 配置选项 + + + + + 构造函数 + + + + + + + 中间件执行方法 + + + + + + + 规范化状态码选项 + + + + + 设置返回 200 状态码列表 + 默认:401,403,如果设置为 null,则标识所有状态码都返回 200 + + + + + 适配(篡改)Http 状态码(只支持短路状态码,比如 401,403,404,500 等) + + + + + 规范化结果提供器 + + + + + 异常返回值 + + + + + + + 成功返回值 + + + + + + + 验证失败返回值 + + + + + + + + + + 拦截返回状态码 + + + + + + + + + RESTful 风格返回值 + + + + + 异常返回值 + + + + + + + 成功返回值 + + + + + + + 验证失败返回值 + + + + + + + + + + 处理输出状态码 + + + + + + + + + 规范化结果上下文 + + + + + 是否启用规范化结果 + + + + + 规范化结果类型 + + + + + 规范化结果额外数据键 + + + + + 规范化结果状态码 + + + + + 获取异常元数据 + + + + + + + 填充附加信息 + + + + + + 读取附加信息 + + + + + 设置响应状态码 + + + + + + + + 设置规范化结果信息 + + + + + + + 读取规范化结果信息 + + + + + + + 是否跳过成功返回结果规范处理(状态码 200~209 ) + + + + + + + + + 是否跳过规范化处理(包括任意状态:成功,失败或其他状态码) + + + + + + + + 是否跳过特定状态码规范化处理(如,处理 401,403 状态码情况) + + + + + + + + 视图引擎选项构建器 + + + + + 视图编译选项 + + + + + 添加程序集引用 + + + + + + 添加程序集引用 + + + + + + 添加程序集引用 + + + + + + 添加元数据引用 + + + + + + 添加 Using + + + + + + 添加继承类型 + + + + + + 视图编译构建器 + + + + + 视图编译选项 + + + + + 构造函数 + + + + + + 添加程序集引用 + + + + + + 添加程序集引用 + + + + + + 添加程序集引用 + + + + + + 添加元数据引用 + + + + + + 添加 Using + + + + + + 添加继承类型 + + + + + + 渲染类型名 + + + + + + + 视图引擎接口 + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + + 编译并运行 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 编译模板 + + + + + + + + 编译模板 + + + + + + + + 编译模板 + + + + + + + + + 编译模板 + + + + + + + + + 视图引擎实现类 + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + + 编译并运行 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 编译模板 + + + + + + + + 编译模板 + + + + + + + + 编译模板 + + + + + + + + + 编译模板 + + + + + + + + + 将模板内容编译并输出内存流 + + + + + + + + 写入Razor 命令 + + + + + + + + 视图引擎异常类 + + + + + 构造函数 + + + + + 构造函数 + + + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 视图引擎模板编译异常类 + + + + + 构造函数 + + + + + 构造函数 + + + + + + + 构造函数 + + + + + + 错误信息 + + + + + 生成的代码 + + + + + 重写异常消息 + + + + + 字符串视图引擎拓展 + + + + + 设置模板数据 + + + + + + + + + 设置模板数据 + + + + + + + + 设置模板构建选项 + + + + + + + + 设置模板缓存文件名(不含拓展名) + + + + + + + + 视图模板服务作用域 + + + + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + 编译并运行 + + + + + + + + + + 编译并运行 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + + 通过缓存解析模板 + + + + + + + + + + 匿名类型包装器 + + + + + 匿名模型 + + + + + 构造函数 + + + + + + 获取成员信息 + + + + + + + + 常量、公共方法配置类 + + + + + 模板保存目录 + + + + + 获取模板文件名 + + + + + + + 字符串模板执行部件 + + + 字符串模板执行部件 + + + 字符串模板执行部件 + + + + + 字符串模板 + + + + + 视图配置选项 + + + + + 模型数据 + + + + + 模板缓存名称(不含拓展名) + + + + + 视图模板服务作用域 + + + + + 编译并运行 + + + + + 编译并运行 + + + + + 通过缓存解析模板 + + + + + 通过缓存解析模板 + + + + + 获取视图引擎对象 + + + + + + 执行模板方法 + + + + + + + + 设置模板 + + + + + + + 设置模板数据 + + + + + + + + 设置模板数据 + + + + + + + 设置模板构建选项 + + + + + + + 设置模板缓存文件名(不含拓展名) + + + + + + + 视图模板服务作用域 + + + + + + + 视图引擎模板模型接口 + + + + + 模型 + + + + + 写入字面量 + + + + + + 写入字面量 + + + + + + + 写入对象 + + + + + + 写入对象 + + + + + + + 开始写入特性 + + + + + + + + + + + 开始写入特性 + + + + + + + + + + + + 写入特性值 + + + + + + + + + + + 写入特性值 + + + + + + + + + + + + 结束写入特性 + + + + + 结束写入特性 + + + + + + 执行 + + + + + 执行 + + + + + + 获取结果 + + + + + + 获取结果 + + + + + + 视图引擎模板模型实现类 + + + + + 字符串构建器 + + + + + 特性前缀 + + + + + 模型 + + + + + 写入字面量 + + + + + + 写入字面量 + + + + + + + 写入对象 + + + + + + 写入对象 + + + + + + + 写入特性 + + + + + + + + + + + 写入特性 + + + + + + + + + + + + 写入特性值 + + + + + + + + + + + 写入特性值 + + + + + + + + + + + + 结束写入特性 + + + + + 结束写入特性 + + + + + + 执行 + + + + + 执行 + + + + + + 获取结果 + + + + + + 获取结果 + + + + + + 视图引擎模板模型实现类 + + + + + + 强类型 + + + + + 视图引擎编译选项 + + + + + 构造函数 + + + + + 引用程序集 + + + + + 元数据引用 + + + + + 模板命名空间 + + + + + 继承 + + + + + 默认 Using + + + + + 视图引擎模板(编译后) + + + + + 保存到流中 + + + + + + 保存到流中 + + + + + + + 保存到文件 + + + + + + 保存到文件 + + + + + + + 执行编译 + + + + + + + 执行编译 + + + + + + + 泛型视图编译模板接口 + + + + + + 保存到流中 + + + + + + 保存到流中 + + + + + + + 保存到文件 + + + + + + 保存到文件 + + + + + + + 执行编译 + + + + + + + 执行编译 + + + + + + + 视图引擎模板(编译后) + + + + + 内存流 + + + + + 模板类型 + + + + + 构造函数 + + + + + + 保存到流中 + + + + + + 保存到流中 + + + + + + + 保存到文件 + + + + + + 保存到文件 + + + + + + + 执行编译 + + + + + + + 执行编译 + + + + + + + 从文件中加载模板 + + + + + + + 从文件中加载模板 + + + + + + + 从流中加载模板 + + + + + + + 从流中加载模板 + + + + + + + 视图引擎模板(编译后) + + + + + + 内存流 + + + + + 内存流 + + + + + 构造函数 + + + + + + 保存到流中 + + + + + + 保存到流中 + + + + + + + 保存到文件中 + + + + + + 保存到文件中 + + + + + + + 执行编译 + + + + + + + 执行编译 + + + + + + + 从文件中加载模板 + + + + + + + 从文件中加载模板 + + + + + + + 从流中加载模板 + + + + + + + 从流中加载模板 + + + + + + + 文件提供器类型 + + + + + 物理文件 + + + + + 嵌入资源文件 + + + + + 虚拟文件服务静态类 + + + + + 获取物理文件提供器 + + + + + + + + 获取嵌入资源文件提供器 + + + + + + + + 文件提供器 + + + + + + + + + 应用中间件拓展类(由框架内部调用) + + + + + 注入基础中间件(带Swagger) + + + 空字符串将为首页 + + + + + + + 注入基础中间件 + + + + + + + 添加应用中间件 + + 应用构建器 + 应用配置 + 应用构建器 + + + + 跨域中间件拓展 + + + + + 添加跨域中间件 + + + + + + + + 终点路由构建器拓展 + + + + + 扫描配置所有集线器 + + + + + + 多语言中间件拓展 + + + + + 配置多语言中间件拓展 + + + + + + + 规范化文档中间件拓展 + + + + + 添加规范化文档中间件 + + + + + + + + + + 状态码中间件拓展 + + + + + 添加状态码拦截中间件 + + + + + + + + 虚拟文件服务中间件 + + + + + 虚拟文件系统中间件 + + + + + + + 获取本地 HttpContext 上下文 + 代码参考自:https://www.cnblogs.com/artech/p/how-to-get-httpcontext.html + + + + + 获取当前 HttpContext 对象 + + + + + + Http 拓展类 + + + + + 获取 Action 特性 + + + + + + + + 获取 控制器/Action 描述器 + + + + + + + 设置规范化文档自动登录 + + + + + + + 设置规范化文档自动登录 + + + + + + + 设置规范化文档退出登录 + + + + + + 设置规范化文档退出登录 + + + + + + 获取本机 IPv4地址 + + + + + + + 获取本机 IPv6地址 + + + + + + + 获取远程 IPv4地址 + + + + + + + 获取远程 IPv6地址 + + + + + + + 获取完整请求地址 + + + + + + + 获取来源地址 + + + + + + + + 策略授权特性 + + + + + 构造函数 + + 多个策略 + + + + 策略 + + + + + 安全定义特性 + + + + + 构造函数 + + + + + 构造函数 + + + + + + 资源Id,必须是唯一的 + + + + + 授权处理上下文拓展类 + + + + + 获取当前 HttpContext 上下文 + + + + + + + 跳过验证 + + + + + 接口描述设置 + + + + + 构造函数 + + + + + 构造函数 + + 是否启用 + + + + 构造函数 + + 分组列表 + + + + 自定义名称 + + + + + 保留原有名称(Boolean 类型) + + + + + 切割骆驼命名(Boolean 类型) + + + + + 保留路由谓词(Boolean 类型) + + + + + 小写路由(Boolean 类型) + + + + + 模块名 + + + + + 版本号 + + + + + 分组 + + + + + 标签 + + + + + 排序 + + + + + 配置控制器区域(只对控制器有效) + + + + + 接口参数位置设置 + + + + + 构造函数 + + + + + + 参数位置 + + + + + 接口参数约束 + + + + + 构造函数 + + + + + + 参数位置 + + + + + 接口参数位置 + + + + + 控制器之前 + + + + + 控制器之后 + + + + + 行为之前 + + + + + 行为之后 + + + + + 友好异常拦截器 + + + + + 服务提供器 + + + + + 构造函数 + + 服务提供器 + + + + 异常拦截 + + + + + + + 禁止规范化处理 + + + + + 规范化结果配置 + + + + + 构造函数 + + + + + + 构造函数 + + + + + + 构造函数 + + + + + + + 包装类型 + + + + + + 应用服务集合拓展类(由框架内部调用) + + + + + MiniProfiler 插件路径 + + + + + Mvc 注入基础配置(带Swagger) + + Mvc构建器 + + IMvcBuilder + + + + 服务注入基础配置(带Swagger) + + 服务集合 + IMvcBuilder + + + + + Mvc 注入基础配置 + + Mvc构建器 + + IMvcBuilder + + + + Mvc 注入基础配置 + + 服务集合 + + IMvcBuilder + + + + Mvc 注入基础配置和规范化结果 + + + + + + + + 注入基础配置和规范化结果 + + + + + + + + Mvc 注入基础配置和规范化结果 + + + + + + + + + Mvc 注入基础配置和规范化结果 + + + + + + + + + 自动添加主机服务 + + + + + + + 添加应用配置 + + 服务集合 + 服务配置 + 服务集合 + + + + 添加主机应用配置 + + 服务集合 + 服务配置 + 服务集合 + + + + 添加 Startup 自动扫描 + + 服务集合 + 服务集合 + + + + 获取 Startup 排序 + + 排序类型 + int + + + + 策略授权服务拓展类 + + + + + 添加策略授权服务 + + 策略授权处理程序 + 服务集合 + 自定义配置 + 是否启用全局授权 + 服务集合 + + + + 可变选项服务拓展类 + + + + + 添加选项配置 + + 选项类型 + 服务集合 + 服务集合 + + + + 获取选项键 + + 选项配置特性 + 选项类型 + + + + + 跨域访问服务拓展类 + + + + + 配置跨域 + + 服务集合 + + + 服务集合 + + + + 数据库访问器服务拓展类 + + + + + 添加数据库上下文 + + 服务集合 + 配置 + 迁移类库名称 + 服务集合 + + + + 启动自定义租户类型 + + + 基于表的多租户Id名称 + + + + + 注册默认数据库上下文 + + 数据库上下文 + 服务提供器 + + + + 注册数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + 服务提供器 + + + + 通过定位器解析上下文 + + + + + + + + Sqlite 数据库服务拓展 + + + + + 添加默认数据库上下文 + + 数据库上下文 + 服务 + 数据库提供器 + + 连接字符串 + 池大小 + 拦截器 + 服务集合 + + + + 添加默认数据库上下文 + + 数据库上下文 + 服务 + 自定义配置 + 池大小 + 拦截器 + 服务集合 + + + + 添加其他数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + 服务 + 数据库提供器 + + 连接字符串 + 池大小 + 拦截器 + 服务集合 + + + + 添加其他数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + 服务 + 自定义配置 + 池大小 + 拦截器 + 服务集合 + + + + 添加默认数据库上下文 + + 数据库上下文 + 服务 + 数据库提供器 + + 连接字符串 + 拦截器 + 服务集合 + + + + 添加默认数据库上下文 + + 数据库上下文 + 服务 + 自定义配置 + 拦截器 + 服务集合 + + + + 添加数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + 服务 + 数据库提供器 + + 连接字符串 + 拦截器 + 服务集合 + + + + 添加数据库上下文 + + 数据库上下文 + 数据库上下文定位器 + 服务 + 自定义配置 + 拦截器 + 服务集合 + + + + 配置数据库 + + + 数据库提供器 + 数据库连接字符串 + 数据库上下文选项构建器 + + + + 数据库提供器 UseXXX 方法缓存集合 + + + + + 配置Code First 程序集 Action委托 + + + + + 静态构造方法 + + + + + 获取数据库提供器对应的 useXXX 方法 + + 数据库提供器 + + + + + + 解析数据库提供器信息 + + + + + + + MiniProfiler 服务拓展类 + + + + + 添加 EF Core 进程监听拓展 + + + + + + + 友好异常服务拓展类 + + + + + 添加全局数据验证 + + 验证类型消息提供器 + + 启用全局验证过滤器 + 禁止C# 8.0 验证非可空引用类型 + + + + + 添加全局数据验证 + + 验证类型消息提供器 + + 启用全局验证过滤器 + 禁止C# 8.0 验证非可空引用类型 + + + + + 添加全局数据验证 + + + 启用全局验证过滤器 + 禁止C# 8.0 验证非可空引用类型 + + + + + 添加全局数据验证 + + + 启用全局验证过滤器 + 禁止C# 8.0 验证非可空引用类型 + + + + + 依赖注入拓展类 + + + + + 添加依赖注入接口 + + 服务集合 + 服务集合 + + + + 添加接口代理 + + 代理类 + 被代理接口依赖 + 服务集合 + 服务集合 + + + + 添加扫描注入 + + 服务集合 + + 服务集合 + + + + 注册服务 + + 服务集合 + 类型作用域 + 类型 + 注入特性 + 能被注册的接口 + + + + 注册类型 + + 服务 + 注册类型 + 类型 + 注入特性 + 接口 + + + + 注册瞬时接口实例类型 + + 服务 + 类型 + 注入特性 + 接口 + + + + 注册作用域接口实例类型 + + 服务 + 类型 + 注入特性 + 接口 + + + + 注册单例接口实例类型 + + 服务 + 类型 + 注入特性 + 接口 + + + + 创建暂时瞬时代理 + + 服务集合 + 拦截的类型 + 代理类型 + 代理接口 + 是否有实现类 + + + + 创建作用域代理 + + 服务集合 + 被代理类型 + 代理类型 + 拦截接口 + 是否有实例 + + + + 创建作用域代理 + + 服务集合 + 被代理类型 + 代理类型 + 拦截接口 + 是否有实例 + + + + 注册代理类型 + + + + + + + + 注册命名服务 + + 服务集合 + + + + 注册外部服务 + + + + + + 修复泛型类型注册类型问题 + + 类型 + + + + + 获取 注册 排序 + + 排序类型 + int + + + + 加载字符串类型 + + + + + + + 类型名称集合 + + + + + 已经注册的代理类 + + + + + 创建代理方法 + + + + + 全局服务代理类型 + + + + + 静态构造函数 + + + + + 动态接口控制器拓展类 + + + + + 添加动态接口控制器服务 + + Mvc构建器 + Mvc构建器 + + + + 添加外部程序集部件集合 + + Mvc构建器 + + Mvc构建器 + + + + 添加动态接口控制器服务 + + + Mvc构建器 + + + + 添加基础服务 + + + + + + 配置 Mvc 构建器 + + + + + + 轻量级事件总线服务拓展 + + + + + 添加轻量级事件总线服务拓展 + + + + + + + 友好异常服务拓展类 + + + + + 添加友好异常服务拓展服务 + + 异常错误码提供器 + Mvc构建器 + 是否启用全局异常过滤器 + + + + + 添加友好异常服务拓展服务 + + 异常错误码提供器 + + 是否启用全局异常过滤器 + + + + + 添加友好异常服务拓展服务 + + Mvc构建器 + 是否启用全局异常过滤器 + + + + + 添加友好异常服务拓展服务 + + + 是否启用全局异常过滤器 + + + + + 新增基础配置 + + + + + + Json 序列化服务拓展类 + + + + + 配置 Json 序列化提供器 + + + + + + + + 配置 JsonOptions 序列化选项 + 主要给非 Web 环境使用 + + + + + + + + 多语言服务拓展类 + + + + + 配置多语言服务 + + + + + + + Mvc 服务拓展类 + + + + + 注册 Mvc 过滤器 + + + + + + + + + 注册 Mvc 过滤器 + + + + + + + + + 对象映射拓展类 + + + + + 添加对象映射 + + 服务集合 + + + + + 远程请求服务拓展类 + + + + + 注册远程请求 + + + + 是否包含默认客户端 + + + + + 脱敏词汇处理服务 + + + + + 添加脱敏词汇服务 + 需要在入口程序集目录下创建 sensitive-words.txt + + + + + + + 添加脱敏词汇服务 + + + + + + + + + 添加脱敏词汇服务 + 需要在入口程序集目录下创建 sensitive-words.txt + + + + + + + 添加脱敏词汇服务 + + + + + + + + + 规范化接口服务拓展类 + + + + + 添加规范化文档服务 + + 服务集合 + 自定义配置 + 服务集合 + + + + 添加规范化文档服务 + + Mvc 构建器 + 自定义配置 + 服务集合 + + + + 任务调度类服务拓展 + + + + + 添加任务调度服务 + + + + + + + 规范化结果服务拓展 + + + + + 添加规范化结果服务 + + + + + + + 添加规范化结果服务 + + + + + + + 添加规范化结果服务 + + + + + + + + 添加规范化结果服务 + + + + + + + + 视图引擎服务拓展类 + + + + + 添加视图引擎 + + + + + + + + 虚拟文件服务服务拓展 + + + + + 文件提供器系统服务拓展 + + + + + + + 主机构建器拓展类 + + + + + Web 主机注入 + + Web主机构建器 + 外部程序集名称 + IWebHostBuilder + + + + 泛型主机注入 + + 泛型主机注入构建器 + 是否自动注册 BackgroundService + IWebHostBuilder + + + + EntityFramework Core 拓展 + + + + + [EF Core] 根据条件成立再构建 Include 查询 + + 泛型类型 + 泛型属性类型 + 集合对象 + 布尔条件 + 新的集合对象表达式 + + + + + EFCore 执行 Sql 命令日志内部类 + + + + + 处理 .Skip().Take() 表达式问题 + + + + + 筛选列访问器 + + + + + 表达式根节点 + + + + + Sql 表达式工厂 + + + + + 静态构造函数 + + + + + 构造函数 + + + + + + + 替换表达式 + + + + + + + 更新 Select 语句 + + + + + + + SqlServer 查询转换器 + + + + + 构造函数 + + + + + + + + 替换分页语句 + + + + + + + SqlServer 查询转换工厂(处理 SqlServer 2008 分页问题) + + + + + 查询转换依赖集合 + + + + + 关系查询转换依赖集合 + + + + + 构造函数 + + + + + + + 创建查询转换实例工厂 + + + + + + + 配置表名称前缀 + + + + + 构造函数 + + + + + + 前缀 + + + + + 数据类型验证特性 + + + + + 构造函数 + + 验证逻辑 + + + + + 构造函数 + + + + + + 验证逻辑 + + + + + + + + 验证类型 + + + + + 验证逻辑 + + + + + 是否允许空字符串 + + + + + 允许空值,有值才验证,默认 false + + + + + 验证逻辑 + + + + + 全部都要验证通过 + + + + + 至少一个验证通过 + + + + + 脱敏词汇检查(脱敏处理) + + + + + 构造函数 + + + + + 构造函数 + + + + + + 替换为指定字符 + + + + + 验证逻辑 + + + + + + + + 分页泛型集合 + + + + + + 页码 + + + + + 页容量 + + + + + 总条数 + + + + + 总页数 + + + + + 当前页集合 + + + + + 是否有上一页 + + + + + 是否有下一页 + + + + + 分页集合 + + + + + System.Text.Json 拓展 + + + + + 添加时间格式化 + + + + 自动转换 DateTimeOffset 为当地时间 + + + + IEnumerable 拓展 + + + + + 根据条件成立再构建 Where 查询 + + 泛型类型 + 集合对象 + 布尔条件 + 表达式 + 新的集合对象 + + + + 根据条件成立再构建 Where 查询,支持索引器 + + 泛型类型 + 集合对象 + 布尔条件 + 表达式 + 新的集合对象 + + + + 与操作合并多个表达式 + + 泛型类型 + 集合对象 + 表达式数组 + 新的集合对象 + + + + 与操作合并多个表达式,支持索引器 + + 泛型类型 + 集合对象 + 表达式数组 + 新的集合对象 + + + + 根据条件成立再构建 WhereOr 查询 + + 泛型类型 + 集合对象 + 条件表达式 + 新的集合对象 + + + + 根据条件成立再构建 WhereOr 查询,支持索引器 + + 泛型类型 + 集合对象 + 条件表达式 + 新的集合对象 + + + + 根据条件成立再构建 Where 查询 + + 泛型类型 + 集合对象 + 布尔条件 + 表达式 + 新的集合对象 + + + + 根据条件成立再构建 Where 查询,支持索引器 + + 泛型类型 + 集合对象 + 布尔条件 + 表达式 + 新的集合对象 + + + + 默认日志分类名 + + + + + HttpRequestMessage 拓展 + + + + + 追加查询参数 + + + + + + + + 追加查询参数 + + + + + + + diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/Service/CodeGen/Dto/TableOutput.cs b/Ewide.WorkOrderSys/bin/Debug/net5.0/Service/CodeGen/Dto/TableOutput.cs new file mode 100644 index 0000000..6fdc4cd --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/Service/CodeGen/Dto/TableOutput.cs @@ -0,0 +1,28 @@ +namespace Ewide.Core.Service +{ + /// + /// 数据库表列表参数 + /// + public class TableOutput + { + /// + /// 表名(字母形式的) + /// + public string TableName { get; set; } + + /// + /// 创建时间 + /// + public string CreateTime { get; set; } + + /// + /// 更新时间 + /// + public string UpdateTime { get; set; } + + /// + /// 表名称描述(注释)(功能名) + /// + public string TableComment { get; set; } + } +} diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/applicationconfig.json b/Ewide.WorkOrderSys/bin/Debug/net5.0/applicationconfig.json new file mode 100644 index 0000000..70149cf --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/applicationconfig.json @@ -0,0 +1,123 @@ +{ + "SpecificationDocumentSettings": { + "DocumentTitle": "Ewide", + "DocExpansionState": "None", + "GroupOpenApiInfos": [ + { + "Group": "Default", + "Title": "Admin.NET通用权限管理平台", + "Description": "前后端分离架构,开箱即用,紧随前沿技术。
后台.NET5平台基于Furion框架,前端基于XiaoNuo生态技术框架的vue版本。
Furion框架,让 .NET 开发更简单,更通用,更流行
XiaoNuo前端框架采用Vue2.x + AntDesign Vue pro1.x + Axios", + "Version": "1.0.0" + }, + { + "Group": "HouseBusiness", + "Title": "城镇房屋业务接口", + "Description": "城镇房屋业务接口", + "Version": "1.0.1" + } + ] + }, + "JWTSettings": { + "ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true + "IssuerSigningKey": "3c1cbc3f546eda35168c3aa3cb91780fbe703f0996c6d123ea96dc85c70bbc0a", // 密钥,string 类型,必须是复杂密钥,长度大于16 + "ValidateIssuer": true, // 是否验证签发方,bool 类型,默认true + "ValidIssuer": "ewide", // 签发方,string 类型 + "ValidateAudience": true, // 是否验证签收方,bool 类型,默认true + "ValidAudience": "ewide", // 签收方,string 类型 + "ValidateLifetime": true, // 是否验证过期时间,bool 类型,默认true,建议true + "ExpiredTime": 1440, // 过期时间,long 类型,单位分钟,默认20分钟 + "ClockSkew": 5 // 过期时间容错值,long 类型,单位秒,默认5秒 + }, + "WriteXmlPath": { + "SeedData": "SeedDataXml", + "DataBase": "DataBaseXml", + "ReadSelect": "SeedData" // SeedData 和 DataBase 两个中间选 + }, + "RSA": { + "publickey": "tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=AQAB", + "privatekey": "tu98wMoo297l+juulU4a3Xx7c2SZ93f0gTPKohE0uz4o8jWN8zXnAAfhf6MMTlkgf+qIwaORLtBQohDcX6Xp02Qe7Cq2LujVR+YJHxy2uo8+KTc5Rj/d0OkTjeCozGaJQH0XrwUO7w+rDnyXzA52IvMZPnUV3KnOj1mPH0IhrOU=AQAB

7yKLJO9dobe7pNW3ob+Vse8kvlA+PObDrZNqFxUTLyXoAeHDnwz3BjJ2EVUPNJHV5F1/KPLTvADIjDrdB1qcbw==

w9ZK0SHBddtE91skFFS72YDmxzmXumSuUyREStVul9ke0oU2HjcZA915bmR0Zrh1RzO3y1w9zXVn+GdZGjyd6w==ncA67E2fhcwv0+hMcD5zYOLyaT2EISbWFQ43ISz879BgwcUOCEFEP+lP69Uh57sAz9pBxWCS/uXBZoh6QJysrw==vbC8F4YS1g3l55Koh+jra+qnnyHyDeGn2XCvlazWys7MRC40FWBZIp1MGdnDxhu1vZoi1SAr3O90HfA9JmTAsQ==00v2vMCcgXy78eMby7R6zfZzacVnVFO2WeyxYF7pjrXYYP+C4JSJkWpy6JGLWbgZrK8HAuRguJmdRi8K2KiYWg==rV3nb9nmwQDMGMrI2GyN30uivygfFj0TdgK8Tb1aqPzu1yRT46M4yXmuhkTiW7nxp+iANGssIx5+3Ch4gRj+r6BgBPldWNErK95a2v2Ae1+EzfVf21ybguBYeUVnV9c8qwoodZSVOajZapOgoS6s5TEOxHWRcF22AiFuaD1Tl90=
" + }, + "Mail": { + "Account": "983235253@qq.com", + "PassWord": "izknskjprlusbehf", //qq邮箱授权码 + "Subject": "宽易邮箱发送测试", + "Host": "smtp.qq.com" //邮箱服务器地址 + }, + "SmsHelper": { + "Aliyun_AccessKey": "LTAI4GHRRNkDXKxpk19A3P1A", + "Aliyun_AccessSecret": "cFyvfufSSa2b6BiQj9NZ1edYkJStNM", + "Aliyun_Smscode_SignName": "ABC商城", + "Aliyun_Smscode_TemplateCode": "SMS_204970706" + }, + "Cache": { + "CacheType": "MemoryCache", // RedisCache + "RedisConnectionString": "127.0.0.1:6379,password=,defaultDatabase=2" + }, + "SnowId": { + "WorkerId": "1" // 取值范围0~63,默认1 + }, + "OAuth": { + "Wechat": { + "app_id": "wx2959fdd3abc05362", + "app_key": "829f65b2be0652bcd50ea8cb820fd7fa", + "redirect_uri": "http://127.0.0.1:56868/oauth/wechatcallback", + "scope": "snsapi_userinfo" + } + }, + "UploadFile": { + // 头像 + "Avatar": { + "path": "Upload/Avatar", + "maxSize": 1048576, + "contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ] + }, + // 文档 + "Document": { + "path": "Upload/Document", + "maxSize": 1048576, + "contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ] + }, + // 商店 + "Shop": { + "path": "Upload/Shop", + "maxSize": 1048576, + "contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif" ] + }, + // 默认 + "Default": { + "path": "Upload/Default", + "maxSize": 1048576, + "contentType": [ "image/jpg", "image/png", "image/jpeg", "image/gif", "image/bmp", "text/plain", "application/pdf", "application/msword", "application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.presentationml.presentation" ] + } + }, + + "CoreSettings": { + "DefalutRoute": [ + "getLoginUser", + "logout", + "sysDictType:dropDown", + "sysDictType:dropDowns", + "sysFileInfo:upload", + "sysFileInfo:download", + "sysFileInfo:detail", + "sysFileInfo:preview", + "sysUser:updateInfo", + "sysUser:updatePwd", + "sysUser:updateAvatar", + "sysUser:checkBindcode", + "sysUser:getPwdRule", + "sysUser:sendCode", + "sysNotice:received", + "sysNotice:unread", + "sysNotice:detail", + "houseLog:list", + "houseLog:listByInfoId", + "houseLog:listByTaskId" + ] + }, + + "SimplePassword": { + "Pattern": "(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])(?=.*[^a-zA-Z0-9]){8,}", + "Descriptions": "密码中必须包含大小字母、数字、特称字符,至少8个字符" + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.Development.json b/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.Development.json new file mode 100644 index 0000000..bf8437d --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.Development.json @@ -0,0 +1,13 @@ +{ + "ConnectionStrings": { + //"DefaultConnection": "Data Source=./Ewide.db", + "DefaultConnection": "Data Source=118.178.224.202;Database=ewide;User ID=root;Password=root;pooling=true;port=3306;sslmode=none;CharSet=utf8;", + "PgSqlConnection": "HOST=127.0.0.1;PORT=5432;DATABASE=ewide;PASSWORD=postgres;USER ID=postgres;", + "MultiTenantConnection": "Data Source=./Dilon_SaaS.db" + }, + "SqlServerConnectionString": { + "DefaultConnection": "data source=118.178.224.202;initial catalog=CompanyScore_Test;persist security info=True;user id=KYSQLSERVERADMIN;password=KYDBLogin20161103...;MultipleActiveResultSets=True;App=EntityFramework", + "PgSqlConnection": "HOST=127.0.0.1;PORT=5432;DATABASE=ewide;PASSWORD=postgres;USER ID=postgres;", + "MultiTenantConnection": "Data Source=./Dilon_SaaS.db" + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.json b/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.json new file mode 100644 index 0000000..b27c822 --- /dev/null +++ b/Ewide.WorkOrderSys/bin/Debug/net5.0/dbsettings.json @@ -0,0 +1,8 @@ +{ + "ConnectionStrings": { + //"DefaultConnection": "Data Source=./Ewide.db", + "DefaultConnection": "Data Source=118.178.224.202;Database=ewide;User ID=root;Password=root;pooling=true;port=3306;sslmode=none;CharSet=utf8;", + "PgSqlConnection": "HOST=127.0.0.1;PORT=5432;DATABASE=ewide;PASSWORD=postgres;USER ID=postgres;", + "MultiTenantConnection": "Data Source=./Dilon_SaaS.db" + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/bin/Debug/net5.0/ref/Ewide.WorkOrderSys.dll b/Ewide.WorkOrderSys/bin/Debug/net5.0/ref/Ewide.WorkOrderSys.dll new file mode 100644 index 0000000..6741a6d Binary files /dev/null and b/Ewide.WorkOrderSys/bin/Debug/net5.0/ref/Ewide.WorkOrderSys.dll differ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Ewide.WorkOrderSys/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfo.cs b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfo.cs new file mode 100644 index 0000000..bb96e1d --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Ewide.WorkOrderSys")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Ewide.WorkOrderSys")] +[assembly: System.Reflection.AssemblyTitleAttribute("Ewide.WorkOrderSys")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfoInputs.cache b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f5320c0 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +acdb5e1d3f7e20937ae451a5cc1bfa8082296504 diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.GeneratedMSBuildEditorConfig.editorconfig b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..dca7ca3 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows +build_property.RootNamespace = Ewide.WorkOrderSys +build_property.ProjectDir = D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.assets.cache b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.assets.cache new file mode 100644 index 0000000..2c6c12b Binary files /dev/null and b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.assets.cache differ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.AssemblyReference.cache b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.AssemblyReference.cache new file mode 100644 index 0000000..efebcc0 Binary files /dev/null and b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.AssemblyReference.cache differ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.CopyComplete b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.CoreCompileInputs.cache b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..21ce1d7 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +37174cc1caaf69cef9347d2297c24796947cfc70 diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.FileListAbsolute.txt b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..bee3f7a --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.csproj.FileListAbsolute.txt @@ -0,0 +1,40 @@ +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.csproj.AssemblyReference.cache +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.GeneratedMSBuildEditorConfig.editorconfig +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.AssemblyInfoInputs.cache +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.AssemblyInfo.cs +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.csproj.CoreCompileInputs.cache +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Service\CodeGen\Dto\TableOutput.cs +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\applicationconfig.json +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\dbsettings.Development.json +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\dbsettings.json +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.WorkOrderSys.deps.json +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.WorkOrderSys.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\ref\Ewide.WorkOrderSys.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.WorkOrderSys.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.Core.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.EntityFramework.Core.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.Core.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.Core.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Ewide.EntityFramework.Core.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Authentication.JwtBearer.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.Dapper.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.Logging.Serilog.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.ObjectMapper.Mapster.xml +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.csproj.CopyComplete +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\ref\Ewide.WorkOrderSys.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\obj\Debug\net5.0\Ewide.WorkOrderSys.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.dll +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.pdb +D:\WORK\G公司内部管理软件\WorkOrderSys_git\Ewide.WorkOrderSys\bin\Debug\net5.0\Furion.Extras.DatabaseAccessor.SqlSugar.xml diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.dll b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.dll new file mode 100644 index 0000000..24d3d39 Binary files /dev/null and b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.dll differ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.pdb b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.pdb new file mode 100644 index 0000000..691ef98 Binary files /dev/null and b/Ewide.WorkOrderSys/obj/Debug/net5.0/Ewide.WorkOrderSys.pdb differ diff --git a/Ewide.WorkOrderSys/obj/Debug/net5.0/ref/Ewide.WorkOrderSys.dll b/Ewide.WorkOrderSys/obj/Debug/net5.0/ref/Ewide.WorkOrderSys.dll new file mode 100644 index 0000000..6741a6d Binary files /dev/null and b/Ewide.WorkOrderSys/obj/Debug/net5.0/ref/Ewide.WorkOrderSys.dll differ diff --git a/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.dgspec.json b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.dgspec.json new file mode 100644 index 0000000..41fc783 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.dgspec.json @@ -0,0 +1,666 @@ +{ + "format": 1, + "restore": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj": {} + }, + "projects": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj", + "projectName": "Ewide.WorkOrderSys", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj", + "projectName": "Ewide.Core", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "CSRedisCore": { + "target": "Package", + "version": "[3.6.6, )" + }, + "Kendo.DynamicLinqCore": { + "target": "Package", + "version": "[3.1.1, )" + }, + "Portable.BouncyCastle": { + "target": "Package", + "version": "[1.8.10, )" + }, + "Quartz": { + "target": "Package", + "version": "[3.3.2, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[5.0.2, )" + }, + "System.Text.Encoding.CodePages": { + "target": "Package", + "version": "[5.0.0, )" + }, + "UAParser": { + "target": "Package", + "version": "[3.1.46, )" + }, + "aliyun-net-sdk-core": { + "target": "Package", + "version": "[1.5.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj", + "projectName": "Ewide.EntityFramework.Core", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[5.0.5, )" + }, + "MySql.Data": { + "target": "Package", + "version": "[8.0.25, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.0-alpha.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj", + "projectName": "Furion.Extras.Authentication.JwtBearer", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Furion.Extras.Web.HttpContext": { + "target": "Package", + "version": "[2.12.9, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[5.0.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj", + "projectName": "Furion.Extras.DatabaseAccessor.Dapper", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Dapper.Contrib": { + "target": "Package", + "version": "[2.0.78, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj", + "projectName": "Furion.Extras.DatabaseAccessor.SqlSugar", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\Furion.Extras.DatabaseAccessor.SqlSugar.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.SqlSugar\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "sqlSugarCore": { + "target": "Package", + "version": "[5.0.3.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj", + "projectName": "Furion.Extras.Logging.Serilog", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Serilog.AspNetCore": { + "target": "Package", + "version": "[4.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj", + "projectName": "Furion.Extras.ObjectMapper.Mapster", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Mapster": { + "target": "Package", + "version": "[7.2.0, )" + }, + "Mapster.DependencyInjection": { + "target": "Package", + "version": "[1.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": { + "version": "2.12.9", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj", + "projectName": "Furion", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Furion\\framework\\Furion\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Furion.Extras.DependencyModel.CodeAnalysis": { + "target": "Package", + "version": "[2.12.9, )" + }, + "MiniProfiler.AspNetCore.Mvc": { + "target": "Package", + "version": "[4.2.22, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.1.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.props b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.props new file mode 100644 index 0000000..28e678f --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.props @@ -0,0 +1,23 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\z1303\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.11.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + C:\Users\z1303\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + C:\Users\z1303\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.targets b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/Ewide.WorkOrderSys.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Ewide.WorkOrderSys/obj/project.assets.json b/Ewide.WorkOrderSys/obj/project.assets.json new file mode 100644 index 0000000..61da154 --- /dev/null +++ b/Ewide.WorkOrderSys/obj/project.assets.json @@ -0,0 +1,9190 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "aliyun-net-sdk-core/1.5.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/aliyun-net-sdk-core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/aliyun-net-sdk-core.dll": {} + } + }, + "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": {} + } + }, + "CSRedisCore/3.6.6": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/CSRedisCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/CSRedisCore.dll": {} + } + }, + "Dapper/2.0.78": { + "type": "package", + "compile": { + "lib/net5.0/Dapper.dll": {} + }, + "runtime": { + "lib/net5.0/Dapper.dll": {} + } + }, + "Dapper.Contrib/2.0.78": { + "type": "package", + "dependencies": { + "Dapper": "2.0.78" + }, + "compile": { + "lib/net5.0/Dapper.Contrib.dll": {} + }, + "runtime": { + "lib/net5.0/Dapper.Contrib.dll": {} + } + }, + "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { + "type": "package", + "dependencies": { + "Ben.Demystifier": "0.4.1", + "Microsoft.AspNetCore.Razor.Language": "5.0.7", + "Microsoft.CodeAnalysis.CSharp": "3.10.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.7", + "Microsoft.Extensions.DependencyModel": "5.0.0" + }, + "compile": { + "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll": {} + } + }, + "Furion.Extras.Web.HttpContext/2.12.9": { + "type": "package", + "compile": { + "lib/net5.0/Furion.Extras.Web.HttpContext.dll": {} + }, + "runtime": { + "lib/net5.0/Furion.Extras.Web.HttpContext.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Google.Protobuf/3.14.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Google.Protobuf.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Google.Protobuf.dll": {} + } + }, + "K4os.Compression.LZ4/1.1.11": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": {} + } + }, + "K4os.Compression.LZ4.Streams/1.1.11": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.1.11", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {} + }, + "runtime": { + "lib/netstandard2.0/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": {} + } + }, + "Kendo.DynamicLinqCore/3.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Linq.Dynamic.Core": "1.2.2" + }, + "compile": { + "lib/netstandard2.1/Kendo.DynamicLinqCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Kendo.DynamicLinqCore.dll": {} + } + }, + "Mapster/7.2.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" + }, + "compile": { + "lib/netstandard2.0/Mapster.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Mapster.DependencyInjection.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1" + }, + "compile": { + "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Razor.Language/5.0.7": { + "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.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/3.10.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "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/3.10.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.10.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/netcoreapp3.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.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite/2.2.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "2.2.4", + "SQLitePCLRaw.bundle_green": "1.1.12" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.DotNet.PlatformAbstractions/3.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "5.0.5", + "SQLitePCLRaw.bundle_e_sqlite3": "2.0.4" + }, + "compile": { + "lib/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/5.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "5.0.5", + "Microsoft.DotNet.PlatformAbstractions": "3.1.6", + "Microsoft.EntityFrameworkCore.Relational": "5.0.5", + "Microsoft.Extensions.DependencyModel": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Sqlite.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.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/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.8" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.8", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.0.0", + "Microsoft.Extensions.Configuration.Binder": "2.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0", + "Microsoft.Extensions.Options": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/6.7.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/6.7.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.7.1", + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.7.1", + "System.IdentityModel.Tokens.Jwt": "6.7.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/6.7.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.7.1", + "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/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.AccessControl": "4.4.0", + "System.Security.Principal.Windows": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.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.25": { + "type": "package", + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.14.0", + "K4os.Compression.LZ4": "1.1.11", + "K4os.Compression.LZ4.Streams": "1.1.11", + "K4os.Hash.xxHash": "1.0.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net5.0/MySql.Data.dll": {}, + "lib/net5.0/Ubiety.Dns.Core.dll": {}, + "lib/net5.0/Zstandard.Net.dll": {} + }, + "runtime": { + "lib/net5.0/MySql.Data.dll": {}, + "lib/net5.0/Ubiety.Dns.Core.dll": {}, + "lib/net5.0/Zstandard.Net.dll": {} + } + }, + "MySqlConnector/1.1.0": { + "type": "package", + "compile": { + "lib/net5.0/MySqlConnector.dll": {} + }, + "runtime": { + "lib/net5.0/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.AppContext": "4.1.0", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Console": "4.0.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.Compression.ZipFile": "4.0.1", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "System.Xml.XDocument": "4.0.11" + } + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/4.1.3.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "4.6.0" + }, + "compile": { + "lib/netcoreapp3.0/Npgsql.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Npgsql.dll": {} + } + }, + "Oracle.ManagedDataAccess.Core/2.18.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "5.0.0", + "MySqlConnector": "1.1.0" + }, + "compile": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Portable.BouncyCastle/1.8.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "Quartz/3.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.1.1", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.0/Quartz.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Quartz.dll": {} + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": {} + } + }, + "Serilog.AspNetCore/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Serilog": "2.10.0", + "Serilog.Extensions.Hosting": "4.1.2", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.1.0", + "Serilog.Sinks.Console": "3.1.1", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "4.1.0" + }, + "compile": { + "lib/net5.0/Serilog.AspNetCore.dll": {} + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "3.1.8", + "Serilog": "2.10.0", + "Serilog.Extensions.Logging": "3.0.1" + }, + "compile": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {} + } + }, + "Serilog.Extensions.Logging/3.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "2.0.0", + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {} + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.8.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {} + } + }, + "Serilog.Settings.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyModel": "2.0.4", + "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0", + "Serilog": "2.6.0" + }, + "compile": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {} + } + }, + "Serilog.Sinks.Console/3.1.1": { + "type": "package", + "dependencies": { + "Serilog": "2.5.0", + "System.Console": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "compile": { + "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {} + }, + "runtime": { + "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {} + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {} + } + }, + "Serilog.Sinks.File/4.1.0": { + "type": "package", + "dependencies": { + "Serilog": "2.5.0", + "System.IO.FileSystem": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Threading.Timer": "4.0.1" + }, + "compile": { + "lib/netstandard2.0/Serilog.Sinks.File.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.File.dll": {} + } + }, + "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.bundle_green/1.1.12": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "1.1.12", + "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12", + "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12", + "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12", + "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12" + }, + "compile": { + "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {}, + "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {}, + "lib/netcoreapp/SQLitePCLRaw.batteries_v2.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": "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.lib.e_sqlite3.linux/1.1.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "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-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" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win8-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win8-arm" + } + } + }, + "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": {} + } + }, + "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.0", + "SQLitePCLRaw.core": "1.1.12" + }, + "compile": { + "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "SqlSugarCore/5.0.3.2": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite": "2.2.4", + "MySql.Data": "8.0.21", + "Newtonsoft.Json": "10.0.3", + "Npgsql": "4.1.3.1", + "Oracle.ManagedDataAccess.Core": "2.18.3", + "SqlSugarCore.Dm": "1.0.0", + "SqlSugarCore.Kdbndp": "1.0.0", + "System.Data.Common": "4.3.0", + "System.Data.SqlClient": "4.4.0", + "System.Reflection.Emit.Lightweight": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/SqlSugar.dll": {} + }, + "runtime": { + "lib/netstandard2.0/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.1.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.1.4", + "Swashbuckle.AspNetCore.SwaggerGen": "6.1.4", + "Swashbuckle.AspNetCore.SwaggerUI": "6.1.4" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.1.4": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.1.4" + }, + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { + "type": "package", + "compile": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "runtime": { + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.AppContext/4.1.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.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.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.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.Data.SqlClient/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.4.0", + "System.Text.Encoding.CodePages": "4.4.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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/5.0.1": { + "type": "package", + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.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.Drawing.Common/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp3.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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.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.7.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.7.1", + "Microsoft.IdentityModel.Tokens": "6.7.1" + }, + "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.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.IO.Compression": "4.1.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.0.1": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0", + "System.IO": "4.1.0", + "System.IO.Compression": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "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.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.Dynamic.Core/1.2.2": { + "type": "package", + "compile": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Globalization.Extensions": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.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.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "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.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/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.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.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.0.1": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.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.2.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11" + }, + "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.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Linq": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.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.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "runtime.native.System.Security.Cryptography": "4.0.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.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "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.X509Certificates/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Globalization.Calendars": "4.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.Numerics": "4.0.1", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Security.Cryptography.Cng": "4.2.0", + "System.Security.Cryptography.Csp": "4.0.0", + "System.Security.Cryptography.Encoding": "4.0.0", + "System.Security.Cryptography.OpenSsl": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "runtime.native.System": "4.0.0", + "runtime.native.System.Net.Http": "4.0.1", + "runtime.native.System.Security.Cryptography": "4.0.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/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Json/4.6.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "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.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "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.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "UAParser/3.1.46": { + "type": "package", + "compile": { + "lib/netcoreapp2.0/UAParser.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/UAParser.dll": {} + } + }, + "Ewide.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "CSRedisCore": "3.6.6", + "Furion": "2.12.9", + "Furion.Extras.Authentication.JwtBearer": "2.12.9", + "Furion.Extras.DatabaseAccessor.Dapper": "2.12.9", + "Furion.Extras.DatabaseAccessor.SqlSugar": "2.12.9", + "Furion.Extras.Logging.Serilog": "2.12.9", + "Furion.Extras.ObjectMapper.Mapster": "2.12.9", + "Kendo.DynamicLinqCore": "3.1.1", + "Portable.BouncyCastle": "1.8.10", + "Quartz": "3.3.2", + "System.Drawing.Common": "5.0.2", + "System.Text.Encoding.CodePages": "5.0.0", + "UAParser": "3.1.46", + "aliyun-net-sdk-core": "1.5.10" + }, + "compile": { + "bin/placeholder/Ewide.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Ewide.Core.dll": {} + } + }, + "Ewide.EntityFramework.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Ewide.Core": "1.0.0", + "Microsoft.EntityFrameworkCore.Sqlite": "5.0.5", + "MySql.Data": "8.0.25", + "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2" + }, + "compile": { + "bin/placeholder/Ewide.EntityFramework.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Ewide.EntityFramework.Core.dll": {} + } + }, + "Furion/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Furion.Extras.DependencyModel.CodeAnalysis": "2.12.9", + "MiniProfiler.AspNetCore.Mvc": "4.2.22", + "Swashbuckle.AspNetCore": "6.1.4" + }, + "compile": { + "bin/placeholder/Furion.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Furion.Extras.Web.HttpContext": "2.12.9", + "Microsoft.AspNetCore.Authentication.JwtBearer": "5.0.7" + }, + "compile": { + "bin/placeholder/Furion.Extras.Authentication.JwtBearer.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.Extras.Authentication.JwtBearer.dll": {} + } + }, + "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Dapper.Contrib": "2.0.78" + }, + "compile": { + "bin/placeholder/Furion.Extras.DatabaseAccessor.Dapper.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.Extras.DatabaseAccessor.Dapper.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "sqlSugarCore": "5.0.3.2" + }, + "compile": { + "bin/placeholder/Furion.Extras.DatabaseAccessor.SqlSugar.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.Extras.DatabaseAccessor.SqlSugar.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Furion.Extras.Logging.Serilog/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Serilog.AspNetCore": "4.1.0" + }, + "compile": { + "bin/placeholder/Furion.Extras.Logging.Serilog.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.Extras.Logging.Serilog.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "type": "project", + "framework": ".NETCoreApp,Version=v5.0", + "dependencies": { + "Mapster": "7.2.0", + "Mapster.DependencyInjection": "1.0.0" + }, + "compile": { + "bin/placeholder/Furion.Extras.ObjectMapper.Mapster.dll": {} + }, + "runtime": { + "bin/placeholder/Furion.Extras.ObjectMapper.Mapster.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "aliyun-net-sdk-core/1.5.10": { + "sha512": "QJfZdf3cQZEeudq2SDASJEJbl8D80p7YsGFZrrcFDba+1jsSeUT+oR0XoU4MdEF9kHr8mC6HoOsS5aioeMVQqw==", + "type": "package", + "path": "aliyun-net-sdk-core/1.5.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aliyun-net-sdk-core.1.5.10.nupkg.sha512", + "aliyun-net-sdk-core.nuspec", + "lib/net45/aliyun-net-sdk-core.dll", + "lib/netstandard2.0/aliyun-net-sdk-core.dll" + ] + }, + "Ben.Demystifier/0.4.1": { + "sha512": "axFeEMfmEORy3ipAzOXG/lE+KcNptRbei3F0C4kQCdeiQtW+qJW90K5iIovITGrdLt8AjhNCwk5qLSX9/rFpoA==", + "type": "package", + "path": "ben.demystifier/0.4.1", + "files": [ + ".nupkg.metadata", + ".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" + ] + }, + "CSRedisCore/3.6.6": { + "sha512": "fxP+ZuW3wj1425iILLyF+L1oTjWRM5odFn0p/LFYkUWzEfYznjBB7xzn716kVH3SxD0cSv7fj9Jaf1kKaPduRA==", + "type": "package", + "path": "csrediscore/3.6.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "csrediscore.3.6.6.nupkg.sha512", + "csrediscore.nuspec", + "lib/net40/CSRedisCore.dll", + "lib/net40/CSRedisCore.xml", + "lib/net45/CSRedisCore.dll", + "lib/net45/CSRedisCore.xml", + "lib/netstandard2.0/CSRedisCore.dll", + "lib/netstandard2.0/CSRedisCore.xml" + ] + }, + "Dapper/2.0.78": { + "sha512": "vLPwL2HZXp/DN17Eu7sg6GMEj02alq7jcy6atn5Gv8i96b9Hu1UoxlCrhInUPfSFLQQiD8O7pdWAE1fdUEO/1Q==", + "type": "package", + "path": "dapper/2.0.78", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dapper.2.0.78.nupkg.sha512", + "dapper.nuspec", + "lib/net461/Dapper.dll", + "lib/net461/Dapper.xml", + "lib/net5.0/Dapper.dll", + "lib/net5.0/Dapper.xml", + "lib/netstandard2.0/Dapper.dll", + "lib/netstandard2.0/Dapper.xml" + ] + }, + "Dapper.Contrib/2.0.78": { + "sha512": "sUfDVIf8LlHNiz3MfUFodeyRiemfN1JFkPxYjCxFWlwNPg1iQ49mB+0E89TkywWs4X8fiRWOVDQgtH5FtzK5Kw==", + "type": "package", + "path": "dapper.contrib/2.0.78", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dapper.contrib.2.0.78.nupkg.sha512", + "dapper.contrib.nuspec", + "lib/net461/Dapper.Contrib.dll", + "lib/net461/Dapper.Contrib.xml", + "lib/net5.0/Dapper.Contrib.dll", + "lib/net5.0/Dapper.Contrib.xml", + "lib/netstandard2.0/Dapper.Contrib.dll", + "lib/netstandard2.0/Dapper.Contrib.xml" + ] + }, + "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { + "sha512": "ewZuytQCMFbqtbz2ILCFGSsPrhixkybYeSrIK2EFxchXOoiSVAsHniKMA+BFuRifxjp+oZHyMvZtNmUvAEK23w==", + "type": "package", + "path": "furion.extras.dependencymodel.codeanalysis/2.12.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "furion.extras.dependencymodel.codeanalysis.2.12.9.nupkg.sha512", + "furion.extras.dependencymodel.codeanalysis.nuspec", + "icon.png", + "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll", + "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.xml" + ] + }, + "Furion.Extras.Web.HttpContext/2.12.9": { + "sha512": "ZUnCxN5LHCoDvxFGsVAHaPfvDpkpQQiRPNqrst9GbFUjt/Elt6URfmCEB35NsQ5PSqj0rHQWyY4MLteNsB+8Tw==", + "type": "package", + "path": "furion.extras.web.httpcontext/2.12.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "furion.extras.web.httpcontext.2.12.9.nupkg.sha512", + "furion.extras.web.httpcontext.nuspec", + "icon.png", + "lib/net5.0/Furion.Extras.Web.HttpContext.dll", + "lib/net5.0/Furion.Extras.Web.HttpContext.xml" + ] + }, + "Google.Protobuf/3.14.0": { + "sha512": "9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==", + "type": "package", + "path": "google.protobuf/3.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.14.0.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/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.1.11": { + "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==", + "type": "package", + "path": "k4os.compression.lz4/1.1.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.1.11.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.1.11": { + "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.1.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.1.11.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" + ] + }, + "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" + ] + }, + "Kendo.DynamicLinqCore/3.1.1": { + "sha512": "Hhwwxs1TTdrq25KsJ6xpS3FhlGolmnHA3oqgo4enLG8+3grEQ1Dkhvuy6JxDpuM9d5xX/E76qzBGSFKMwOC5/w==", + "type": "package", + "path": "kendo.dynamiclinqcore/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "kendo.dynamiclinqcore.3.1.1.nupkg.sha512", + "kendo.dynamiclinqcore.nuspec", + "lib/netstandard1.6/Kendo.DynamicLinqCore.dll", + "lib/netstandard2.0/Kendo.DynamicLinqCore.dll", + "lib/netstandard2.1/Kendo.DynamicLinqCore.dll" + ] + }, + "Mapster/7.2.0": { + "sha512": "dIXWyCPHrzcQ7Aeblz/bKxsP9ZxGMMbHZTyywZS7/cGa9elPcJiTNeJ4OahzLtATzL13xC4MF8NRNcj49cCIng==", + "type": "package", + "path": "mapster/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net40/Mapster.dll", + "lib/net45/Mapster.dll", + "lib/netstandard1.3/Mapster.dll", + "lib/netstandard2.0/Mapster.dll", + "mapster.7.2.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.dll", + "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/5.0.7": { + "sha512": "80zYklKE6CZZswm5zjCUNbDx2Pavt45qfmVWLY1Heoe7GiJsPGGs9odgmsUFZ75bq4D6F4ZwK0LOam1TGUlHCg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.5.0.7.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/5.0.7": { + "sha512": "U5lqzXIbvS31gPWYgRbJtbPVIlJaLYVjCOpOo0QnhhMDuCv0kxLXjAq30OCUMzq+2gmaa4XsLYHs9n7hXYRLWA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "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.CodeAnalysis.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_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.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.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "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/3.10.0": { + "sha512": "Htsk5pJmKjTgUwAP5oyuIODX/b6Zl4RD0tpM62NEncxne/LiQvP50j9g8h+qFtp4lS4AmAYTVPBbXgBuC5zcQA==", + "type": "package", + "path": "microsoft.codeanalysis.common/3.10.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/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.3.10.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/3.10.0": { + "sha512": "GM83V29l0zsOLReyxpFs32Ujss3wkrVbWFTVjGANXxceycWmi7aLBNL4TQ3r3ZiG4m2b+/LIqwIVkDvZpjOnuw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/3.10.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.3.10.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.Sqlite/2.2.4": { + "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==", + "type": "package", + "path": "microsoft.data.sqlite/2.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.2.2.4.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.DotNet.PlatformAbstractions/3.1.6": { + "sha512": "jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==", + "type": "package", + "path": "microsoft.dotnet.platformabstractions/3.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/net45/Microsoft.DotNet.PlatformAbstractions.xml", + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.xml", + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.xml", + "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", + "microsoft.dotnet.platformabstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/5.0.5": { + "sha512": "H6I/1bRafr7RFMpLg62Nje+8uRo7E1amm5IBYAO8KJo6YOwwS/FGNGD2ZjT9Jf28WEo2ahvHH4isqYkvDJRKiw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/_._", + "microsoft.entityframeworkcore.sqlite.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/5.0.5": { + "sha512": "Jo1QTSGpeMBJnjLhpD6aWqrMWOFI6qFurnm4v05qMJjkosfBNrXkEMu7YF5szLCXspoEsmHDej5CE44vPAYByw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/5.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.5.0.5.nupkg.sha512", + "microsoft.entityframeworkcore.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", + "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.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration/2.0.0": { + "sha512": "SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==", + "type": "package", + "path": "microsoft.extensions.configuration/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/2.0.0": { + "sha512": "IznHHzGUtrdpuQqIUdmzF6TYPcsYHONhHh3o9dGp39sX/9Zfmt476UnhvU0UhXgJnXXAikt/MpN6AuSLCCMdEQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": { + "sha512": "U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "sha512": "7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": { + "sha512": "Y/lGICwO27fCkQRK3tZseVzFjZaxfGmui990E67sB4MuiPzdJHnJDS/BeYWrHShSSBgCl4KyKRx4ux686fftPg==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { + "sha512": "q/Ii8ILV8cM1X49gnl12cJK+0KWiI1xUeiLYiE9+uRonJLaHWB0l8t89rGnZTEGthGKItyikKSB38LQpfy/zBw==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.7.1", + "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/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.7.1": { + "sha512": "WGtTiTy2ZikOz/I5GxCGbNPLOpyI9fPyuyG4Q5rfkhACK+Q0Ad6U8XajYZ2cJ2cFKse0IvHwm15HVrfwrX/89g==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.7.1", + "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/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.7.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.7.1": { + "sha512": "DVGYIRUK3TkCTmz0IgBzWUE55CDNfLtXil1FgSbgHI7hi2fP2pz4tiTAno/5O/hdVwAzV+HtCQtFi7xW8smaHw==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.7.1", + "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/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.7.1": { + "sha512": "99gA+E6ZOCqySrT80Yh6wrfjJfeMxDisdAcA5Q66zHxMPY5Gzc8aT2Ldzu0GP1sADv/o3yI1Gc3P1GHXlXAVVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.7.1", + "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/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.7.1": { + "sha512": "Td9Vn9d/0eM1zlUUvaVQzjqdBkBLJ2oGtGL/LYPuiCUAALMeAHVDtpXGk8eYI8Gbduz5n+o7ifldsCIca4MWew==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.7.1", + "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/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.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", + "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.0.1": { + "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "type": "package", + "path": "microsoft.win32.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.0.1.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.4.0": { + "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "type": "package", + "path": "microsoft.win32.registry/4.4.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/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.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/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/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/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.25": { + "sha512": "nt0RP1Z3Prz3JQAH1PgIbvBYzumInTVQZEOMU57iRSNeD97+YjMuHgQBCLCqju2Btb4Hmn2Kv9aMFX3jhVaMlg==", + "type": "package", + "path": "mysql.data/8.0.25", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/Ubiety.Dns.Core.dll", + "lib/net452/Zstandard.Net.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/Ubiety.Dns.Core.dll", + "lib/net48/Zstandard.Net.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/Ubiety.Dns.Core.dll", + "lib/net5.0/Zstandard.Net.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/Ubiety.Dns.Core.dll", + "lib/netstandard2.0/Zstandard.Net.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/Ubiety.Dns.Core.dll", + "lib/netstandard2.1/Zstandard.Net.dll", + "mysql.data.8.0.25.nupkg.sha512", + "mysql.data.nuspec" + ] + }, + "MySqlConnector/1.1.0": { + "sha512": "RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==", + "type": "package", + "path": "mysqlconnector/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/netcoreapp2.1/MySqlConnector.dll", + "lib/netcoreapp2.1/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard1.3/MySqlConnector.dll", + "lib/netstandard1.3/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.1.1.0.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.0": { + "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "type": "package", + "path": "netstandard.library/1.6.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.0.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/12.0.3": { + "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "type": "package", + "path": "newtonsoft.json/12.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/4.1.3.1": { + "sha512": "354pl/Picmt5/AIrm8urFwtxfK4n4NbmfBnLA9yvP8VtILSQF3/sFo3+lGuz+q4iyD18QeNFy0NMNBzsocFVlw==", + "type": "package", + "path": "npgsql/4.1.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Npgsql.dll", + "lib/net461/Npgsql.pdb", + "lib/net461/Npgsql.xml", + "lib/netcoreapp3.0/Npgsql.dll", + "lib/netcoreapp3.0/Npgsql.pdb", + "lib/netcoreapp3.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.pdb", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.pdb", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.4.1.3.1.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Oracle.ManagedDataAccess.Core/2.18.3": { + "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==", + "type": "package", + "path": "oracle.manageddataaccess.core/2.18.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "info.txt", + "lib/netstandard2.0/Oracle.ManagedDataAccess.dll", + "oracle.manageddataaccess.core.2.18.3.nupkg.sha512", + "oracle.manageddataaccess.core.nuspec", + "readme.txt" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": { + "sha512": "g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.10": { + "sha512": "XLhjNAwuVB9ynwn11l5K44eyozh8q6gFseTrlnLNttejimglX7+F9+vxh60LPjvA/DAt6fUdS43N3ah8K6eaWg==", + "type": "package", + "path": "portable.bouncycastle/1.8.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.10.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "Quartz/3.3.2": { + "sha512": "zsLt0LLHfIO+hlLBrBB2f7Qolf2C3SeCWXawgnWXSuvsAWsvWBLSax9Tpu5X/KzoF4Y4UHX7tdxvQjxILEsRWA==", + "type": "package", + "path": "quartz/3.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Quartz.dll", + "lib/net461/Quartz.xml", + "lib/net472/Quartz.dll", + "lib/net472/Quartz.xml", + "lib/netstandard2.0/Quartz.dll", + "lib/netstandard2.0/Quartz.xml", + "quartz-logo-small.png", + "quartz.3.3.2.nupkg.sha512", + "quartz.nuspec" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.1.0": { + "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "type": "package", + "path": "runtime.native.system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.0.1": { + "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "type": "package", + "path": "runtime.native.system.net.http/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.0.1.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0": { + "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "type": "package", + "path": "runtime.native.system.security.cryptography/4.0.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "runtime.native.system.security.cryptography.nuspec" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/4.1.0": { + "sha512": "qRdEkjX10VJ5Cb3B9q/Q/tv+0ntDxAIA1YbOmmNMlkha1TU0ckK5b73eBYMNNLMAU92ofrzOEuIJEc6Q+Q1Z2A==", + "type": "package", + "path": "serilog.aspnetcore/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net5.0/Serilog.AspNetCore.dll", + "lib/net5.0/Serilog.AspNetCore.xml", + "lib/netcoreapp3.1/Serilog.AspNetCore.dll", + "lib/netcoreapp3.1/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "lib/netstandard2.1/Serilog.AspNetCore.dll", + "lib/netstandard2.1/Serilog.AspNetCore.xml", + "serilog.aspnetcore.4.1.0.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/4.1.2": { + "sha512": "nOpvvYgDoepae4FsXnyX4uSYLO+f+v7aRyNpA0pbpxjdkpw3FWZtfQDe2gnUmZGNYMLWnxMRCPJQ455U/dOUbQ==", + "type": "package", + "path": "serilog.extensions.hosting/4.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.4.1.2.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/3.0.1": { + "sha512": "U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==", + "type": "package", + "path": "serilog.extensions.logging/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "serilog.extensions.logging.3.0.1.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/1.1.0": { + "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "type": "package", + "path": "serilog.formatting.compact/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Serilog.Formatting.Compact.dll", + "lib/net452/Serilog.Formatting.Compact.xml", + "lib/netstandard1.1/Serilog.Formatting.Compact.dll", + "lib/netstandard1.1/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "serilog.formatting.compact.1.1.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Settings.Configuration/3.1.0": { + "sha512": "BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==", + "type": "package", + "path": "serilog.settings.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Serilog.Settings.Configuration.dll", + "lib/net451/Serilog.Settings.Configuration.xml", + "lib/net461/Serilog.Settings.Configuration.dll", + "lib/net461/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.3.1.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/3.1.1": { + "sha512": "56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==", + "type": "package", + "path": "serilog.sinks.console/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.Console.dll", + "lib/net45/Serilog.Sinks.Console.xml", + "lib/netcoreapp1.1/Serilog.Sinks.Console.dll", + "lib/netcoreapp1.1/Serilog.Sinks.Console.xml", + "lib/netstandard1.3/Serilog.Sinks.Console.dll", + "lib/netstandard1.3/Serilog.Sinks.Console.xml", + "serilog.sinks.console.3.1.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.File/4.1.0": { + "sha512": "U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==", + "type": "package", + "path": "serilog.sinks.file/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "serilog.sinks.file.4.1.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "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.bundle_green/1.1.12": { + "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==", + "type": "package", + "path": "sqlitepclraw.bundle_green/1.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/wp8/SQLitePCLRaw.bundle_green.targets", + "build/wp80/arm/SQLitePCLRaw.batteries_green.dll", + "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll", + "build/wp80/x86/SQLitePCLRaw.batteries_green.dll", + "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll", + "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll", + "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll", + "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/net35/SQLitePCLRaw.batteries_green.dll", + "lib/net35/SQLitePCLRaw.batteries_v2.dll", + "lib/net40/SQLitePCLRaw.batteries_green.dll", + "lib/net40/SQLitePCLRaw.batteries_v2.dll", + "lib/net45/SQLitePCLRaw.batteries_green.dll", + "lib/net45/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll", + "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll", + "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll", + "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll", + "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll", + "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll", + "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/uap10.0/SQLitePCLRaw.batteries_green.dll", + "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/win8/SQLitePCLRaw.batteries_green.dll", + "lib/win8/SQLitePCLRaw.batteries_v2.dll", + "lib/win81/SQLitePCLRaw.batteries_green.dll", + "lib/win81/SQLitePCLRaw.batteries_v2.dll", + "lib/wp8/_._", + "lib/wpa81/SQLitePCLRaw.batteries_green.dll", + "lib/wpa81/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512", + "sqlitepclraw.bundle_green.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.lib.e_sqlite3.linux/1.1.12": { + "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets", + "lib/net35/_._", + "lib/netstandard1.0/_._", + "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-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.linux.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": { + "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets", + "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets", + "lib/Xamarin.Mac20/_._", + "lib/net35/_._", + "lib/netstandard1.0/_._", + "lib/netstandard2.0/_._", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.osx.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": { + "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets", + "lib/net35/_._", + "lib/netstandard1.0/_._", + "lib/netstandard2.0/_._", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win8-arm/native/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.v110_xp.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" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": { + "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec" + ] + }, + "SqlSugarCore/5.0.3.2": { + "sha512": "Oyl73NFAPBYNgV/6qfclNTarLMAkpvPFT0kzzwNryoriJXtUgDngTPedfd4nYbrs+k7vlTMlgAOfQtJoIA6tWQ==", + "type": "package", + "path": "sqlsugarcore/5.0.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SqlSugar.dll", + "sqlsugarcore.5.0.3.2.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.1.4": { + "sha512": "aglxV+kJA5wP0RoAS8Rrh4Jp7bmVEcDAAofdSyGfea4TSEtNRLam9Fq0A4+0asUWDRk1N0/6VnuLC6+ev50wSQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.1.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.1.4": { + "sha512": "5XRKPKXpQRJMdOwHgotSZjWYGKnvresUIKiUOecmDrsiTkRpUd15QJMS/+HKYjjOvWnJthYwhLJG3pABJOHwOg==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.1.4", + "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/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.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { + "sha512": "i0Y3a3XMKz7r9vMNtB7TUIsWXpz9uJwnJ42NV3lAnmem7XpTykxm/cFJqHc9CqVBdbPf7XPvhUvEiUybRlocIg==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.1.4", + "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/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.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { + "sha512": "Ue8Ag73DOXPPB/NCqT7oN1PYSj35IETWROsIZG9EbwAtFDcgonWOrHbefjMFUGyPalNm6CSmVm1JInpURnxMgw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.1.4", + "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/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.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.AppContext/4.1.0": { + "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "type": "package", + "path": "system.appcontext/4.1.0", + "files": [ + ".nupkg.metadata", + "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.1.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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.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", + "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.Concurrent.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.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.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", + "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.Common/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.Data.SqlClient/4.4.0": { + "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==", + "type": "package", + "path": "system.data.sqlclient/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "system.data.sqlclient.4.4.0.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/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.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.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", + "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.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.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.Diagnostics.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.0.1.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", + "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.Tracing.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.Drawing.Common/5.0.2": { + "sha512": "rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", + "type": "package", + "path": "system.drawing.common/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "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.5.0.2.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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.1": { + "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "type": "package", + "path": "system.globalization.calendars/4.0.1", + "files": [ + ".nupkg.metadata", + "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.0.1.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1": { + "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "type": "package", + "path": "system.globalization.extensions/4.0.1", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.0.1.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.7.1": { + "sha512": "sPnRn9dUMYARQC3mAKWpig/7rlrruqJvopKXmGoYAQ1A+xQsT3q5LiwsArkV8Oz/hfiRCLkV9vgi3FQg/mYfrw==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.7.1", + "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/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.7.1.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", + "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.1.0": { + "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "type": "package", + "path": "system.io.compression/4.1.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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.1.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.1": { + "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "type": "package", + "path": "system.io.compression.zipfile/4.0.1", + "files": [ + ".nupkg.metadata", + "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/netstandard1.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.0.1.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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.2.2": { + "sha512": "I3IaeyTL7eXF1EmRe5K5qpFomnD0Fd8uLfv7SqBC9IniiM2xaUDMarjDsHT1Qbvv40irH0278RkzEu0ajHKh+w==", + "type": "package", + "path": "system.linq.dynamic.core/1.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/uap10.0/System.Linq.Dynamic.Core.dll", + "lib/uap10.0/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0/System.Linq.Dynamic.Core.pri", + "lib/uap10.0/System.Linq.Dynamic.Core.xml", + "system.linq.dynamic.core.1.2.2.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.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.1.0": { + "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "type": "package", + "path": "system.net.http/4.1.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/netcore50/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.1.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11": { + "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "type": "package", + "path": "system.net.primitives/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.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/netstandard1.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.0.11.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.1.0": { + "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "type": "package", + "path": "system.net.sockets/4.1.0", + "files": [ + ".nupkg.metadata", + "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.1.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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + "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.0.1": { + "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "type": "package", + "path": "system.runtime.numerics/4.0.1", + "files": [ + ".nupkg.metadata", + "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/System.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.0.1.nupkg.sha512", + "system.runtime.numerics.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", + "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.dll", + "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.2.0": { + "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.2.0", + "files": [ + ".nupkg.metadata", + "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/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.2.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", + "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.0.0": { + "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "type": "package", + "path": "system.security.cryptography.csp/4.0.0", + "files": [ + ".nupkg.metadata", + "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.0.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0": { + "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "type": "package", + "path": "system.security.cryptography.encoding/4.0.0", + "files": [ + ".nupkg.metadata", + "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/_._", + "ref/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.0.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.0.0": { + "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "type": "package", + "path": "system.security.cryptography.openssl/4.0.0", + "files": [ + ".nupkg.metadata", + "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.0.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0": { + "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "type": "package", + "path": "system.security.cryptography.primitives/4.0.0", + "files": [ + ".nupkg.metadata", + "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.0.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.Cryptography.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.1.0": { + "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.1.0", + "files": [ + ".nupkg.metadata", + "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.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.1.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/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", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Json/4.6.0": { + "sha512": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==", + "type": "package", + "path": "system.text.json/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.4.6.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.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", + "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.Parallel.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.0.1": { + "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "type": "package", + "path": "system.threading.timer/4.0.1", + "files": [ + ".nupkg.metadata", + "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.threading.timer.4.0.1.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "files": [ + ".nupkg.metadata", + "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.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "UAParser/3.1.46": { + "sha512": "A3B7dwr9RHXdXapJxE+5OFTXyB6HNh0mnqrvQ0GvJ0bseFOO9HLVXNjQlC8SoVySijN2Hwb+KLPX43gLgCMOig==", + "type": "package", + "path": "uaparser/3.1.46", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/UAParser.dll", + "lib/net20/UAParser.xml", + "lib/net35/UAParser.dll", + "lib/net35/UAParser.xml", + "lib/net40/UAParser.dll", + "lib/net40/UAParser.xml", + "lib/net45/UAParser.dll", + "lib/net45/UAParser.xml", + "lib/netcoreapp2.0/UAParser.dll", + "lib/netcoreapp2.0/UAParser.xml", + "lib/netstandard1.0/UAParser.dll", + "lib/netstandard1.0/UAParser.xml", + "lib/netstandard1.3/UAParser.dll", + "lib/netstandard1.3/UAParser.xml", + "lib/netstandard1.6/UAParser.dll", + "lib/netstandard1.6/UAParser.xml", + "uaparser.3.1.46.nupkg.sha512", + "uaparser.nuspec" + ] + }, + "Ewide.Core/1.0.0": { + "type": "project", + "path": "../framework/Api/Ewide.Core/Ewide.Core.csproj", + "msbuildProject": "../framework/Api/Ewide.Core/Ewide.Core.csproj" + }, + "Ewide.EntityFramework.Core/1.0.0": { + "type": "project", + "path": "../framework/Api/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj", + "msbuildProject": "../framework/Api/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj" + }, + "Furion/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion/Furion.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion/Furion.csproj" + }, + "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion.Extras.Authentication.JwtBearer/Furion.Extras.Authentication.JwtBearer.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.Authentication.JwtBearer/Furion.Extras.Authentication.JwtBearer.csproj" + }, + "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.Dapper/Furion.Extras.DatabaseAccessor.Dapper.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.Dapper/Furion.Extras.DatabaseAccessor.Dapper.csproj" + }, + "Furion.Extras.DatabaseAccessor.SqlSugar/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.SqlSugar/Furion.Extras.DatabaseAccessor.SqlSugar.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.SqlSugar/Furion.Extras.DatabaseAccessor.SqlSugar.csproj" + }, + "Furion.Extras.Logging.Serilog/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion.Extras.Logging.Serilog/Furion.Extras.Logging.Serilog.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.Logging.Serilog/Furion.Extras.Logging.Serilog.csproj" + }, + "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "type": "project", + "path": "../framework/Api/Furion/framework/Furion.Extras.ObjectMapper.Mapster/Furion.Extras.ObjectMapper.Mapster.csproj", + "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.ObjectMapper.Mapster/Furion.Extras.ObjectMapper.Mapster.csproj" + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Ewide.Core >= 1.0.0", + "Ewide.EntityFramework.Core >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\z1303\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj", + "projectName": "Ewide.WorkOrderSys", + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj", + "packagesPath": "C:\\Users\\z1303\\.nuget\\packages\\", + "outputPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\z1303\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": { + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.Core\\Ewide.Core.csproj" + }, + "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj": { + "projectPath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\framework\\Api\\Ewide.EntityFramework.Core\\Ewide.EntityFramework.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Ewide.WorkOrderSys/obj/project.nuget.cache b/Ewide.WorkOrderSys/obj/project.nuget.cache new file mode 100644 index 0000000..a5fa35f --- /dev/null +++ b/Ewide.WorkOrderSys/obj/project.nuget.cache @@ -0,0 +1,191 @@ +{ + "version": 2, + "dgSpecHash": "/N2RnE3Y3aMb0pFjzzPh5AW0zPefm+o6274C/3rPpXibp5zf2ASZuEyGTm13BdTarJVH2r5YoTlGNyAeVYZLpg==", + "success": true, + "projectFilePath": "D:\\WORK\\G公司内部管理软件\\WorkOrderSys_git\\Ewide.WorkOrderSys\\Ewide.WorkOrderSys.csproj", + "expectedPackageFiles": [ + "C:\\Users\\z1303\\.nuget\\packages\\aliyun-net-sdk-core\\1.5.10\\aliyun-net-sdk-core.1.5.10.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\ben.demystifier\\0.4.1\\ben.demystifier.0.4.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\csrediscore\\3.6.6\\csrediscore.3.6.6.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\dapper\\2.0.78\\dapper.2.0.78.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\dapper.contrib\\2.0.78\\dapper.contrib.2.0.78.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\furion.extras.dependencymodel.codeanalysis\\2.12.9\\furion.extras.dependencymodel.codeanalysis.2.12.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\furion.extras.web.httpcontext\\2.12.9\\furion.extras.web.httpcontext.2.12.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\google.protobuf\\3.14.0\\google.protobuf.3.14.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4\\1.1.11\\k4os.compression.lz4.1.1.11.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4.streams\\1.1.11\\k4os.compression.lz4.streams.1.1.11.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\kendo.dynamiclinqcore\\3.1.1\\kendo.dynamiclinqcore.3.1.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\mapster\\7.2.0\\mapster.7.2.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\mapster.dependencyinjection\\1.0.0\\mapster.dependencyinjection.1.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.7\\microsoft.aspnetcore.authentication.jwtbearer.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.7\\microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.common\\3.10.0\\microsoft.codeanalysis.common.3.10.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.10.0\\microsoft.codeanalysis.csharp.3.10.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite\\2.2.4\\microsoft.data.sqlite.2.2.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.5\\microsoft.data.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\3.1.6\\microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\5.0.5\\microsoft.entityframeworkcore.sqlite.5.0.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\5.0.5\\microsoft.entityframeworkcore.sqlite.core.5.0.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration\\2.0.0\\microsoft.extensions.configuration.2.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.0.0\\microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\2.0.0\\microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.registry\\4.4.0\\microsoft.win32.registry.4.4.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore\\4.2.22\\miniprofiler.aspnetcore.4.2.22.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.aspnetcore.mvc\\4.2.22\\miniprofiler.aspnetcore.mvc.4.2.22.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\miniprofiler.shared\\4.2.22\\miniprofiler.shared.4.2.22.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\mysql.data\\8.0.25\\mysql.data.8.0.25.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\mysqlconnector\\1.1.0\\mysqlconnector.1.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.0\\netstandard.library.1.6.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\npgsql\\4.1.3.1\\npgsql.4.1.3.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\oracle.manageddataaccess.core\\2.18.3\\oracle.manageddataaccess.core.2.18.3.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\5.0.0-alpha.2\\pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\portable.bouncycastle\\1.8.10\\portable.bouncycastle.1.8.10.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\quartz\\3.3.2\\quartz.3.3.2.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.1.0\\runtime.native.system.io.compression.4.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.0.1\\runtime.native.system.net.http.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography\\4.0.0\\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.aspnetcore\\4.1.0\\serilog.aspnetcore.4.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.hosting\\4.1.2\\serilog.extensions.hosting.4.1.2.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.extensions.logging\\3.0.1\\serilog.extensions.logging.3.0.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.settings.configuration\\3.1.0\\serilog.settings.configuration.3.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.console\\3.1.1\\serilog.sinks.console.3.1.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\serilog.sinks.file\\4.1.0\\serilog.sinks.file.4.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.bundle_green\\1.1.12\\sqlitepclraw.bundle_green.1.1.12.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.linux\\1.1.12\\sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.osx\\1.1.12\\sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3.v110_xp\\1.1.12\\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3.netstandard11\\1.1.12\\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore\\5.0.3.2\\sqlsugarcore.5.0.3.2.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.dm\\1.0.0\\sqlsugarcore.dm.1.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore\\6.1.4\\swashbuckle.aspnetcore.6.1.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.1.4\\swashbuckle.aspnetcore.swagger.6.1.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.1.4\\swashbuckle.aspnetcore.swaggergen.6.1.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.1.4\\swashbuckle.aspnetcore.swaggerui.6.1.4.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.data.common\\4.3.0\\system.data.common.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.data.sqlclient\\4.4.0\\system.data.sqlclient.4.4.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.0.1\\system.globalization.calendars.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.1.0\\system.io.compression.4.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.0.1\\system.io.compression.zipfile.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.linq.dynamic.core\\1.2.2\\system.linq.dynamic.core.1.2.2.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.1.0\\system.net.http.4.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.0.11\\system.net.primitives.4.0.11.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.1.0\\system.net.sockets.4.1.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.0.1\\system.runtime.numerics.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.2.0\\system.security.cryptography.algorithms.4.2.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.0.0\\system.security.cryptography.csp.4.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.0.0\\system.security.cryptography.encoding.4.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.0.0\\system.security.cryptography.openssl.4.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.0.0\\system.security.cryptography.primitives.4.0.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.1.0\\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\uaparser\\3.1.46\\uaparser.3.1.46.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Ewide.sln.lnk b/Ewide.sln.lnk new file mode 100644 index 0000000..0dbe220 Binary files /dev/null and b/Ewide.sln.lnk differ diff --git a/framework b/framework index 231e998..a889089 160000 --- a/framework +++ b/framework @@ -1 +1 @@ -Subproject commit 231e9982771cc711fd33a40484095358bb3fe216 +Subproject commit a8890891dc9a95b6f34b1bc4d874eb5f928b6f08