diff --git a/.gitignore b/.gitignore
index a9c5622..bb6d467 100644
--- a/.gitignore
+++ b/.gitignore
@@ -163,3 +163,5 @@ packages/
AntData/AntData.ORM/AntData.ORM.nuspec.core
AntData/AntData.ORM/Gruntfile.core
+
+AntData/.vs/
\ No newline at end of file
diff --git a/AntData/.vs/config/applicationhost.config b/AntData/.vs/config/applicationhost.config
index 4b9bf47..40ac11f 100644
--- a/AntData/.vs/config/applicationhost.config
+++ b/AntData/.vs/config/applicationhost.config
@@ -160,6 +160,14 @@
+
+
+
+
+
+
+
+
diff --git a/AntData/.vs/restore.dg b/AntData/.vs/restore.dg
index f014aa8..2ae1ebd 100644
--- a/AntData/.vs/restore.dg
+++ b/AntData/.vs/restore.dg
@@ -1 +1,5 @@
-#:H:\Csharp\yuzd\AntData\AntData\AntData.core.Test\AntData.core.Test.xproj
+#:H:\Csharp\yuzd\AntData\AntData\AntData.ORM\AntData.core.xproj
+#:H:\Csharp\yuzd\AntData\AntData\ConsoleApp1\ConsoleApp1.xproj
+H:\Csharp\yuzd\AntData\AntData\ConsoleApp1\ConsoleApp1.xproj|H:\Csharp\yuzd\AntData\AntData\AntData.ORM\AntData.core.xproj
+#:H:\Csharp\yuzd\AntData\AntData\AntData.DbModels.linux\AntData.DbModels.linux.xproj
+H:\Csharp\yuzd\AntData\AntData\AntData.DbModels.linux\AntData.DbModels.linux.xproj|H:\Csharp\yuzd\AntData\AntData\AntData.ORM\AntData.core.xproj
diff --git a/AntData/AntData.DbModels.linux/AntData.DbModels.linux.csproj b/AntData/AntData.DbModels.linux/AntData.DbModels.linux.csproj
new file mode 100644
index 0000000..3f6d1a4
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/AntData.DbModels.linux.csproj
@@ -0,0 +1,67 @@
+
+
+
+ netstandard2.0
+ AntData.DbModels.linux
+ AntData.DbModels.linux
+ false
+ false
+ false
+
+
+
+ $(DefineConstants);NETSTANDARD
+
+
+
+
+
+
+
+
+ TextTemplatingFileGenerator
+ EntityRobotForMysql.generated.cs
+
+
+ TextTemplatingFileGenerator
+ EntityRobotForOracle.generated.cs
+
+
+ EntityRobotForPostgreSQL.generated.cs
+ TextTemplatingFileGenerator
+
+
+ TextTemplatingFileGenerator
+ EntityRobotForSqlServer.cs
+
+
+
+
+
+
+
+
+
+ True
+ True
+ EntityRobotForMysql.tt
+
+
+ True
+ True
+ EntityRobotForOracle.tt
+
+
+ EntityRobotForPostgreSQL.tt
+ True
+ True
+
+
+ True
+ True
+ EntityRobotForSqlServer.tt
+
+
+
+
+
diff --git a/AntData/AntData.DbModels.linux/AntData.DbModels.linux.xproj b/AntData/AntData.DbModels.linux/AntData.DbModels.linux.xproj
deleted file mode 100644
index 9719c3f..0000000
--- a/AntData/AntData.DbModels.linux/AntData.DbModels.linux.xproj
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
-
- 64405f86-cb6a-4d69-8742-69dd3ca4ca40
- AntData.DbModels.linux
- .\obj
- .\bin\
- v4.5
-
-
-
- 2.0
-
-
-
diff --git a/AntData/AntData.DbModels.linux/EntityRobotForMysql.generated.cs b/AntData/AntData.DbModels.linux/EntityRobotForMysql.generated.cs
deleted file mode 100644
index 45be0ca..0000000
--- a/AntData/AntData.DbModels.linux/EntityRobotForMysql.generated.cs
+++ /dev/null
@@ -1,184 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-
-using AntData.ORM;
-using AntData.ORM.Linq;
-using AntData.ORM.Mapping;
-
-namespace DbModels.Mysql
-{
- ///
- /// Database : testorm
- /// Data Source : localhost
- /// Server Version : 5.6.26-log
- ///
- public partial class Entitys : IEntity
- {
- ///
- /// Ա
- ///
- public IQueryable People { get { return this.Get(); } }
- ///
- /// ѧУ
- ///
- public IQueryable Schools { get { return this.Get(); } }
-
- private readonly IDataContext con;
-
- public IQueryable Get()
- where T : class
- {
- return this.con.GetTable();
- }
-
- public Entitys(IDataContext con)
- {
- this.con = con;
- }
- }
-
- ///
- /// Ա
- ///
- [Table(Comment="Ա", Name="person")]
- public partial class Person : BaseEntity
- {
- #region Column
-
- ///
- ///
- ///
- [Column("Id", DataType=DataType.Int64, Comment=""), PrimaryKey, Identity]
- public long Id { get; set; } // bigint(20)
-
- ///
- /// ʱ
- ///
- [Column("DataChange_LastTime", DataType=DataType.DateTime, Comment="ʱ"), NotNull]
- public DateTime DataChangeLastTime // datetime
- {
- get { return _DataChangeLastTime; }
- set { _DataChangeLastTime = value; }
- }
-
- ///
- ///
- ///
- [Column("Name", DataType=DataType.VarChar, Length=50, Comment=""), NotNull]
- public string Name { get; set; } // varchar(50)
-
- ///
- ///
- ///
- [Column("Age", DataType=DataType.Int32, Comment=""), Nullable]
- public int? Age { get; set; } // int(11)
-
- ///
- /// ѧУ
- ///
- [Column("SchoolId", DataType=DataType.Int64, Comment="ѧУ"), Nullable]
- public long? SchoolId { get; set; } // bigint(20)
-
- #endregion
-
- #region Field
-
- private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
-
- #endregion
-
- #region Associations
-
- ///
- /// persons_school
- ///
- [Association(ThisKey="SchoolId", OtherKey="Id", CanBeNull=true, KeyName="persons_school", BackReferenceName="persons")]
- public School Personsschool { get; set; }
-
- #endregion
- }
-
- ///
- /// ѧУ
- ///
- [Table(Comment="ѧУ", Name="school")]
- public partial class School : BaseEntity
- {
- #region Column
-
- ///
- ///
- ///
- [Column("Id", DataType=DataType.Int64, Comment=""), PrimaryKey, Identity]
- public long Id { get; set; } // bigint(20)
-
- ///
- /// ѧУ
- ///
- [Column("Name", DataType=DataType.VarChar, Length=50, Comment="ѧУ"), Nullable]
- public string Name { get; set; } // varchar(50)
-
- ///
- /// ѧУַ
- ///
- [Column("Address", DataType=DataType.VarChar, Length=100, Comment="ѧУַ"), Nullable]
- public string Address { get; set; } // varchar(100)
-
- ///
- /// ʱ
- ///
- [Column("DataChange_LastTime", DataType=DataType.DateTime, Comment="ʱ"), NotNull]
- public DateTime DataChangeLastTime // datetime
- {
- get { return _DataChangeLastTime; }
- set { _DataChangeLastTime = value; }
- }
-
- #endregion
-
- #region Field
-
- private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
-
- #endregion
-
- #region Associations
-
- ///
- /// persons_school_BackReference
- ///
- [Association(ThisKey="Id", OtherKey="SchoolId", CanBeNull=true, IsBackReference=true)]
- public IEnumerable Persons { get; set; }
-
- #endregion
- }
-
- public static partial class TableExtensions
- {
- public static Person FindByBk(this IQueryable table, long Id)
- {
- return table.FirstOrDefault(t =>
- t.Id == Id);
- }
-
- public static async Task FindByBkAsync(this IQueryable table, long Id)
- {
- return await table.FirstOrDefaultAsync(t =>
- t.Id == Id);
- }
-
- public static School FindByBk(this IQueryable table, long Id)
- {
- return table.FirstOrDefault(t =>
- t.Id == Id);
- }
-
- public static async Task FindByBkAsync(this IQueryable table, long Id)
- {
- return await table.FirstOrDefaultAsync(t =>
- t.Id == Id);
- }
- }
-}
diff --git a/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.generated.cs b/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.generated.cs
new file mode 100644
index 0000000..e9fe348
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.generated.cs
@@ -0,0 +1,448 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+using AntData.ORM;
+using AntData.ORM.Data;
+using AntData.ORM.Linq;
+using AntData.ORM.Mapping;
+
+namespace DbModels.Mysql
+{
+ ///
+ /// Database : testorm
+ /// Data Source : localhost
+ /// Server Version : 5.6.26-log
+ ///
+ public partial class TestormEntitys : IEntity
+ {
+ public IQueryable ChildDistrict { get { return this.Get(); } }
+ public IQueryable Districts { get { return this.Get(); } }
+ ///
+ /// import
+ ///
+ public IQueryable Imports { get { return this.Get(); } }
+ ///
+ /// ORM
+ ///
+ public IQueryable Orms { get { return this.Get(); } }
+ ///
+ /// Ա
+ ///
+ public IAntTable People { get { return this.Get(); } }
+ ///
+ /// ѧУ
+ ///
+ public IAntTable Schools { get { return this.Get(); } }
+ public IQueryable SchoolName { get { return this.Get(); } }
+ public IQueryable school_name { get { return this.Get(); } }
+
+ private readonly DataConnection con;
+
+ public DataConnection DbContext
+ {
+ get { return this.con; }
+ }
+
+ public IQueryable Get()
+ where T : class
+ {
+ return this.con.GetTable();
+ }
+
+ public IAntTable Get()
+ where T2:new()
+ {
+ return this.con.GetTable();
+ }
+ public TestormEntitys(DataConnection con)
+ {
+ this.con = con;
+ }
+ }
+
+ [Table("child_district")]
+ public partial class ChildDistrict : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Tid", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Tid { get; set; } // bigint(20)
+
+ ///
+ ///
+ ///
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=30, Comment=""), Nullable]
+ public string Name { get; set; } // varchar(30)
+
+ ///
+ /// Code
+ ///
+ [Column("Code", DataType=AntData.ORM.DataType.VarChar, Length=30, Comment="Code"), Nullable]
+ public string Code { get; set; } // varchar(30)
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime, Comment="ʱ"), Nullable]
+ public DateTime? DataChangeLastTime { get; set; } // datetime
+
+ #endregion
+ }
+
+ [Table("district")]
+ public partial class District : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Tid", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Tid { get; set; } // bigint(20)
+
+ ///
+ ///
+ ///
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=30, Comment=""), Nullable]
+ public string Name { get; set; } // varchar(30)
+
+ ///
+ /// Code
+ ///
+ [Column("Code", DataType=AntData.ORM.DataType.VarChar, Length=30, Comment="Code"), Nullable]
+ public string Code { get; set; } // varchar(30)
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime, Comment="ʱ"), Nullable]
+ public DateTime? DataChangeLastTime { get; set; } // datetime
+
+ #endregion
+ }
+
+ ///
+ /// import
+ ///
+ [Table(Comment="import", Name="import")]
+ public partial class Import : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint(20)
+
+ ///
+ /// ǩ
+ ///
+ [Column("Label", DataType=AntData.ORM.DataType.VarChar, Length=20, Comment="ǩ"), Nullable]
+ public string Label { get; set; } // varchar(20)
+
+ #endregion
+ }
+
+ ///
+ /// ORM
+ ///
+ [Table(Comment="ORM", Name="orm")]
+ public partial class Orm : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint(20)
+
+ ///
+ /// ǩ
+ ///
+ [Column("Label", DataType=AntData.ORM.DataType.VarChar, Length=20, Comment="ǩ"), Nullable]
+ public string Label { get; set; } // varchar(20)
+
+ #endregion
+ }
+
+ ///
+ /// Ա
+ ///
+ [Table(Comment="Ա", Name="person")]
+ public partial class Person : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint(20)
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime, Comment="ʱ"), NotNull]
+ public DateTime DataChangeLastTime // datetime
+ {
+ get { return _DataChangeLastTime; }
+ set { _DataChangeLastTime = value; }
+ }
+
+ ///
+ ///
+ ///
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=50, Comment=""), NotNull]
+ public string Name { get; set; } // varchar(50)
+
+ ///
+ ///
+ ///
+ [Column("Age", DataType=AntData.ORM.DataType.Int32, Comment=""), Nullable]
+ public int? Age { get; set; } // int(11)
+
+ ///
+ /// ѧУ
+ ///
+ [Column("SchoolId", DataType=AntData.ORM.DataType.Int64, Comment="ѧУ"), Nullable]
+ public long? SchoolId { get; set; } // bigint(20)
+
+ #endregion
+
+ #region Field
+
+ private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
+
+ #endregion
+
+ #region Associations
+
+ ///
+ /// person_SchoolId_school_Id
+ ///
+ [Association(ThisKey="SchoolId", OtherKey="Id", CanBeNull=true, IsBackReference=true)]
+ public School School { get; set; }
+
+ #endregion
+
+ public class PersonColumn
+ {
+ public string Id = "Id";
+ public string Name = "Name";
+ public string Age = "Age";
+ public string SchoolId = "SchoolId";
+ public string DataChangeLastTime = "DataChange_LastTime";
+
+ }
+ }
+
+ ///
+ /// ѧУ
+ ///
+ [Table(Comment="ѧУ", Name="school")]
+ public partial class School : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint(20)
+
+ ///
+ /// ѧУ
+ ///
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=50, Comment="ѧУ"), Nullable]
+ public string Name { get; set; } // varchar(50)
+
+ ///
+ /// ѧУַ
+ ///
+ [Column("Address", DataType=AntData.ORM.DataType.VarChar, Length=100, Comment="ѧУַ"), Nullable]
+ public string Address { get; set; } // varchar(100)
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime, Comment="ʱ"), NotNull]
+ public DateTime DataChangeLastTime // datetime
+ {
+ get { return _DataChangeLastTime; }
+ set { _DataChangeLastTime = value; }
+ }
+
+ #endregion
+
+ #region Field
+
+ private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
+
+ #endregion
+
+ #region Associations
+
+ ///
+ /// school_Id_person_SchoolId
+ ///
+ [Association(ThisKey="Id", OtherKey="SchoolId", CanBeNull=true, IsBackReference=true)]
+ public IEnumerable PersonList { get; set; }
+
+ #endregion
+
+ public class SchoolColumn
+ {
+ public string Id = "Id";
+ public string Name = "Name";
+ public string Address = "Address";
+ public string DataChangeLastTime = "DataChange_LastTime";
+
+ }
+ }
+
+ [Table("school__name")]
+ public partial class SchoolName : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint(20)
+
+ #endregion
+ }
+
+ [Table("school_name")]
+ public partial class school_name : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment=""), PrimaryKey, NotNull]
+ public long Id { get; set; } // bigint(20)
+
+ ///
+ ///
+ ///
+ [Column("Name", DataType=AntData.ORM.DataType.Boolean, Comment=""), NotNull]
+ public bool Name { get; set; } // bit(1)
+
+ ///
+ ///
+ ///
+ [Column("OrderID", DataType=AntData.ORM.DataType.Int64, Comment=""), NotNull]
+ public long OrderID { get; set; } // bigint(20)
+
+ #endregion
+ }
+
+ public static partial class TableExtensions
+ {
+ public static ChildDistrict FindByBk(this IQueryable table, long Tid)
+ {
+ return table.FirstOrDefault(t =>
+ t.Tid == Tid);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Tid)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Tid == Tid);
+ }
+
+ public static District FindByBk(this IQueryable table, long Tid)
+ {
+ return table.FirstOrDefault(t =>
+ t.Tid == Tid);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Tid)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Tid == Tid);
+ }
+
+ public static Import FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static Orm FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static Person FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static School FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static SchoolName FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static school_name FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+ }
+}
diff --git a/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.tt b/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.tt
new file mode 100644
index 0000000..ad2f477
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Mysql/EntityRobotForMysql.tt
@@ -0,0 +1,24 @@
+<#@ template language="C#" debug="True" hostSpecific="True" #>
+<#@ output extension=".generated.cs" #>
+<#@ include file="..\Templates\LinqToDB.MySql.Tools.ttinclude" #>
+<#@ include file="..\Templates\PluralizationService.ttinclude" #>
+<#
+
+ NamespaceName = "DbModels.Mysql";
+ GenerateConstructors = true;
+ GenerateFindExtensions = true;
+ GenerateDataTypes = true;
+ IsCompactColumns = false;
+ BaseDataContextClass = "IEntity";
+ BaseEntityClass = "BaseEntity";
+ EntitySuffix = "";
+ LoadMySqlMetadata("localhost","28747", "testorm", "root", "123456");
+ //LoadMySqlMetadata("localhost","3306", "DBName", "DbUserName", "DbPassword");
+
+ //SetTableSharding("orders_{0}","orders_0","orders_1");
+ //schoolӦpersonһԶϵ
+ SetFk("school","Id","person","SchoolId",AssociationType.OneToMany);
+ //personӦschoolһһϵ
+ SetFk("person","SchoolId","school","Id",AssociationType.OneToOne);
+ GenerateModel();
+#>
diff --git a/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.generated.cs b/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.generated.cs
new file mode 100644
index 0000000..3f2ff2d
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.generated.cs
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.tt b/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.tt
new file mode 100644
index 0000000..725892e
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Oracal/EntityRobotForOracle.tt
@@ -0,0 +1,47 @@
+<#@ template language="C#" debug="True" hostSpecific="True" #>
+<#@ output extension=".generated.cs" #>
+<#@ include file="..\Templates\LinqToDB.Oracle.Tools.ttinclude" #>
+<#@ include file="..\Templates\PluralizationService.ttinclude" #>
+<#
+
+ NamespaceName = "DbModels.Oracle";
+ GenerateConstructors = true;
+ GenerateFindExtensions = true;
+ GenerateDataTypes = true;
+ IsCompactColumns = false;
+ IsOracle = true;
+ BaseDataContextClass = "IEntity";
+ BaseEntityClass = "BaseEntity";
+ LoadOracleMetadata("192.168.1.6", "1521", "orcl", "test", "test");
+ //LoadOracleMetadata("DBHostIP", "DBHostPort", "DBServiceName", "UserName", "PASSWORD");
+
+ //set Identity field of table (ps:oracleͨtrigger seqʵֵģ͵ֶҪֶһ)
+ SetIdentity("PERSON","ID","PERSONSEQ","GET_PERSONSEQ_IDENTITY_ID");
+ SetIdentity("SCHOOL","ID","SCHOOLSEQ","GET_SCHOOLSEQ_IDENTITY_ID");
+ //SetIdentity˵һΪơڶΪֶεֶƣǴSEQĸǴĻȡSEQĽFunction(·)
+ //create entities
+ GenerateModel();
+#>
+
+//sqlǴSEQUENCE
+//CREATE SEQUENCE PERSONSEQ;
+//CREATE SEQUENCE SCHOOLSEQ;
+
+//sqlǴһȡָSeqĽfunctionPERSONSEQҴseq
+//CREATE
+//OR REPLACE FUNCTION GET_PERSONSEQ_IDENTITY_ID RETURN NUMBER AS num NUMBER ;
+//BEGIN
+// SELECT
+// PERSONSEQ.nextval INTO num
+// FROM
+// dual ; RETURN num ;
+// END GET_PERSONSEQ_IDENTITY_ID ;
+
+//CREATE
+//OR REPLACE FUNCTION GET_SCHOOLSEQ_IDENTITY_ID RETURN NUMBER AS num NUMBER ;
+//BEGIN
+// SELECT
+// PERSONSEQ.nextval INTO num
+// FROM
+// dual ; RETURN num ;
+// END GET_SCHOOLSEQ_IDENTITY_ID ;
diff --git a/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.generated.cs b/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.generated.cs
new file mode 100644
index 0000000..5b046ff
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.generated.cs
@@ -0,0 +1,196 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+using AntData.ORM;
+using AntData.ORM.Data;
+using AntData.ORM.Linq;
+using AntData.ORM.Mapping;
+
+namespace DbModels.PostgreSQL
+{
+ ///
+ /// Database : pgTest
+ /// Data Source : tcp://127.0.0.1:5432
+ /// Server Version : 9.4.4
+ ///
+ public partial class PgTestEntitys : IEntity
+ {
+ ///
+ /// û
+ ///
+ public IQueryable People { get { return this.Get(); } }
+ ///
+ /// ѧУ
+ ///
+ public IQueryable Schools { get { return this.Get(); } }
+
+ private readonly DataConnection con;
+
+ public DataConnection DbContext
+ {
+ get { return this.con; }
+ }
+
+ public IQueryable Get()
+ where T : class
+ {
+ return this.con.GetTable();
+ }
+
+ public PgTestEntitys(DataConnection con)
+ {
+ this.con = con;
+ }
+ }
+
+ ///
+ /// û
+ ///
+ [Table(Schema="public", Comment="û", Name="person")]
+ public partial class Person : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("id", DataType=AntData.ORM.DataType.Int64, Precision=64, Scale=0, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint
+
+ ///
+ ///
+ ///
+ [Column("name", DataType=AntData.ORM.DataType.NVarChar, Length=20, Comment=""), NotNull]
+ public string Name { get; set; } // character varying(20)
+
+ ///
+ ///
+ ///
+ [Column("age", DataType=AntData.ORM.DataType.Int32, Precision=32, Scale=0, Comment=""), Nullable]
+ public int? Age { get; set; } // integer
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime2, Precision=6, Comment="ʱ"), NotNull]
+ public DateTime DataChangeLastTime // timestamp (6) without time zone
+ {
+ get { return _DataChangeLastTime; }
+ set { _DataChangeLastTime = value; }
+ }
+
+ ///
+ /// ѧУid
+ ///
+ [Column("SchoolId", DataType=AntData.ORM.DataType.Int64, Precision=64, Scale=0, Comment="ѧУid"), Nullable]
+ public long? SchoolId { get; set; } // bigint
+
+ #endregion
+
+ #region Field
+
+ private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
+
+ #endregion
+
+ #region Associations
+
+ ///
+ /// pgTest.public.person_fk_person_school_id
+ ///
+ [Association(ThisKey="SchoolId", OtherKey="Id", CanBeNull=true, KeyName="pgTest.public.person_fk_person_school_id", BackReferenceName="pgTest.public.personfkpersonid")]
+ public School School { get; set; }
+
+ #endregion
+ }
+
+ ///
+ /// ѧУ
+ ///
+ [Table(Schema="public", Comment="ѧУ", Name="school")]
+ public partial class School : BaseEntity
+ {
+ #region Column
+
+ ///
+ ///
+ ///
+ [Column("id", DataType=AntData.ORM.DataType.Int64, Precision=64, Scale=0, Comment=""), PrimaryKey, Identity]
+ public long Id { get; set; } // bigint
+
+ ///
+ ///
+ ///
+ [Column("name", DataType=AntData.ORM.DataType.NVarChar, Length=50, Comment=""), Nullable]
+ public string Name { get; set; } // character varying(50)
+
+ ///
+ /// ַ
+ ///
+ [Column("address", DataType=AntData.ORM.DataType.NVarChar, Length=100, Comment="ַ"), Nullable]
+ public string Address { get; set; } // character varying(100)
+
+ ///
+ /// ʱ
+ ///
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime2, Precision=6, Comment="ʱ"), NotNull]
+ public DateTime DataChangeLastTime // timestamp (6) without time zone
+ {
+ get { return _DataChangeLastTime; }
+ set { _DataChangeLastTime = value; }
+ }
+
+ ///
+ /// json
+ ///
+ [Column("attr", DataType=AntData.ORM.DataType.Json, Comment="json"), Nullable]
+ public object Attr { get; set; } // json
+
+ #endregion
+
+ #region Field
+
+ private DateTime _DataChangeLastTime = System.Data.SqlTypes.SqlDateTime.MinValue.Value;
+
+ #endregion
+
+ #region Associations
+
+ ///
+ /// pgTest.public.person_fk_person_school_id_BackReference
+ ///
+ [Association(ThisKey="Id", OtherKey="SchoolId", CanBeNull=true, IsBackReference=true)]
+ public IEnumerable PersonList { get; set; }
+
+ #endregion
+ }
+
+ public static partial class TableExtensions
+ {
+ public static Person FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+
+ public static School FindByBk(this IQueryable table, long Id)
+ {
+ return table.FirstOrDefault(t =>
+ t.Id == Id);
+ }
+
+ public static async Task FindByBkAsync(this IQueryable table, long Id)
+ {
+ return await table.FirstOrDefaultAsync(t =>
+ t.Id == Id);
+ }
+ }
+}
diff --git a/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.tt b/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.tt
new file mode 100644
index 0000000..7202cb4
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/PostgreSQL/EntityRobotForPostgreSQL.tt
@@ -0,0 +1,18 @@
+<#@ template language="C#" debug="True" hostSpecific="True" #>
+<#@ output extension=".generated.cs" #>
+<#@ include file="..\Templates\LinqToDB.PostgreSQL.Tools.ttinclude" #>
+<#@ include file="..\Templates\PluralizationService.ttinclude" #>
+<#
+
+ NamespaceName = "DbModels.PostgreSQL";
+ GenerateConstructors = true;
+ GenerateFindExtensions = true;
+ GenerateDataTypes = true;
+ IsCompactColumns = false;
+ BaseDataContextClass = "IEntity";
+ BaseEntityClass = "BaseEntity";
+ LoadPostgreSQLMetadata("127.0.0.1", "5432", "pgTest", "postgres", "postgres");
+ //LoadPostgreSQLMetadata("DBHostIP", "DBHostPort", "DBServiceName", "UserName", "PASSWORD");
+
+ GenerateModel();
+#>
diff --git a/AntData/AntData.DbModels.linux/Properties/AssemblyInfo.cs b/AntData/AntData.DbModels.linux/Properties/AssemblyInfo.cs
deleted file mode 100644
index 6e477de..0000000
--- a/AntData/AntData.DbModels.linux/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("AntData.DbModels.linux")]
-[assembly: AssemblyTrademark("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("64405f86-cb6a-4d69-8742-69dd3ca4ca40")]
diff --git a/AntData/AntData.DbModels.linux/EntityRobotForSqlServer.generated.cs b/AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.cs
similarity index 64%
rename from AntData/AntData.DbModels.linux/EntityRobotForSqlServer.generated.cs
rename to AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.cs
index 6482feb..2510a7c 100644
--- a/AntData/AntData.DbModels.linux/EntityRobotForSqlServer.generated.cs
+++ b/AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.cs
@@ -6,6 +6,7 @@
using System.Threading.Tasks;
using AntData.ORM;
+using AntData.ORM.Data;
using AntData.ORM.Linq;
using AntData.ORM.Mapping;
@@ -16,19 +17,18 @@ namespace DbModels.SqlServer
/// Data Source : .\SERVERQ
/// Server Version : 11.00.3156
///
- public partial class Entitys : IEntity
+ public partial class TestEntitys : IEntity
{
- ///
- /// 人员
- ///
public IQueryable People { get { return this.Get(); } }
- ///
- /// 学校
- ///
public IQueryable Schools { get { return this.Get(); } }
public IQueryable Tests { get { return this.Get(); } }
- private readonly IDataContext con;
+ private readonly DataConnection con;
+
+ public DataConnection DbContext
+ {
+ get { return this.con; }
+ }
public IQueryable Get()
where T : class
@@ -36,37 +36,34 @@ public IQueryable Get()
return this.con.GetTable();
}
- public Entitys(IDataContext con)
+ public TestEntitys(DataConnection con)
{
this.con = con;
}
}
- ///
- /// 人员
- ///
- [Table(Schema="dbo", Comment="人员", Name="person")]
+ [Table(Schema="dbo", Name="person")]
public partial class Person : BaseEntity
{
#region Column
- [Column("Id", DataType=DataType.Int64) , PrimaryKey, Identity]
+ [Column("Id", DataType=AntData.ORM.DataType.Int64) , PrimaryKey, Identity]
public long Id { get; set; } // bigint
- [Column("DataChange_LastTime", DataType=DataType.DateTime), NotNull]
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime), NotNull]
public DateTime DataChangeLastTime // datetime
{
get { return _DataChangeLastTime; }
set { _DataChangeLastTime = value; }
}
- [Column("Name", DataType=DataType.VarChar, Length=50), NotNull]
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=50), Nullable]
public string Name { get; set; } // varchar(50)
- [Column("Age", DataType=DataType.Int32) , Nullable]
+ [Column("Age", DataType=AntData.ORM.DataType.Int32) , Nullable]
public int? Age { get; set; } // int
- [Column("SchoolId", DataType=DataType.Int64) , Nullable]
+ [Column("SchoolId", DataType=AntData.ORM.DataType.Int64) , Nullable]
public long? SchoolId { get; set; } // bigint
#endregion
@@ -83,15 +80,12 @@ public DateTime DataChangeLastTime // datetime
/// FK_persons_school
///
[Association(ThisKey="SchoolId", OtherKey="Id", CanBeNull=true, KeyName="FK_persons_school", BackReferenceName="persons")]
- public School Personsschool { get; set; }
+ public School School { get; set; }
#endregion
}
- ///
- /// 学校
- ///
- [Table(Schema="dbo", Comment="学校", Name="school")]
+ [Table(Schema="dbo", Name="school")]
public partial class School : BaseEntity
{
#region Column
@@ -99,25 +93,25 @@ public partial class School : BaseEntity
///
/// 主键
///
- [Column("Id", DataType=DataType.Int64, Comment="主键"), PrimaryKey, Identity]
+ [Column("Id", DataType=AntData.ORM.DataType.Int64, Comment="主键"), PrimaryKey, Identity]
public long Id { get; set; } // bigint
///
/// 学校名称
///
- [Column("Name", DataType=DataType.VarChar, Length=50, Comment="学校名称"), Nullable]
+ [Column("Name", DataType=AntData.ORM.DataType.VarChar, Length=50, Comment="学校名称"), Nullable]
public string Name { get; set; } // varchar(50)
///
/// 学校地址
///
- [Column("Address", DataType=DataType.VarChar, Length=100, Comment="学校地址"), Nullable]
+ [Column("Address", DataType=AntData.ORM.DataType.VarChar, Length=100, Comment="学校地址"), Nullable]
public string Address { get; set; } // varchar(100)
///
/// 最后更新时间
///
- [Column("DataChange_LastTime", DataType=DataType.DateTime, Comment="最后更新时间"), NotNull]
+ [Column("DataChange_LastTime", DataType=AntData.ORM.DataType.DateTime, Comment="最后更新时间"), NotNull]
public DateTime DataChangeLastTime // datetime
{
get { return _DataChangeLastTime; }
@@ -138,7 +132,7 @@ public DateTime DataChangeLastTime // datetime
/// FK_persons_school_BackReference
///
[Association(ThisKey="Id", OtherKey="SchoolId", CanBeNull=true, IsBackReference=true)]
- public IEnumerable Persons { get; set; }
+ public IEnumerable PersonList { get; set; }
#endregion
}
@@ -148,40 +142,40 @@ public partial class Test : BaseEntity
{
#region Column
- [Column("Id", DataType=DataType.Int32) , PrimaryKey, Identity]
+ [Column("Id", DataType=AntData.ORM.DataType.Int32) , PrimaryKey, Identity]
public int Id { get; set; } // int
- [Column("F_Byte", DataType=DataType.Byte) , Nullable]
+ [Column("F_Byte", DataType=AntData.ORM.DataType.Byte) , Nullable]
public byte? FByte { get; set; } // tinyint
- [Column("F_Int16", DataType=DataType.Int16) , Nullable]
+ [Column("F_Int16", DataType=AntData.ORM.DataType.Int16) , Nullable]
public short? FInt16 { get; set; } // smallint
- [Column("F_Int32", DataType=DataType.Int32) , Nullable]
+ [Column("F_Int32", DataType=AntData.ORM.DataType.Int32) , Nullable]
public int? FInt32 { get; set; } // int
- [Column("F_Int64", DataType=DataType.Int64) , Nullable]
+ [Column("F_Int64", DataType=AntData.ORM.DataType.Int64) , Nullable]
public long? FInt64 { get; set; } // bigint
- [Column("F_Double", DataType=DataType.Double) , Nullable]
+ [Column("F_Double", DataType=AntData.ORM.DataType.Double) , Nullable]
public double? FDouble { get; set; } // float
- [Column("F_Float", DataType=DataType.Single) , Nullable]
+ [Column("F_Float", DataType=AntData.ORM.DataType.Single) , Nullable]
public float? FFloat { get; set; } // real
- [Column("F_Decimal", DataType=DataType.Decimal, Precision=18, Scale=0), Nullable]
+ [Column("F_Decimal", DataType=AntData.ORM.DataType.Decimal, Precision=18, Scale=0), Nullable]
public decimal? FDecimal { get; set; } // decimal(18, 0)
- [Column("F_Bool", DataType=DataType.Boolean) , Nullable]
+ [Column("F_Bool", DataType=AntData.ORM.DataType.Boolean) , Nullable]
public bool? FBool { get; set; } // bit
- [Column("F_DateTime", DataType=DataType.DateTime), Nullable]
+ [Column("F_DateTime", DataType=AntData.ORM.DataType.DateTime), Nullable]
public DateTime? FDateTime { get; set; } // datetime
- [Column("F_Guid", DataType=DataType.Guid) , Nullable]
+ [Column("F_Guid", DataType=AntData.ORM.DataType.Guid) , Nullable]
public Guid? FGuid { get; set; } // uniqueidentifier
- [Column("F_String", DataType=DataType.NVarChar, Length=100), Nullable]
+ [Column("F_String", DataType=AntData.ORM.DataType.NVarChar, Length=100), Nullable]
public string FString { get; set; } // nvarchar(100)
#endregion
diff --git a/AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.tt b/AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.tt
new file mode 100644
index 0000000..e504cd1
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/SqlServer/EntityRobotForSqlServer.tt
@@ -0,0 +1,18 @@
+<#@ template language="C#" debug="True" hostSpecific="True" #>
+<#@ output extension=".cs" #>
+<#@ include file="..\Templates\LinqToDB.SqlServer.Tools.ttinclude" #>
+<#@ include file="..\Templates\PluralizationService.ttinclude" #>
+<#
+ NamespaceName = "DbModels.SqlServer";
+ GenerateConstructors = true;
+ GenerateFindExtensions = true;
+ GenerateDataTypes = true;
+ IsCompactColumns = false;
+ GenerateProcedures = false;//是否生成存储过程 目前不支持存储过程
+ BaseDataContextClass = "IEntity";
+ BaseEntityClass = "BaseEntity";
+ LoadSqlServerMetadata(@"server=.\SERVERQ;database=Test;uid=sa;pwd=p@ssw0rd;");
+ //LoadSqlServerMetadata(@" please type your sqlserver connection string into this place");
+
+ GenerateModel();
+#>
\ No newline at end of file
diff --git a/AntData/AntData.DbModels.linux/Templates/DataModel.ttinclude b/AntData/AntData.DbModels.linux/Templates/DataModel.ttinclude
new file mode 100644
index 0000000..5f8d7e2
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/DataModel.ttinclude
@@ -0,0 +1,717 @@
+<#@ assembly name="System.Data" #>
+<#@ import namespace="System.Data" #>
+<#@ import namespace="LinqToDB.SchemaProvider" #>
+<#@ import namespace="LinqToDB.Data" #>
+<#@ include file="T4Model.ttinclude" #>
+<#
+ {
+ var beforeGenerateModel = BeforeGenerateModel;
+ BeforeGenerateModel = () =>
+ {
+ GenerateTypesFromMetadata();
+ beforeGenerateModel();
+ };
+ }
+#><#+
+
+string NamespaceName
+{
+ get { return Model.Namespace.Name; }
+ set { Model.Namespace.Name = value; }
+}
+
+string DatabaseName = null;
+string DataContextName = null;
+string BaseDataContextClass = null;
+string BaseEntityClass = null;
+string EntitySuffix = null;
+string OneToManyAssociationType = "IEnumerable<{0}>";
+
+bool GenerateDatabaseName = false;
+bool GenerateConstructors = true;
+string DefaultConfiguration = null;
+bool GenerateAssociations = true;
+bool GenerateBackReferences = true;
+bool ReplaceSimilarTables = true;
+bool IncludeDefaultSchema = true;
+
+Class DataContextObject;
+
+bool PluralizeClassNames = false;
+bool SingularizeClassNames = true;
+bool PluralizeDataContextPropertyNames = true;
+bool SingularizeDataContextPropertyNames = false;
+
+LinqToDB.SchemaProvider.GetSchemaOptions GetSchemaOptions =
+ new LinqToDB.SchemaProvider.GetSchemaOptions();
+
+LinqToDB.SqlProvider.ISqlBuilder SqlBuilder;
+
+Func LoadProviderSpecificTable = tableSchema => null;
+
+void LoadServerMetadata(DataConnection dataConnection)
+{
+ SqlBuilder = dataConnection.DataProvider.CreateSqlBuilder();
+
+ var sp = dataConnection.DataProvider.GetSchemaProvider();
+ var db = sp.GetSchema(dataConnection, GetSchemaOptions);
+
+ if (DatabaseName == null && GenerateDatabaseName)
+ DatabaseName = db.Database;
+
+ if (DataContextName == null)
+ DataContextObject.Name = DataContextName = ToPascalCase(db.Database) + "Entitys";
+
+ DataContextObject.Comment.Add("/ ");
+ DataContextObject.Comment.Add("/ Database : " + db.Database);
+ DataContextObject.Comment.Add("/ Data Source : " + db.DataSource);
+ DataContextObject.Comment.Add("/ Server Version : " + db.ServerVersion);
+ DataContextObject.Comment.Add("/ ");
+
+ var tables = db.Tables
+ .Where(t => !t.IsProviderSpecific)
+ .Select(t => new
+ {
+ t,
+ key = t.IsDefaultSchema ? t.TableName : t.SchemaName + "." + t.TableName,
+ table = new Table
+ {
+ TableSchema = t,
+ Schema = (t.IsDefaultSchema && !IncludeDefaultSchema) || string.IsNullOrEmpty(t.SchemaName)? null : t.SchemaName,
+ BaseClass = BaseEntityClass,
+ TableName = t.TableName,
+ TypeName =
+ PluralizeClassNames ? ToPlural (t.TypeName) :
+ SingularizeClassNames ? ToSingular(t.TypeName) : t.TypeName,
+ DataContextPropertyName =
+ PluralizeDataContextPropertyNames ? ToPlural (t.TypeName) :
+ SingularizeDataContextPropertyNames ? ToSingular(t.TypeName) : t.TypeName,
+ IsView = t.IsView,
+ IsProviderSpecific = false,
+ Description = t.Description,
+ Columns = t.Columns.ToDictionary(
+ c => c.ColumnName,
+ c => new Column
+ {
+ ColumnName = c.ColumnName,
+ ColumnType = c.ColumnType,
+ DataType = "DataType." + c.DataType,
+ Length = c.Length,
+ Precision = c.Precision,
+ Scale = c.Scale,
+ IsNullable = c.IsNullable,
+ IsIdentity = c.IsIdentity,
+ IsPrimaryKey = c.IsPrimaryKey,
+ PrimaryKeyOrder = c.PrimaryKeyOrder,
+ MemberName = CheckType(c.SystemType, c.MemberName),
+ Type = c.MemberType,
+ SkipOnInsert = c.SkipOnInsert,
+ SkipOnUpdate = c.SkipOnUpdate,
+ Description = c.Description,
+ })
+ }
+ })
+ .ToList();
+
+ tables.AddRange(db.Tables
+ .Where(t => t.IsProviderSpecific)
+ .Select(t => new
+ {
+ t,
+ key = t.IsDefaultSchema ? t.TableName : t.SchemaName + "." + t.TableName,
+ table = LoadProviderSpecificTable(t)
+ })
+ .Where(t => t.table != null));
+
+ foreach (var t in tables)
+ {
+ if(!Tables.ContainsKey(t.key))Tables.Add(t.key, t.table);
+ }
+
+ var keys =
+ (
+ from t in tables
+ from k in t.t.ForeignKeys
+ let otherTable = tables.Where(tbl => tbl.t == k.OtherTable).Select(tbl => tbl.table).Single()
+ select new
+ {
+ k,
+ k.KeyName,
+ t,
+ key = new ForeignKey
+ {
+ KeyName = k.KeyName,
+ OtherTable = otherTable,
+ OtherColumns = k.OtherColumns.Select(c => otherTable.Columns[c.ColumnName]).ToList(),
+ ThisColumns = k.ThisColumns. Select(c => t.table. Columns[c.ColumnName]).ToList(),
+ CanBeNull = k.CanBeNull,
+ MemberName = k.MemberName,
+ AssociationType = (AssociationType)(int)k.AssociationType,
+ }
+ }
+ ).ToList();
+
+ foreach (var key in keys)
+ {
+ key.t.table.ForeignKeys.Add(
+ key.k.OtherTable.IsDefaultSchema ? key.KeyName : key.k.OtherTable.SchemaName + "." + key.KeyName,
+ key.key);
+
+ if (key.k.BackReference != null)
+ key.key.BackReference = keys.First(k => k.k == key.k.BackReference).key;
+
+ key.key.MemberName = key.key.AssociationType == AssociationType.OneToMany ?
+ ToPlural(key.key.MemberName) : ToSingular(key.key.MemberName);
+ }
+
+ var procedures = db.Procedures
+ .Select(p => new
+ {
+ p,
+ key = p.IsDefaultSchema ? p.ProcedureName : p.SchemaName + "." + p.ProcedureName,
+ proc = new Procedure
+ {
+ Schema = (p.IsDefaultSchema && !IncludeDefaultSchema) || string.IsNullOrEmpty(p.SchemaName)? null : p.SchemaName,
+ ProcedureName = p.ProcedureName,
+ Name = p.MemberName,
+ IsFunction = p.IsFunction,
+ IsTableFunction = p.IsTableFunction,
+ IsDefaultSchema = p.IsDefaultSchema,
+ IsLoaded = p.IsLoaded,
+ ResultTable = p.ResultTable == null ? null :
+ new Table
+ {
+ TypeName =
+ PluralizeClassNames ? ToPlural (p.ResultTable.TypeName) :
+ SingularizeClassNames ? ToSingular(p.ResultTable.TypeName) : p.ResultTable.TypeName,
+ Columns = ToDictionary(
+ p.ResultTable.Columns,
+ c => c.ColumnName,
+ c => new Column
+ {
+ ColumnName = c.ColumnName,
+ ColumnType = c.ColumnType,
+ IsNullable = c.IsNullable,
+ IsIdentity = c.IsIdentity,
+ IsPrimaryKey = c.IsPrimaryKey,
+ PrimaryKeyOrder = c.PrimaryKeyOrder,
+ MemberName = CheckType(c.SystemType, c.MemberName),
+ Type = c.MemberType,
+ SkipOnInsert = c.SkipOnInsert,
+ SkipOnUpdate = c.SkipOnUpdate,
+ Description = c.Description,
+ },
+ (c,n) =>
+ {
+ c.IsDuplicateOrEmpty = true;
+ return "$" + (c.MemberName = "Column" + n);
+ })
+ },
+ ResultException = p.ResultException,
+ SimilarTables = p.SimilarTables == null ? new List() :
+ p.SimilarTables
+ .Select(t => tables.Single(tbl => tbl.t == t).table)
+ .ToList(),
+ ProcParameters = p.Parameters
+ .Select(pr => new Parameter
+ {
+ SchemaName = pr.SchemaName,
+ SchemaType = pr.SchemaType,
+ IsIn = pr.IsIn,
+ IsOut = pr.IsOut,
+ IsResult = pr.IsResult,
+ Size = pr.Size,
+ ParameterName = pr.ParameterName,
+ ParameterType = pr.ParameterType,
+ SystemType = pr.SystemType,
+ DataType = pr.DataType.ToString(),
+ })
+ .ToList(),
+ }
+ })
+ .ToList();
+
+ foreach (var p in procedures)
+ {
+ if (ReplaceSimilarTables)
+ if (p.proc.SimilarTables.Count() == 1 || p.proc.SimilarTables.Count(t => !t.IsView) == 1)
+ p.proc.ResultTable = p.proc.SimilarTables.Count() == 1 ?
+ p.proc.SimilarTables[0] :
+ p.proc.SimilarTables.First(t => !t.IsView);
+
+ Procedures[p.key] = p.proc;
+ }
+}
+
+Dictionary ToDictionary(IEnumerable source, Func keyGetter, Func objGetter, Func getKeyName)
+{
+ var dic = new Dictionary();
+ var current = 1;
+
+ foreach (var item in source)
+ {
+ var key = keyGetter(item);
+ var obj = objGetter(item);
+
+ if (string.IsNullOrEmpty(key) || dic.ContainsKey(key))
+ key = getKeyName(obj, current);
+
+ dic.Add(key, obj);
+
+ current++;
+ }
+
+ return dic;
+}
+
+string CheckType(Type type, string typeName)
+{
+ if (!Model.Usings.Contains(type.Namespace))
+ Model.Usings.Add(type.Namespace);
+ return typeName;
+}
+
+Action AfterLoadMetadata = () => {};
+
+void LoadMetadata(DataConnection dataConnection)
+{
+ if (DataContextObject == null)
+ {
+ DataContextObject = new Class(DataContextName) { BaseClass = BaseDataContextClass, };
+
+ Model.Types.Add(DataContextObject);
+ }
+
+ LoadServerMetadata(dataConnection);
+
+ if (Tables.Values.SelectMany(_ => _.ForeignKeys.Values).Any(_ => _.AssociationType == AssociationType.OneToMany))
+ Model.Usings.Add("System.Collections.Generic");
+
+ var keyWords = new HashSet
+ {
+ "abstract", "as", "base", "bool", "break", "byte", "case", "catch", "char", "checked",
+ "class", "const", "continue", "decimal", "default", "delegate", "do", "double", "else", "enum",
+ "event", "explicit", "extern", "false", "finally", "fixed", "float", "for", "foreach", "goto",
+ "if", "implicit", "in", "int", "interface", "internal", "is", "lock", "long", "new",
+ "null", "object", "operator", "out", "override", "params", "private", "protected", "public", "readonly",
+ "ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc", "static", "struct", "switch",
+ "this", "throw", "true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort",
+ "using", "virtual", "volatile", "void", "while"
+ };
+
+ foreach (var t in Tables.Values)
+ {
+ if (keyWords.Contains(t.TypeName))
+ t.TypeName = "@" + t.TypeName;
+
+ if (keyWords.Contains(t.DataContextPropertyName))
+ t.DataContextPropertyName = "@" + t.DataContextPropertyName;
+
+ t.TypeName = ConvertToCompilable(t.TypeName);
+ t.DataContextPropertyName = ConvertToCompilable(t.DataContextPropertyName);
+
+ foreach (var col in t.Columns.Values)
+ {
+ if (keyWords.Contains(col.MemberName))
+ col.MemberName = "@" + col.MemberName;
+
+ col.MemberName = ConvertToCompilable(col.MemberName);
+
+ if (col.MemberName == t.TypeName)
+ col.MemberName += "_Column";
+ }
+ }
+
+ AfterLoadMetadata();
+}
+
+string ConvertToCompilable(string name)
+{
+ var query =
+ from c in name
+ select char.IsLetterOrDigit(c) || c == '@' ? c : '_';
+
+ return new string(query.ToArray());
+}
+
+Table GetTable(string name)
+{
+ Table tbl;
+
+ if (Tables.TryGetValue(name, out tbl))
+ return tbl;
+
+ WriteLine("#error Table '" + name + "' not found.");
+ WriteLine("/*");
+ WriteLine("\tExisting tables:");
+ WriteLine("");
+
+ foreach (var key in Tables.Keys)
+ WriteLine("\t" + key);
+
+ WriteLine(" */");
+
+ throw new ArgumentException("Table '" + name + "' not found.");
+}
+
+Procedure GetProcedure(string name)
+{
+ Procedure proc;
+
+ if (Procedures.TryGetValue(name, out proc))
+ return proc;
+
+ WriteLine("#error Procedure '" + name + "' not found.");
+ WriteLine("");
+ WriteLine("/*");
+ WriteLine("\tExisting procedures:");
+ WriteLine("");
+
+ foreach (var key in Procedures.Keys)
+ WriteLine("\t" + key);
+
+ WriteLine(" */");
+
+ throw new ArgumentException("Procedure '" + name + "' not found.");
+}
+
+Column GetColumn(string tableName, string columnName)
+{
+ var tbl = GetTable(tableName);
+
+ Column col;
+
+ if (tbl.Columns.TryGetValue(columnName, out col))
+ return col;
+
+ WriteLine("#error Column '" + tableName + "'.'" + columnName + "' not found.");
+ WriteLine("");
+ WriteLine("/*");
+ WriteLine("\tExisting '" + tableName + "'columns:");
+ WriteLine("");
+
+ foreach (var key in tbl.Columns.Keys)
+ WriteLine("\t" + key);
+
+ WriteLine(" */");
+
+ throw new ArgumentException("Column '" + tableName + "'.'" + columnName + "' not found.");
+}
+
+ForeignKey GetFK(string tableName, string fkName)
+{
+ return GetForeignKey(tableName, fkName);
+}
+
+ForeignKey GetForeignKey(string tableName, string fkName)
+{
+ var tbl = GetTable(tableName);
+
+ ForeignKey col;
+
+ if (tbl.ForeignKeys.TryGetValue(fkName, out col))
+ return col;
+
+ WriteLine("#error FK '" + tableName + "'.'" + fkName + "' not found.");
+ WriteLine("");
+ WriteLine("/*");
+ WriteLine("\tExisting '" + tableName + "'FKs:");
+ WriteLine("");
+
+ foreach (var key in tbl.ForeignKeys.Keys)
+ WriteLine("\t" + key);
+
+ WriteLine(" */");
+
+ throw new ArgumentException("FK '" + tableName + "'.'" + fkName + "' not found.");
+}
+
+
+public TableContext SetTable(string tableName,
+ string TypeName = null,
+ string DataContextPropertyName = null)
+{
+ var ctx = new TableContext { Transformation = this, TableName = tableName };
+
+ if (TypeName != null || DataContextPropertyName != null)
+ {
+ var t = GetTable(tableName);
+
+ if (TypeName != null) t.TypeName = TypeName;
+ if (DataContextPropertyName != null) t.DataContextPropertyName = DataContextPropertyName;
+ }
+
+ return ctx;
+}
+
+public void SetIdentity(string tableName,string columnName,string sequenceName,string sequenceFunctionName,string config = "Oracle",bool flag = true)
+{
+ if(string.IsNullOrEmpty(sequenceName))
+ {
+ WriteLine("#error SetIdentity sequenceName is IsNullOrEmpty");
+ return;
+ }
+
+ if(string.IsNullOrEmpty(sequenceFunctionName))
+ {
+ WriteLine("#error SetIdentity sequenceFunctionName is IsNullOrEmpty");
+ return;
+ }
+
+ var c = GetColumn(tableName,columnName);
+
+ if ( c != null)
+ {
+ c.IsIdentity = flag;
+ if(flag)
+ {
+ //SequenceName Attribute
+ c.Attributes.Add(new Attribute("SequenceName","\"" + config + "\"","\"" + sequenceName + "\"","SequenceFunction = \"" + sequenceFunctionName + "\""));
+ }
+ return;
+ }
+ WriteLine("#error SetIdentity '" + tableName + "'.'" + columnName + "' not found.");
+}
+
+//ֱ
+public void SetTableSharding(string tableNameFormat,params string[] tables)
+{
+ if(string.IsNullOrEmpty(tableNameFormat))
+ {
+ WriteLine("#error SetTableSharding tableNameFormat is IsNullOrEmpty");
+ return;
+ }
+
+ if(tables.Length <= 1)
+ {
+ WriteLine("#error SetTableSharding tables must >1");
+ return;
+ }
+
+ //鿴ǷжӦtableƬ ȡһ ʣ ɵ
+ //try{
+ // var t = GetTable(tableNameFormat);
+ // if(t!=null)
+ // {
+ // WriteLine("#error SetTableSharding tableNameFormat invalid");
+ // return;
+ // }
+ // }catch{
+ //}
+
+
+ for (int i = 0; i < tables.Length; i++)
+ {
+ var tt=tables[i];
+ if(i == 0)
+ {
+ //һ
+ var firstT = GetTable(tt);
+ if(firstT == null)
+ {
+ WriteLine("#error SetTableSharding table not exists" + tt);
+ return;
+ }
+ firstT.TableName =tableNameFormat;
+ ShardingTables.Add(tableNameFormat,tableNameFormat.Split('_')[0]);
+ }
+ else
+ {
+
+ Tables.Remove(tt);
+ }
+ }
+
+
+}
+
+
+//ֶ
+public void SetFk(string tableAName,string columnAName,string tableBName,string columnBName,AssociationType type)
+{
+ if(string.IsNullOrEmpty(tableAName) || string.IsNullOrEmpty(columnAName)|| string.IsNullOrEmpty(tableBName)|| string.IsNullOrEmpty(columnBName))
+ {
+ WriteLine("#error SetFk tableName or columnName is IsNullOrEmpty");
+ return;
+ }
+
+ var tableA = GetTable(tableAName);
+ var columnA = GetColumn(tableAName,columnAName);
+ var tableB = GetTable(tableBName);
+ var columnB = GetColumn(tableBName,columnBName);
+ var fksA = tableA.ForeignKeys;
+ var foreignKey = new ForeignKey();
+ var KeyName = string.Concat(tableAName,"_",columnAName,"_",tableBName,"_",columnBName);
+ foreignKey.KeyName = KeyName;
+ foreignKey.OtherTable = tableB;
+ foreignKey.CanBeNull = true;
+ foreignKey.AssociationType = type;
+ foreignKey.ThisColumns = new List{columnA};
+ foreignKey.OtherColumns = new List{columnB};
+ fksA.Add(KeyName,foreignKey);
+}
+
+public class TableContext
+{
+ public GeneratedTextTransformation Transformation;
+ public string TableName;
+
+ public TableContext Column(string columnName,
+ string MemberName = null,
+ string Type = null,
+ bool? IsNullable = null)
+ {
+ var c = Transformation.GetColumn(TableName, columnName);
+
+ if (MemberName != null) c.MemberName = MemberName;
+ if (Type != null) c.Type = Type;
+ if (IsNullable != null) c.IsNullable = IsNullable.Value;
+
+ return this;
+ }
+
+ public TableContext FK(string fkName,
+ string MemberName = null,
+ AssociationType? AssociationType = null,
+ bool? CanBeNull = null)
+ {
+ var c = Transformation.GetFK(TableName, fkName);
+
+ if (MemberName != null) c.MemberName = MemberName;
+ if (AssociationType != null) c.AssociationType = AssociationType.Value;
+ if (CanBeNull != null) c.CanBeNull = CanBeNull.Value;
+
+ return this;
+ }
+}
+
+
+Dictionary Tables = new Dictionary ();
+Dictionary Procedures = new Dictionary();
+
+public partial class Table : Class
+{
+ public TableSchema TableSchema { get; set; }
+ public string Schema { get; set; }
+ public string TableName { get; set; }
+ public string DataContextPropertyName { get; set; }
+ public MemberBase DataContextProperty { get; set; }
+ public bool IsView { get; set; }
+ public bool IsProviderSpecific { get; set; }
+ public string Description { get; set; }
+ public string AliasPropertyName { get; set; }
+ public string AliasTypeName { get; set; }
+ public string TypePrefix { get; set; }
+
+ public string TypeName
+ {
+ get { return Name; }
+ set { Name = value; }
+ }
+
+ public Dictionary Columns;
+ public Dictionary ForeignKeys = new Dictionary();
+}
+
+public partial class Column : Property
+{
+ public string ColumnName; // Column name in database
+ public bool IsNullable;
+ public bool IsIdentity;
+ public string ColumnType; // Type of the column in database
+ public string DataType;
+ public long? Length;
+ public int? Precision;
+ public int? Scale;
+ public DbType DbType;
+ public string Description;
+ public bool IsPrimaryKey;
+ public int PrimaryKeyOrder;
+ public bool SkipOnUpdate;
+ public bool SkipOnInsert;
+ public bool IsDuplicateOrEmpty;
+ public string AliasName;
+
+ public string MemberName
+ {
+ get { return Name; }
+ set { Name = value; }
+ }
+}
+
+public enum AssociationType
+{
+ Auto,
+ OneToOne,
+ OneToMany,
+ ManyToOne,
+}
+
+public partial class ForeignKey : Property
+{
+ public string KeyName;
+ public Table OtherTable;
+ public List ThisColumns;
+ public List OtherColumns;
+ public bool CanBeNull;
+ public ForeignKey BackReference;
+
+ public string MemberName
+ {
+ get { return Name; }
+ set { Name = value; }
+ }
+
+ private AssociationType _associationType = AssociationType.Auto;
+ public AssociationType AssociationType
+ {
+ get { return _associationType; }
+ set
+ {
+ _associationType = value;
+
+ if (BackReference != null)
+ {
+ switch (value)
+ {
+ case AssociationType.Auto : BackReference.AssociationType = AssociationType.Auto; break;
+ case AssociationType.OneToOne : BackReference.AssociationType = AssociationType.OneToOne; break;
+ case AssociationType.OneToMany : BackReference.AssociationType = AssociationType.ManyToOne; break;
+ case AssociationType.ManyToOne : BackReference.AssociationType = AssociationType.OneToMany; break;
+ }
+ }
+ }
+ }
+}
+
+public partial class Procedure : Method
+{
+ public string Schema { get; set; }
+ public string ProcedureName { get; set; }
+ public bool IsFunction { get; set; }
+ public bool IsTableFunction { get; set; }
+ public bool IsDefaultSchema { get; set; }
+ public bool IsLoaded { get; set; }
+
+ public Table ResultTable { get; set; }
+ public Exception ResultException { get; set; }
+ public List SimilarTables { get; set; }
+ public List ProcParameters { get; set; }
+}
+
+public class Parameter
+{
+ public string SchemaName { get; set; }
+ public string SchemaType { get; set; }
+ public bool IsIn { get; set; }
+ public bool IsOut { get; set; }
+ public bool IsResult { get; set; }
+ public long? Size { get; set; }
+
+ public string ParameterName { get; set; }
+ public string ParameterType { get; set; }
+ public Type SystemType { get; set; }
+ public string DataType { get; set; }
+}
+
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.Tools.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.Tools.ttinclude
new file mode 100644
index 0000000..8ffb146
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.Tools.ttinclude
@@ -0,0 +1,3 @@
+<#@ assembly name="$(ProjectDir)\code.gen\tools\MySql.Data.dll" #>
+<#@ include file="LinqToDB.Tools.ttinclude" #>
+<#@ include file="LinqToDB.MySql.ttinclude" #>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.ttinclude
new file mode 100644
index 0000000..095be67
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.MySql.ttinclude
@@ -0,0 +1,35 @@
+<#@ include file="LinqToDB.ttinclude" #>
+<#
+ LinqToDB.DataProvider.MySql.MySqlTools.ResolveMySql(
+ typeof(MySql.Data.MySqlClient.MySqlConnection).Assembly);
+#>
+<#+
+LinqToDB.Data.DataConnection GetMySqlConnection(string connectionString)
+{
+ return LinqToDB.DataProvider.MySql.MySqlTools.CreateDataConnection(connectionString);
+}
+
+LinqToDB.Data.DataConnection GetMySqlConnection(string server, string database, string uid, string password,string port = "3306")
+{
+ return GetMySqlConnection(string.Format(
+ "Server={0};Port={4};Database={1};Uid={2};Pwd={3};charset=utf8;",
+ server, database, uid, password,port));
+}
+
+void LoadMySqlMetadata(string connectionString)
+{
+ var dataConnection = GetMySqlConnection(connectionString);
+ LoadMetadata(dataConnection);
+}
+
+void LoadMySqlMetadata(string server, string database, string uid, string password)
+{
+ var dataConnection = GetMySqlConnection(server, database, uid, password);
+ LoadMetadata(dataConnection);
+}
+void LoadMySqlMetadata(string server,string port, string database, string uid, string password)
+{
+ var dataConnection = GetMySqlConnection(server, database, uid, password,port);
+ LoadMetadata(dataConnection);
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.Tools.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.Tools.ttinclude
new file mode 100644
index 0000000..725329d
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.Tools.ttinclude
@@ -0,0 +1,3 @@
+<#@ assembly name="$(ProjectDir)\code.gen\tools\Oracle.ManagedDataAccess.dll" #>
+<#@ include file="LinqToDB.Tools.ttinclude" #>
+<#@ include file="LinqToDB.Oracle.ttinclude" #>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.ttinclude
new file mode 100644
index 0000000..9c35eaf
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Oracle.ttinclude
@@ -0,0 +1,29 @@
+<#@ include file="LinqToDB.ttinclude" #>
+<#
+ LinqToDB.DataProvider.Oracle.OracleTools.AssemblyName = "Oracle.ManagedDataAccess";
+ LinqToDB.DataProvider.Oracle.OracleTools.ResolveOracle(
+ typeof(Oracle.ManagedDataAccess.Client.OracleConnection).Assembly);
+#><#+
+LinqToDB.Data.DataConnection GetOracleConnection(string connectionString)
+{
+ //return LinqToDB.DataProvider.Oracle.OracleTools.CreateDataConnection(connectionString);
+ return new LinqToDB.Data.DataConnection(new LinqToDB.DataProvider.Oracle.OracleDataProvider("OracleManaged"), connectionString);
+}
+
+LinqToDB.Data.DataConnection GetOracleConnection(string server, string port, string database, string uid, string password)
+{
+ return GetOracleConnection(string.Format("Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST={0})(PORT={1}))(CONNECT_DATA=(SERVICE_NAME={2})));User Id={3};Password={4};", server, port, database, uid, password));
+}
+
+void LoadOracleMetadata(string connectionString)
+{
+ var dataConnection = GetOracleConnection(connectionString);
+ LoadMetadata(dataConnection);
+}
+
+void LoadOracleMetadata(string server, string port, string database, string uid, string password)
+{
+ var dataConnection = GetOracleConnection(server, port, database, uid, password);
+ LoadMetadata(dataConnection);
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.Tools.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.Tools.ttinclude
new file mode 100644
index 0000000..f93930d
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.Tools.ttinclude
@@ -0,0 +1,3 @@
+<#@ assembly name="$(ProjectDir)\code.gen\tools\Npgsql.dll" #>
+<#@ include file="LinqToDB.Tools.ttinclude" #>
+<#@ include file="LinqToDB.PostgreSQL.ttinclude" #>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.ttinclude
new file mode 100644
index 0000000..bebfa72
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.PostgreSQL.ttinclude
@@ -0,0 +1,57 @@
+<#@ include file="LinqToDB.ttinclude" #>
+<#
+ LinqToDB.DataProvider.PostgreSQL.PostgreSQLTools.ResolvePostgreSQL(
+ typeof(Npgsql.NpgsqlConnection).Assembly);
+
+ {
+ var beforeGenerateLinqToDBModel = BeforeGenerateLinqToDBModel;
+ BeforeGenerateLinqToDBModel = () =>
+ {
+ beforeGenerateLinqToDBModel();
+ SetCaseSensitiveNames();
+ };
+ }
+#>
+<#+
+bool GenerateCaseSensitiveNames = false; // Defines whether to generate case sensitive or insensitive names
+
+void SetCaseSensitiveNames()
+{
+ if (GenerateCaseSensitiveNames)
+ {
+ foreach (var t in Tables.Values)
+ {
+ if (t.TableName.Any(char.IsUpper))
+ t.TableName = "\\\"" + t.TableName + "\\\"";
+
+ foreach (var c in t.Columns.Values)
+ {
+ if (c.ColumnName.Any(char.IsUpper))
+ c.ColumnName = "\\\"" + c.ColumnName + "\\\"";
+ }
+ }
+ }
+}
+
+LinqToDB.Data.DataConnection GetPostgreSQLConnection(string connectionString)
+{
+ return LinqToDB.DataProvider.PostgreSQL.PostgreSQLTools.CreateDataConnection(connectionString);
+}
+
+LinqToDB.Data.DataConnection GetPostgreSQLConnection(string server, string port, string database, string uid, string password)
+{
+ return GetPostgreSQLConnection(string.Format(@"Server={0};Port={1};Database={2};User Id={3};Password={4};Pooling=true;MinPoolSize=10;MaxPoolSize=100;", server, port, database, uid, password));
+}
+
+void LoadPostgreSQLMetadata(string connectionString)
+{
+ var dataConnection = GetPostgreSQLConnection(connectionString);
+ LoadMetadata(dataConnection);
+}
+
+void LoadPostgreSQLMetadata(string server, string port, string database, string uid, string password)
+{
+ var dataConnection = GetPostgreSQLConnection(server, port, database, uid, password);
+ LoadMetadata(dataConnection);
+}
+#>
\ No newline at end of file
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.Tools.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.Tools.ttinclude
new file mode 100644
index 0000000..fc678e1
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.Tools.ttinclude
@@ -0,0 +1,2 @@
+<#@ include file="LinqToDB.Tools.ttinclude" #>
+<#@ include file="LinqToDB.SqlServer.ttinclude" #>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.ttinclude
new file mode 100644
index 0000000..04ec71f
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.SqlServer.ttinclude
@@ -0,0 +1,55 @@
+<#@ include file="LinqToDB.ttinclude" #>
+<#
+ {
+ var afterGenerateLinqToDBModel = AfterGenerateLinqToDBModel;
+ AfterGenerateLinqToDBModel = () =>
+ {
+ afterGenerateLinqToDBModel();
+ GenerateSqlServerTypes();
+ };
+ }
+#>
+<#+
+void GenerateSqlServerTypes()
+{
+ Model.Usings.Add("System.Collections.Generic");
+ Model.Usings.Add("System.Linq.Expressions");
+ Model.Usings.Add("System.Reflection");
+
+
+
+}
+
+LinqToDB.Data.DataConnection GetSqlServerConnection(string connectionString)
+{
+ return LinqToDB.DataProvider.SqlServer.SqlServerTools.CreateDataConnection(connectionString);
+}
+
+LinqToDB.Data.DataConnection GetSqlServerConnection(string server, string database)
+{
+ return GetSqlServerConnection(string.Format("Data Source={0};Database={1};Integrated Security=SSPI", server, database));
+}
+
+LinqToDB.Data.DataConnection GetSqlServerConnection(string server, string database, string user, string password)
+{
+ return GetSqlServerConnection(string.Format("Server={0};Database={1};User Id={2};Password={3};", server, database, user, password));
+}
+
+void LoadSqlServerMetadata(string connectionString)
+{
+ var dataConnection = GetSqlServerConnection(connectionString);
+ LoadMetadata(dataConnection);
+}
+
+void LoadSqlServerMetadata(string server, string database)
+{
+ var dataConnection = GetSqlServerConnection(server, database);
+ LoadMetadata(dataConnection);
+}
+
+void LoadSqlServerMetadata(string server, string database, string user, string password)
+{
+ var dataConnection = GetSqlServerConnection(server, database, user, password);
+ LoadMetadata(dataConnection);
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.Tools.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Tools.ttinclude
new file mode 100644
index 0000000..25ff579
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.Tools.ttinclude
@@ -0,0 +1 @@
+<#@ assembly name="$(ProjectDir)\code.gen\tools\Arch.Data.ORM.CodeGen.dll" #>
diff --git a/AntData/AntData.DbModels.linux/Templates/LinqToDB.ttinclude b/AntData/AntData.DbModels.linux/Templates/LinqToDB.ttinclude
new file mode 100644
index 0000000..befd986
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/LinqToDB.ttinclude
@@ -0,0 +1,781 @@
+<#@ assembly name="System.Data" #>
+<#@ import namespace="System.Data" #>
+<#@ import namespace="System.Text.RegularExpressions" #>
+<#@ import namespace="LinqToDB.Data" #>
+<#@ include file="DataModel.ttinclude" #>
+<#
+ if (BaseDataContextClass == null)
+ BaseDataContextClass = "AntData.ORM.Data.DataConnection";
+#>
+<#+
+Action BeforeGenerateLinqToDBModel = () => {};
+Action AfterGenerateLinqToDBModel = () => {};
+
+Func GenerateProviderSpecificTable = t => null;
+
+bool GenerateObsoleteAttributeForAliases = false;
+bool GenerateFindExtensions = true;
+bool IsCompactColumns = true;
+bool IsCompactColumnAliases = true;
+bool GenerateDataTypes = false;
+bool GenerateDbTypes = false;
+bool GenerateSchemaAsType = false;
+bool GenerateFkByTableName = true;
+bool GenerateProcedures = false;
+bool IsOracle = false;
+
+string SchemaNameSuffix = "Schema";
+string SchemaDataContextTypeName = "DataContext";
+
+
+Dictionary ShardingTables = new Dictionary();
+
+Dictionary SchemaNameMapping = new Dictionary();
+
+Dictionary ToPascalCaseTableDic = new Dictionary();
+string ToPascalCase(string the_string)
+{
+ //sharing tableĻ Լ { } ŵ
+
+ //if(the_string.Contains("{") && the_string.Contains("}"))
+ //{
+ // Regex rgx = new Regex("\\{.*\\}");
+ // the_string = rgx.Replace(the_string, "");
+ //}
+
+ // If there are 0 or 1 characters, just return the string.
+ if (the_string == null) return the_string;
+ if (the_string.Length < 2) return the_string.ToUpper();
+
+ // Split the string into words.
+ string[] words = the_string.Split(
+ new char[] {'_' },
+ StringSplitOptions.RemoveEmptyEntries);
+
+ // Combine the words.
+ string result = "";
+ foreach (string word in words)
+ {
+ result +=
+ word.Substring(0, 1).ToUpper() +
+ (IsOracle?word.Substring(1).ToLower():word.Substring(1));
+ }
+
+ return result;
+}
+void GenerateTypesFromMetadata()
+{
+ BeforeGenerateLinqToDBModel();
+ Model.Usings.Add("System.Linq");
+ Model.Usings.Add("AntData.ORM");
+ Model.Usings.Add("AntData.ORM.Mapping");
+ Model.Usings.Add("AntData.ORM.Data");
+ Model.Usings.Add("AntData.ORM.Linq");
+ Model.Usings.Add("System.Collections.Generic");
+ if (NamespaceName == null)
+ NamespaceName = "DataModel";
+
+ string schemaName;
+
+ var schemas =
+ (
+ from t in Tables.Values
+ where GenerateSchemaAsType && t.Schema != null && !t.TableSchema.IsDefaultSchema
+ group t by t.Schema into gr
+ let typeName = SchemaNameMapping.TryGetValue(gr.Key, out schemaName) ? schemaName : gr.Key
+ select new
+ {
+ Name = gr.Key,
+ TypeName = typeName + SchemaNameSuffix,
+ PropertyName = typeName,
+ Props = new MemberGroup { IsCompact = true },
+ Aliases = new MemberGroup { IsCompact = true, Region = "Alias members" },
+ TableExtensions = new MemberGroup { Region = "Table Extensions" },
+ Type = new Class(typeName + SchemaNameSuffix) { IsStatic = true },
+ Tables = gr.ToList(),
+ DataContext = new Class(SchemaDataContextTypeName),
+ }
+ ).ToDictionary(t => t.Name);
+
+ var defProps = new MemberGroup { IsCompact = true };
+ var defAliases = new MemberGroup { IsCompact = true, Region = "Alias members" };
+ var defTableExtensions = new MemberGroup { };
+
+ if (GenerateConstructors)
+ {
+ var body = new List();
+ body.Add("this.con = con;");
+
+ DataContextObject.Members.Add(new Field("DataConnection", "con")
+ {
+ AccessModifier = AccessModifier.Private,
+ IsReadonly = true
+ });
+ DataContextObject.Members.Add(new Property(
+ "DataConnection",
+ "DbContext",
+ new[] {"this.con"},
+ null));
+ DataContextObject.Members.Add(new Method(null, "IQueryable Get", null, new List{"return this.con.GetTable();"}) { AfterSignature = { " where T : class" } });
+ DataContextObject.Members.Add(new Method(null, DataContextObject.Name, new[] { "DataConnection con" }, body) { });
+
+ }
+
+ if (Tables.Count > 0)
+ DataContextObject.Members.Insert(0, defProps);
+
+ foreach (var schema in schemas.Values)
+ {
+ schema.Type.Members.Add(schema.DataContext);
+ schema.DataContext.Members.Insert(0, schema.Props);
+
+ schema.DataContext.Members.Add(new Field ("IDataContext", "_dataContext") { AccessModifier = AccessModifier.Private, IsReadonly = true });
+ schema.DataContext.Members.Add(new Method(null, schema.DataContext.Name, new[] { "IDataContext dataContext" }, new[] { "_dataContext = dataContext;" }));
+
+ foreach (var t in schema.Tables)
+ {
+ t.TypePrefix = schema.TypeName + ".";
+ }
+ }
+
+ foreach (var t in Tables.Values.OrderBy(tbl => tbl.IsProviderSpecific).ThenBy(tbl=> tbl.TypeName))
+ {
+ if(t.Columns.Values.Count == 0) continue;
+ t.TypeName += EntitySuffix??string.Empty;//EntityԶĺ
+ var tName = t.TypeName;
+ var UseNormalName = false;
+ if(ShardingTables.ContainsKey(t.TableName))
+ {
+ t.TypeName = ToPascalCase(ShardingTables[t.TableName]);//Լ sharding table _{?}ĸʽ
+ }else{
+ t.TypeName = ToPascalCase(t.TypeName);
+ }
+
+ if(ToPascalCaseTableDic.ContainsKey(t.TypeName))
+ {
+ t.TypeName = tName;
+ UseNormalName = true;
+ }else{
+ ToPascalCaseTableDic.Add(t.TypeName,"");
+ }
+
+ Action addType = tp => Model.Types.Add(tp);
+ var props = defProps;
+ var aliases = defAliases;
+ var tableExtensions = defTableExtensions;
+
+ var schema = t.Schema != null && schemas.ContainsKey(t.Schema) ? schemas[t.Schema] : null;
+
+ if (schema != null)
+ {
+ var si = schemas[t.Schema];
+
+ addType = tp => si.Type.Members.Add(tp);
+ props = si.Props;
+ aliases = si.Aliases;
+ tableExtensions = si.TableExtensions;
+ }
+
+ MemberBase dcProp = t.IsProviderSpecific ?
+ GenerateProviderSpecificTable(t) :
+ new Property(
+ string.Format("IQueryable<{0}>", UseNormalName?tName:ToPascalCase(t.TypeName)),
+ UseNormalName?tName:ShardingTables.ContainsKey(t.TableName)?ToPascalCase(t.TypeName):ToPascalCase(t.DataContextPropertyName),
+ new[] { string.Format((schema == null ? "this" : "_dataContext") + ".Get<{0}>()", UseNormalName?tName:ToPascalCase(t.TypeName)) },
+ null);
+
+ if (dcProp == null) continue;
+
+ t.DataContextProperty = dcProp;
+
+ props.Members.Add(dcProp);
+
+ Property aProp = null;
+
+ if (t.AliasPropertyName != null && t.AliasPropertyName != t.DataContextPropertyName)
+ {
+ aProp = new Property(
+ string.Format("IQueryable<{0}>", t.TypeName),
+ t.AliasPropertyName,
+ new[] { t.DataContextPropertyName },
+ null);
+
+ if (GenerateObsoleteAttributeForAliases)
+ aProp.Attributes.Add(new Attribute("Obsolete", "\"Use " + t.DataContextPropertyName + " instead.\""));
+
+ aliases.Members.Add(aProp);
+ }
+
+ var tableAttrs = new List();
+ if (DatabaseName != null)
+ {
+ tableAttrs.Add("Database=" + '"' + DatabaseName + '"');
+ }
+ if (t.Schema != null) tableAttrs.Add("Schema=" + '"' + t.Schema + '"');
+ if (!string.IsNullOrEmpty(t.Description )) tableAttrs.Add("Comment=" + '"' + t.Description.Replace("\r","").Replace("\n","").Replace("\r\n","").Trim() + '"');
+
+ tableAttrs.Add((tableAttrs.Count == 0 ? "" : "Name=") + '"' + t.TableName + '"');
+
+ t.Attributes.Add(new Attribute("Table", tableAttrs.ToArray()) { IsSeparated = true } );
+
+ if (t.IsView)
+ t.Comment.Add(" View");
+
+ var comments = new List();
+
+ if (!string.IsNullOrWhiteSpace(t.Description))
+ {
+ comments.Add("/ ");
+ foreach (var line in t.Description.Split('\n'))
+ comments.Add("/ " + line.TrimEnd());
+ comments.Add("/ ");
+ }
+
+ if (comments.Count > 0)
+ {
+ t. Comment.AddRange(comments);
+ dcProp.Comment.AddRange(comments);
+
+ if (aProp != null)
+ aProp.Comment.AddRange(comments);
+ }
+
+ var columns = new MemberGroup { IsCompact = IsCompactColumns , Region = "Column" };
+ var columnAliases = new MemberGroup { IsCompact = IsCompactColumnAliases, Region = "Alias members" };
+ var spcialColumn = new MemberGroup { IsCompact = true, Region = "Field" };
+ var nPKs = t.Columns.Values.Count(c => c.IsPrimaryKey);
+ var allNullable = t.Columns.Values.All (c => c.IsNullable || c.IsIdentity);
+ var nameMaxLen = t.Columns.Values.Max (c => c.MemberName != c.ColumnName ? 0 : c.ColumnName.Length);
+ var dbTypeMaxLen = t.Columns.Values.Max (c => c.ColumnType.Length);
+ var dataTypeMaxLen = t.Columns.Values.Max (c => c.DataType.Length);
+
+ foreach (var c in t.Columns.Values)
+ {
+ //if(new string[]{"Tid","DataChange_LastTime"}.Contains(c.ColumnName)) continue;
+ // ֶ.
+ //
+ var ca = new Attribute("Column");
+ var canBeReplaced = true;
+
+ if (c.MemberName == c.ColumnName)
+ {
+ var space = new string(' ', nameMaxLen - c.ColumnName.Length);
+
+ ca.Parameters.Add('"' + c.ColumnName + '"' + space);
+ canBeReplaced = false;
+ }
+ else if (nameMaxLen > 0)
+ {
+ ca.Parameters.Add(new string(' ', nameMaxLen + 2));
+ canBeReplaced = false;
+ }
+ c.ColumnName = ToPascalCase(c.ColumnName);
+ if(c.ColumnName == ToPascalCase(t.TypeName))
+ {
+ c.ColumnName = c.ColumnName + "S";
+ }
+ c.MemberName = c.ColumnName;
+ if (GenerateDbTypes)
+ {
+ var space = new string(' ', dbTypeMaxLen - c.ColumnType.Length);
+
+ ca.Parameters.Add("DbType=\"" + c.ColumnType + '"' + space);
+ canBeReplaced = false;
+ }
+
+ if (GenerateDataTypes)
+ {
+ var space = new string(' ', dataTypeMaxLen - c.DataType.Length);
+
+ ca.Parameters.Add("DataType=AntData.ORM." + c.DataType + space);
+
+ if (c.Length != null) ca.Parameters.Add("Length=" + (c.Length == int.MaxValue ? "int.MaxValue" : c.Length.ToString()));
+ if (c.Precision != null) ca.Parameters.Add("Precision=" + c.Precision);
+ if (c.Scale != null) ca.Parameters.Add("Scale=" + c.Scale);
+
+ canBeReplaced = false;
+ }
+
+ if (c.SkipOnInsert && !c.IsIdentity)
+ {
+ ca.Parameters.Add("SkipOnInsert=true");
+ canBeReplaced = false;
+ }
+
+ if (c.SkipOnUpdate && !c.IsIdentity)
+ {
+ ca.Parameters.Add("SkipOnUpdate=true");
+ canBeReplaced = false;
+ }
+ if (!string.IsNullOrEmpty(c.Description))
+ {
+ ca.Parameters.Add("Comment=\"" + c.Description.Replace("\r","").Replace("\n","").Replace("\r\n","").Trim() + '"');
+ }
+ c.Attributes.Add(ca);
+
+ // PK.
+ //
+ if (c.IsPrimaryKey)
+ {
+ var pka = new Attribute("PrimaryKey");
+
+ if (nPKs > 1)
+ pka.Parameters.Add(c.PrimaryKeyOrder.ToString());
+
+ if (canBeReplaced)
+ c.Attributes[0] = pka;
+ else
+ c.Attributes.Add(pka);
+
+ canBeReplaced = false;
+ }
+
+ // Identity.
+ //
+ if (c.IsIdentity)
+ {
+ var ida = new Attribute("Identity");
+
+ if (canBeReplaced)
+ c.Attributes[0] = ida;
+ else
+ c.Attributes.Add(ida);
+
+ canBeReplaced = false;
+ }
+
+ // Nullable.
+ //
+ if (c.IsNullable)
+ {
+ c.Attributes.Add(new Attribute((allNullable ? "" : " ") + "Nullable"));
+ }
+ else if (!c.IsIdentity)
+ {
+ //ǿ
+ c.Attributes.Add(new Attribute("NotNull"));
+ //DateTime͵Ļ Ĭֵ
+ //spcialColumn
+ if(c.Type == "DateTime"){
+ c.IsAuto = false;
+ c.GetBody.AddRange(new[] { "_" + c.MemberName });
+ c.SetBody.AddRange(new[] { "_" +c.MemberName + " = value;"});
+ var dt = new Field(c.Type,"_" +c.ColumnName);
+ dt.InitValue = "System.Data.SqlTypes.SqlDateTime.MinValue.Value";
+ //dt.IsReadonly = true;
+ dt.AccessModifier = AccessModifier.Private;
+ spcialColumn.Members.Add(dt);
+ }
+
+ }
+
+ var columnComments = new List();
+
+ if (!string.IsNullOrWhiteSpace(c.Description))
+ {
+ columnComments.Add("/ ");
+ foreach (var line in c.Description.Split('\n'))
+ columnComments.Add("/ " + line.TrimEnd());
+ columnComments.Add("/ ");
+ }
+
+ if (columnComments.Count > 0)
+ c.Comment.AddRange(columnComments);
+
+ // End line comment.
+ //
+ c.EndLineComment = c.ColumnType;
+
+ SetPropertyValue(c, "IsNotifying", true);
+ SetPropertyValue(c, "IsEditable", true);
+
+ columns.Members.Add(c);
+
+ // Alias.
+ //
+ if (c.AliasName != null && c.AliasName != c.MemberName)
+ {
+ var caProp = new Property(
+ c.Type,
+ c.AliasName,
+ new[] { c.MemberName },
+ new[] { c.MemberName + " = value;"});
+
+ caProp.Comment.AddRange(columnComments);
+
+ if (GenerateObsoleteAttributeForAliases)
+ caProp.Attributes.Add(new Attribute("Obsolete", "\"Use " + c.MemberName + " instead.\""));
+
+ caProp.Attributes.Add(new Attribute("ColumnAlias", "\"" + c.MemberName + "\""));
+
+ columnAliases.Members.Add(caProp);
+ }
+ }
+
+ t.Members.Add(columns);
+
+
+ if (spcialColumn.Members.Count > 0)
+ t.Members.Add(spcialColumn);
+
+ if (columnAliases.Members.Count > 0)
+ t.Members.Add(columnAliases);
+
+
+ //
+ if (GenerateAssociations)
+ {
+ var keys = t.ForeignKeys.Values.ToList();
+
+ if (!GenerateBackReferences)
+ keys = keys.Where(k => k.BackReference != null).ToList();
+
+ if (keys.Count > 0)
+ {
+ var associations = new MemberGroup { Region = "Associations" };
+
+ foreach (var key in keys)
+ {
+ key.Comment.Add("/ ");
+ key.Comment.Add("/ " + key.KeyName);//
+ key.Comment.Add("/ ");
+
+ if (key.AssociationType == AssociationType.OneToMany)
+ key.Type = string.Format(OneToManyAssociationType, key.OtherTable.TypePrefix + ToPascalCase(key.OtherTable.TypeName));
+ else
+ key.Type = key.OtherTable.TypePrefix + ToPascalCase(key.OtherTable.TypeName)+ (EntitySuffix??string.Empty);
+
+ var aa = new Attribute("Association");
+
+ aa.Parameters.Add("ThisKey=\"" + string.Join(", ", (from c in key.ThisColumns select ToPascalCase(c.MemberName)).ToArray()) + "\"");
+ aa.Parameters.Add("OtherKey=\"" + string.Join(", ", (from c in key.OtherColumns select ToPascalCase(c.MemberName)).ToArray()) + "\"");
+ aa.Parameters.Add("CanBeNull=" + (key.CanBeNull ? "true" : "false"));
+
+ if (key.BackReference != null)
+ {
+ if (!string.IsNullOrEmpty(key.KeyName))
+ aa.Parameters.Add("KeyName=\"" + key.KeyName + "\"");
+ if (GenerateBackReferences && !string.IsNullOrEmpty(key.BackReference.KeyName))
+ aa.Parameters.Add("BackReferenceName=\"" + key.BackReference.MemberName + "\"");
+ }
+ else
+ {
+ aa.Parameters.Add("IsBackReference=true");
+ }
+
+ key.Attributes.Add(aa);
+
+ SetPropertyValue(key, "IsNotifying", true);
+ SetPropertyValue(key, "IsEditable", true);
+ if(GenerateFkByTableName)
+ {
+ key.Name = key.AssociationType == AssociationType.OneToMany?ToPascalCase(key.OtherTable.TypeName)+"List":ToPascalCase(key.OtherTable.TypeName);
+ }
+ else
+ {
+ key.Name = ToPascalCase(key.Name);
+ }
+
+ associations.Members.Add(key);
+ }
+
+ t.Members.Add(associations);
+ }
+ }
+
+ //չ
+ if (GenerateFindExtensions && nPKs > 0)
+ {
+ var PKs = t.Columns.Values.Where(c => c.IsPrimaryKey).ToList();
+ var maxNameLen1 = PKs.Max(c => (int?)c.MemberName.Length) ?? 0;
+ var maxNameLen2 = PKs.Take(nPKs - 1).Max(c => (int?)c.MemberName.Length) ?? 0;
+
+ tableExtensions.Members.Add(
+ new Method(
+ t.TypeName,
+ "FindByBk",
+ new[] { (string.Format("this IQueryable<{0}> table", t.TypeName)) }
+ .Union(PKs.Select(c => c.Type + " " + c.MemberName)),
+ new[] { "return table.FirstOrDefault(t =>" }
+ .Union(PKs.Select((c,i) => string.Format("\tt.{0}{1} == {0}{3}{2}",
+ c.MemberName, LenDiff(maxNameLen1, c.MemberName), i == nPKs - 1 ? ");" : " &&", i == nPKs - 1 ? "" : LenDiff(maxNameLen2, c.MemberName)))))
+ {
+ IsStatic = true
+ });
+
+ tableExtensions.Members.Add(
+ new Method(
+ "async Task<" + t.TypeName + ">",
+ "FindByBkAsync",
+ new[] { (string.Format("this IQueryable<{0}> table", t.TypeName)) }
+ .Union(PKs.Select(c => c.Type + " " + c.MemberName)),
+ new[] { "return await table.FirstOrDefaultAsync(t =>" }
+ .Union(PKs.Select((c,i) => string.Format("\tt.{0}{1} == {0}{3}{2}",
+ c.MemberName, LenDiff(maxNameLen1, c.MemberName), i == nPKs - 1 ? ");" : " &&", i == nPKs - 1 ? "" : LenDiff(maxNameLen2, c.MemberName)))))
+ {
+ IsStatic = true
+ });
+ }
+
+ addType(t);
+
+ if (!string.IsNullOrWhiteSpace(t.AliasTypeName))
+ {
+ var aClass = new Class(t.AliasTypeName)
+ {
+ BaseClass = t.TypeName
+ };
+
+ if (comments.Count > 0)
+ aClass.Comment.AddRange(comments);
+
+ if (GenerateObsoleteAttributeForAliases)
+ aClass.Attributes.Add(new Attribute("Obsolete", "\"Use " + t.TypeName + " instead.\""));
+
+ Model.Types.Add(aClass);
+ }
+ }
+
+ if (defAliases.Members.Count > 0)
+ DataContextObject.Members.Add(defAliases);
+
+ foreach (var schema in schemas.Values)
+ if (schema.Aliases.Members.Count > 0)
+ schema.Type.Members.Add(defAliases);
+
+ //洢
+ if (GenerateProcedures && Procedures.Count > 0)
+ {
+ Model.Usings.Add("System.Data");
+ Model.Usings.Add("System.Threading.Tasks");
+ Model.Usings.Add("AntData.ORM.Data");
+ Model.Usings.Add("AntData.ORM.Common");
+
+ var procs = new MemberGroup();
+ var funcs = new MemberGroup();
+ var tabfs = new MemberGroup { Region = "Table Functions" };
+
+ foreach (var p in Procedures.Values.Where(
+ proc => proc.IsLoaded ||
+ (proc.IsFunction && !proc.IsTableFunction)))
+ {
+ var proc = new MemberGroup { Region = p.Name };
+
+ if (p.IsTableFunction)
+ {
+ var tableAttrs = new List();
+
+ if (DatabaseName != null) tableAttrs.Add("Database=" + '"' + DatabaseName + '"');
+ if (p.Schema != null) tableAttrs.Add("Schema=" + '"' + p.Schema + '"');
+
+ tableAttrs.Add("Name=" + '"' + p.ProcedureName + '"');
+
+ p.Attributes.Add(new Attribute("Sql.TableFunction", tableAttrs.ToArray()));
+
+ p.Type = "IQueryable<" + p.ResultTable.TypeName + ">";
+ }
+ else if (p.IsFunction)
+ {
+ p.IsStatic = true;
+ p.Type = p.ProcParameters.Single(pr => pr.IsResult).ParameterType;
+ p.Attributes.Add(new Attribute("Sql.Function", "Name=\"" + p.Schema + "." + p.ProcedureName + "\"", "ServerSideOnly=true"));
+ }
+ else
+ {
+ p.IsStatic = true;
+ p.Type = p.ResultTable == null ? "int" : "IEnumerable<" + ToPascalCase(p.ResultTable.TypeName) + ">";
+ p.Parameters.Add("this DataConnection dataConnection");
+ }
+
+ foreach (var pr in p.ProcParameters.Where(par => !par.IsResult))
+ p.Parameters.Add(string.Format("{0}{1} {2}",
+ pr.IsOut ? pr.IsIn ? "ref " : "out " : "", pr.ParameterType, pr.ParameterName));
+
+ if (p.IsTableFunction)
+ {
+ var body = string.Format("return this.GetTable<{0}>(this, (MethodInfo)MethodBase.GetCurrentMethod()", p.ResultTable.TypeName);
+
+ body += p.ProcParameters.Count == 0 ? ");" : ",";
+
+ p.Body.Add(body);
+
+ for (var i = 0; i < p.ProcParameters.Count; i++)
+ p.Body.Add("\t" + p.ProcParameters[i].ParameterName + (i + 1 == p.ProcParameters.Count ? ");" : ","));
+ }
+ else if (p.IsFunction)
+ {
+ p.Body.Add("throw new InvalidOperationException();");
+ }
+ else
+ {
+ var spName =
+ SqlBuilder.BuildTableName(
+ new System.Text.StringBuilder(),
+ (string)SqlBuilder.Convert(DatabaseName, LinqToDB.SqlProvider.ConvertType.NameToDatabase),
+ (string)SqlBuilder.Convert(p.Schema, LinqToDB.SqlProvider.ConvertType.NameToOwner),
+ (string)SqlBuilder.Convert(p.ProcedureName, LinqToDB.SqlProvider.ConvertType.NameToQueryTable)
+ ).ToString();
+
+ spName = "\"" + spName.Replace("\"", "\\\"") + "\"";
+
+ var inputParameters = p.ProcParameters.Where(pp => pp.IsIn). ToList();
+ var outputParameters = p.ProcParameters.Where(pp => pp.IsOut).ToList();
+
+ spName += inputParameters.Count == 0 ? ");" : ",";
+
+ var retName = "ret";
+ var retNo = 0;
+
+ while (p.ProcParameters.Any(pp => pp.ParameterName == retName))
+ retName = "ret" + ++retNo;
+
+ var hasOut = outputParameters.Any(pr => pr.IsOut);
+ var prefix = hasOut ? "var " + retName + " = " : "return ";
+
+ if (p.ResultTable == null)
+ p.Body.Add(prefix + "dataConnection.ExecuteProc(" + spName);
+ else
+ {
+ if (p.ResultTable.Columns.Values.Any(c => c.IsDuplicateOrEmpty))
+ {
+ p.Body.Add("var ms = dataConnection.MappingSchema;");
+ p.Body.Add("");
+ p.Body.Add(prefix + "dataConnection.QueryProc(dataReader =>");
+ p.Body.Add("\tnew " + p.ResultTable.TypeName);
+ p.Body.Add("\t{");
+
+ var n = 0;
+ var maxNameLen = p.ResultTable.Columns.Values.Max(c => (int?)c.MemberName.Length) ?? 0;
+ var maxTypeLen = p.ResultTable.Columns.Values.Max(c => (int?)c.Type. Length) ?? 0;
+
+ foreach (var c in p.ResultTable.Columns.Values)
+ {
+ p.Body.Add(string.Format("\t\t{0}{1} = Converter.ChangeTypeTo<{2}>{3}(dataReader.GetValue({4}), ms),",
+ c.MemberName, LenDiff(maxNameLen, c.MemberName), c.Type, LenDiff(maxTypeLen, c.Type), n++));
+ }
+
+ p.Body.Add("\t},");
+ p.Body.Add("\t" + spName);
+ }
+ else
+ {
+ p.Body.Add(prefix + "dataConnection.QueryProc<" + p.ResultTable.TypeName + ">(" + spName);
+ }
+ }
+
+ var maxLenSchema = inputParameters.Max(pr => (int?)pr.SchemaName. Length) ?? 0;
+ var maxLenParam = inputParameters.Max(pr => (int?)pr.ParameterName.Length) ?? 0;
+ var maxLenType = inputParameters.Max(pr => (int?)("DataType." + pr.DataType).Length) ?? 0;
+
+ for (var i = 0; i < inputParameters.Count; i++)
+ {
+ var pr = inputParameters[i];
+
+ var str = string.Format("\tnew DataParameter(\"{0}\", {1}{2}, {3}{4})",
+ pr.SchemaName,
+ LenDiff(maxLenSchema, pr.SchemaName),
+ pr.ParameterName,
+ LenDiff(maxLenParam, pr.ParameterName),
+ "DataType." + pr.DataType);
+
+ if (pr.IsOut)
+ {
+ str += LenDiff(maxLenType, "DataType." + pr.DataType);
+ str += " { Direction = " + (pr.IsIn ? "ParameterDirection.InputOutput" : "ParameterDirection.Output");
+
+ if (pr.Size != null && pr.Size.Value != 0)
+ str += ", Size = " + pr.Size.Value;
+
+ str += " }";
+ }
+
+ str += i + 1 == inputParameters.Count ? ");" : ",";
+
+ p.Body.Add(str);
+ }
+
+ if (hasOut)
+ {
+ maxLenSchema = outputParameters.Max(pr => (int?)pr.SchemaName. Length) ?? 0;
+ maxLenParam = outputParameters.Max(pr => (int?)pr.ParameterName.Length) ?? 0;
+ maxLenType = outputParameters.Max(pr => (int?)pr.ParameterType.Length) ?? 0;
+
+ p.Body.Add("");
+
+ foreach (var pr in p.ProcParameters.Where(_ => _.IsOut))
+ {
+ var str = string.Format("{0} {1}= Converter.ChangeTypeTo<{2}>{3}(((IDbDataParameter)dataConnection.Command.Parameters[\"{4}\"]).{5}Value);",
+ pr.ParameterName,
+ LenDiff(maxLenParam, pr.ParameterName),
+ pr.ParameterType,
+ LenDiff(maxLenType, pr.ParameterType),
+ pr.SchemaName,
+ LenDiff(maxLenSchema, pr.SchemaName));
+
+ p.Body.Add(str);
+ }
+
+ p.Body.Add("");
+ p.Body.Add("return " + retName + ";");
+ }
+ }
+
+ if (p.ResultTable != null && p.ResultTable.DataContextPropertyName == null)
+ {
+ var columns = new MemberGroup { IsCompact = true };
+
+ foreach (var c in p.ResultTable.Columns.Values)
+ {
+ if (c.MemberName != c.ColumnName)
+ c.Attributes.Add(new Attribute("Column") { Parameters = { '"' + c.ColumnName + '"' } });
+ columns.Members.Add(c);
+ }
+
+ p.ResultTable.Members.Add(columns);
+ proc.Members.Add(p.ResultTable);
+ }
+
+ proc.Members.Add(p);
+
+ if (!p.IsFunction) procs.Members.Add(proc);
+ else if (p.IsTableFunction) tabfs.Members.Add(proc);
+ else funcs.Members.Add(proc);
+ }
+
+ if (procs.Members.Count > 0)
+ Model.Types.Add(new Class(DataContextObject.Name + "StoredProcedures", procs) { IsStatic = true });
+
+ if (funcs.Members.Count > 0)
+ Model.Types.Add(new Class("SqlFunctions", funcs) { IsStatic = true });
+
+ if (tabfs.Members.Count > 0)
+ DataContextObject.Members.Add(tabfs);
+ }
+
+ if (defTableExtensions.Members.Count > 0)
+ {
+ Model.Usings.Add("System.Linq");
+ Model.Usings.Add("System.Threading.Tasks");
+ Model.Types.Add(new Class("TableExtensions", defTableExtensions) { IsStatic = true });
+ }
+
+ foreach (var schema in schemas.Values)
+ {
+ Model.Types.Add(schema.Type);
+
+ if (schema.TableExtensions.Members.Count > 0)
+ {
+ Model.Usings.Add("System.Linq");
+ Model.Usings.Add("System.Threading.Tasks");
+ schema.Type.Members.Add(schema.TableExtensions);
+ }
+ }
+
+ Tables. Clear();
+ Procedures.Clear();
+
+ Model.SetTree();
+
+ AfterGenerateLinqToDBModel();
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/PluralizationService.ttinclude b/AntData/AntData.DbModels.linux/Templates/PluralizationService.ttinclude
new file mode 100644
index 0000000..f13c74b
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/PluralizationService.ttinclude
@@ -0,0 +1,122 @@
+<#@ assembly name="System.Data.Entity.Design" #>
+<#@ import namespace="System.Data.Entity.Design.PluralizationServices" #>
+<#
+ {
+ ToPlural = Pluralization.ToPlural;
+ ToSingular = Pluralization.ToSingular;
+ }
+#>
+<#+
+static class Pluralization
+{
+ public static string CultureInfo = "en";
+
+ static PluralizationService _service;
+
+ public static Dictionary Dictionary = new Dictionary
+ {
+ { "access", "accesses" }, { "afterlife", "afterlives" }, { "alga", "algae" },
+ { "alumna", "alumnae" }, { "alumnus", "alumni" }, { "analysis", "analyses" },
+ { "antenna", "antennae" }, { "appendix", "appendices" }, { "axis", "axes" },
+ { "bacillus", "bacilli" }, { "basis", "bases" }, { "Bedouin", "Bedouin" },
+ { "cactus", "cacti" }, { "calf", "calves" }, { "cherub", "cherubim" },
+ { "child", "children" }, { "cod", "cod" }, { "cookie", "cookies" },
+ { "criterion", "criteria" }, { "curriculum", "curricula" }, { "data", "data" },
+ { "deer", "deer" }, { "diagnosis", "diagnoses" }, { "die", "dice" },
+ { "dormouse", "dormice" }, { "elf", "elves" }, { "elk", "elk" },
+ { "erratum", "errata" }, { "esophagus", "esophagi" }, { "fauna", "faunae" },
+ { "fish", "fish" }, { "flora", "florae" }, { "focus", "foci" },
+ { "foot", "feet" }, { "formula", "formulae" }, { "fundus", "fundi" },
+ { "fungus", "fungi" }, { "genie", "genii" }, { "genus", "genera" },
+ { "goose", "geese" }, { "grouse", "grouse" }, { "hake", "hake" },
+ { "half", "halves" }, { "headquarters", "headquarters" }, { "hippo", "hippos" },
+ { "hippopotamus", "hippopotami" }, { "hoof", "hooves" }, { "housewife", "housewives" },
+ { "hypothesis", "hypotheses" }, { "index", "indices" }, { "info", "info" },
+ { "jackknife", "jackknives" },
+ { "knife", "knives" }, { "labium", "labia" }, { "larva", "larvae" },
+ { "leaf", "leaves" }, { "life", "lives" }, { "loaf", "loaves" },
+ { "louse", "lice" }, { "magus", "magi" }, { "man", "men" },
+ { "memorandum", "memoranda" }, { "midwife", "midwives" }, { "millennium", "millennia" },
+ { "moose", "moose" }, { "mouse", "mice" }, { "nebula", "nebulae" },
+ { "neurosis", "neuroses" }, { "nova", "novas" }, { "nucleus", "nuclei" },
+ { "oesophagus", "oesophagi" }, { "offspring", "offspring" }, { "ovum", "ova" },
+ { "ox", "oxen" }, { "papyrus", "papyri" }, { "passerby", "passersby" },
+ { "penknife", "penknives" }, { "person", "people" }, { "phenomenon", "phenomena" },
+ { "placenta", "placentae" }, { "pocketknife", "pocketknives" }, { "process", "processes" },
+ { "pupa", "pupae" }, { "radius", "radii" }, { "reindeer", "reindeer" },
+ { "retina", "retinae" }, { "rhinoceros", "rhinoceros" }, { "roe", "roe" },
+ { "salmon", "salmon" }, { "scarf", "scarves" }, { "self", "selves" },
+ { "seraph", "seraphim" }, { "series", "series" }, { "sheaf", "sheaves" },
+ { "sheep", "sheep" }, { "shelf", "shelves" }, { "species", "species" },
+ { "spectrum", "spectra" }, { "status", "status" }, { "stimulus", "stimuli" },
+ { "stratum", "strata" }, { "supernova", "supernovas" }, { "swine", "swine" },
+ { "terminus", "termini" }, { "thesaurus", "thesauri" }, { "thesis", "theses" },
+ { "thief", "thieves" }, { "trout", "trout" }, { "vulva", "vulvae" },
+ { "wife", "wives" }, { "wildebeest", "wildebeest" }, { "wolf", "wolves" },
+ { "woman", "women" }, { "yen", "yen" },
+ };
+
+ static string GetLastWord(string str)
+ {
+ if (string.IsNullOrWhiteSpace(str))
+ return string.Empty;
+
+ var i = str.Length - 1;
+ var isLower = char.IsLower(str[i]);
+
+ while (i > 0 && char.IsLower(str[i-1]) == isLower)
+ i--;
+
+ return str.Substring(isLower && i > 0 ? i - 1 : i);
+ }
+
+ public static string ToPlural(string str)
+ {
+ if (_service == null)
+ _service = PluralizationService.CreateService(System.Globalization.CultureInfo.GetCultureInfo(CultureInfo));
+
+ var word = GetLastWord(str);
+
+ string newWord;
+
+ if (!Dictionary.TryGetValue(word.ToLower(), out newWord))
+ newWord = _service.IsPlural(word) ? word : _service.Pluralize(word);
+
+ if (string.Compare(word, newWord, true) != 0)
+ {
+ if (char.IsUpper(word[0]))
+ newWord = char.ToUpper(newWord[0]) + newWord.Substring(1, newWord.Length - 1);
+
+ return word == str ? newWord : str.Substring(0, str.Length - word.Length) + newWord;
+ }
+
+ return str;
+ }
+
+ public static string ToSingular(string str)
+ {
+ if (_service == null)
+ _service = PluralizationService.CreateService(System.Globalization.CultureInfo.GetCultureInfo(CultureInfo));
+
+ var word = GetLastWord(str);
+
+ var newWord =
+ Dictionary
+ .Where(dic => string.Compare(dic.Value, word, true) == 0)
+ .Select(dic => dic.Key)
+ .FirstOrDefault()
+ ??
+ (_service.IsSingular(word) ? word : _service.Singularize(word));
+
+ if (string.Compare(word, newWord, true) != 0)
+ {
+ if (char.IsUpper(word[0]))
+ newWord = char.ToUpper(newWord[0]) + newWord.Substring(1, newWord.Length - 1);
+
+ return word == str ? newWord : str.Substring(0, str.Length - word.Length) + newWord;
+ }
+
+ return str;
+ }
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/Templates/T4Model.ttinclude b/AntData/AntData.DbModels.linux/Templates/T4Model.ttinclude
new file mode 100644
index 0000000..a3a609d
--- /dev/null
+++ b/AntData/AntData.DbModels.linux/Templates/T4Model.ttinclude
@@ -0,0 +1,1381 @@
+<#@ assembly name="System.Core" #>
+<#@ import namespace="System" #>
+<#@ import namespace="System.Collections.Generic" #>
+<#@ import namespace="System.Linq" #>
+<#+
+static Action WriteComment = (tt,s) => tt.WriteLine("//{0}", s);
+
+Action BeforeGenerateModel = () => {};
+
+void GenerateModel()
+{
+ Model.SetTree();
+
+ BeforeGenerateModel();
+
+ if (GenerationEnvironment.Length > 0 && GenerationEnvironment.ToString().Trim().Length == 0)
+ GenerationEnvironment.Length = 0;
+
+
+ Model.Render(this);
+}
+
+void Trim()
+{
+ var arr = new[] { '\r', '\n', ' ' };
+ while (GenerationEnvironment.Length > 0 && arr.Contains(GenerationEnvironment[GenerationEnvironment.Length - 1]))
+ GenerationEnvironment.Length--;
+
+ WriteLine("");
+}
+
+static Action WriteUsing = (tt,s) => tt.WriteLine("using {0};", s);
+
+void RenderUsings(List usings)
+{
+ var q =
+ from ns in usings.Distinct()
+ group ns by ns.Split('.')[0];
+
+ var groups =
+ (from ns in q where ns.Key == "System" select ns).Concat
+ (from ns in q where ns.Key != "System" orderby ns.Key select ns);
+
+ foreach (var gr in groups)
+ {
+ foreach (var ns in from s in gr orderby s select s)
+ WriteUsing(this, ns);
+
+ WriteLine("");
+ }
+
+ Trim();
+}
+
+// Base data types.
+//
+public interface ITree
+{
+ ITree Parent { get; set; }
+ IEnumerable GetNodes();
+ void SetTree();
+}
+
+ModelSource Model = new ModelSource();
+
+public partial class ModelSource : ITree
+{
+ public int CurrentNamespace = 0;
+
+ public List Usings = new List { "System" };
+ public List Namespaces = new List { new Namespace() };
+
+ public Namespace Namespace { get { return Namespaces[CurrentNamespace]; } }
+ public List Types { get { return Namespaces[CurrentNamespace].Types; } }
+
+ public virtual void Render(GeneratedTextTransformation tt)
+ {
+ tt.RenderUsings(Usings);
+ tt.WriteLine("");
+
+ foreach (var nm in Namespaces)
+ {
+ nm.Render(tt);
+ tt.WriteLine("");
+ }
+
+ tt.Trim();
+ }
+
+ public ITree Parent { get; set; }
+ public IEnumerable GetNodes() { return Namespaces; }
+
+ public void SetTree()
+ {
+ foreach (var ch in GetNodes())
+ {
+ ch.Parent = this;
+ ch.SetTree();
+ }
+ }
+}
+
+static Action WriteBeginNamespace = (tt,s) => { tt.WriteLine("namespace {0}", s); tt.WriteLine("{"); };
+static Action WriteEndNamespace = tt => tt.WriteLine("}");
+
+public partial class Namespace : ITree
+{
+ public string Name;
+ public List Types = new List();
+
+ public virtual void Render(GeneratedTextTransformation tt)
+ {
+ if (!string.IsNullOrEmpty(Name))
+ {
+ WriteBeginNamespace(tt, Name);
+ tt.PushIndent("\t");
+ }
+
+ foreach (var t in Types)
+ {
+ t.Render(tt);
+ tt.WriteLine("");
+ }
+
+ tt.Trim();
+
+ if (!string.IsNullOrEmpty(Name))
+ {
+ tt.PopIndent();
+ WriteEndNamespace(tt);
+ }
+ }
+
+ public ITree Parent { get; set; }
+ public IEnumerable GetNodes() { return Types; }
+
+ public void SetTree()
+ {
+ foreach (var ch in GetNodes())
+ {
+ ch.Parent = this;
+ ch.SetTree();
+ }
+ }
+}
+
+public interface IClassMember : ITree
+{
+}
+
+public enum AccessModifier
+{
+ Public,
+ Protected,
+ Internal,
+ Private,
+ Partial
+}
+
+public abstract partial class TypeBase : IClassMember
+{
+ public AccessModifier AccessModifier = AccessModifier.Public;
+ public string Name;
+ public bool IsPartial = true;
+ public List Comment = new List();
+ public List Attributes = new List();
+
+ public abstract void Render(GeneratedTextTransformation tt);
+
+ public ITree Parent { get; set; }
+ public abstract IEnumerable GetNodes();
+ public abstract void SetTree ();
+}
+
+static Action WriteBeginClass = (tt,cl) =>
+{
+ tt.Write(cl.AccessModifier.ToString().ToLower() + " ");
+ if (cl.IsStatic) tt.Write("static ");
+ if (cl.IsPartial) tt.Write("partial ", cl.Name);
+ tt.Write("class {0}", cl.Name);
+
+ if (!string.IsNullOrEmpty(cl.BaseClass) || cl.Interfaces.Count > 0)
+ {
+ var arr = new[] { cl.BaseClass }.Concat(cl.Interfaces)
+ .Where(n => n != null)
+ .ToArray();
+
+ tt.Write(" : ");
+ tt.Write(string.Join(", ", arr));
+ }
+
+ tt.WriteLine("");
+ tt.WriteLine("{");
+};
+
+static Action WriteEndClass = tt => tt.WriteLine("}");
+
+public partial class Class : TypeBase
+{
+ public string BaseClass;
+ public bool IsStatic = false;
+ public List Interfaces = new List();
+ public List Members = new List();
+
+ public Class()
+ {
+ }
+
+ public Class(string name, params IClassMember[] members)
+ {
+ Name = name;
+ Members.AddRange(members);
+ }
+
+ public override void Render(GeneratedTextTransformation tt)
+ {
+ foreach (var c in Comment)
+ tt.WriteLine("//" + c);
+
+ if (Attributes.Count > 0)
+ {
+ var aa = Attributes.Where(a => !a.IsSeparated).ToList();
+
+ if (aa.Count > 0)
+ {
+ tt.Write("[");
+
+ for (var i = 0; i < aa.Count; i++)
+ {
+ if (i > 0) SkipSpacesAndInsert(tt, ", ");
+ aa[i].Render(tt);
+ }
+
+ tt.WriteLine("]");
+ }
+
+ aa = Attributes.Where(a => a.IsSeparated).ToList();
+
+ foreach (var a in aa)
+ {
+ tt.Write("[");
+ a.Render(tt);
+ tt.WriteLine("]");
+ }
+ }
+
+ WriteBeginClass(tt, this);
+ tt.PushIndent("\t");
+
+ foreach (var cm in Members)
+ {
+ if (cm is MemberBase)
+ {
+ var m = (MemberBase)cm;
+
+ foreach (var c in m.Comment)
+ WriteComment(tt, c);
+
+ if (m.Attributes.Count > 0)
+ {
+ var q =
+ from a in m.Attributes
+ group a by a.Conditional ?? "";
+
+ foreach (var g in q)
+ {
+ if (g.Key.Length > 0)
+ {
+ tt.RemoveSpace();
+ tt.WriteLine("#if " + g.Key);
+ }
+
+ var attrs = g.ToList();
+
+ tt.Write("[");
+
+ for (var i = 0; i < attrs.Count; i++)
+ {
+ if (i > 0) SkipSpacesAndInsert(tt, ", ");
+ attrs[i].Render(tt);
+ }
+
+ tt.WriteLine("]");
+
+ if (g.Key.Length > 0)
+ {
+ tt.RemoveSpace();
+ tt.WriteLine("#endif");
+ }
+ }
+ }
+
+ m.Render(tt, false);
+ if (m.InsertBlankLineAfter)
+ tt.WriteLine("");
+ }
+ else if (cm is TypeBase)
+ {
+ var t = (TypeBase)cm;
+
+ t.Render(tt);
+ tt.WriteLine("");
+ }
+ }
+
+ tt.Trim();
+
+ tt.PopIndent();
+ WriteEndClass(tt);
+ }
+
+ public override IEnumerable GetNodes()
+ {
+ return Members;
+ }
+
+ public override void SetTree()
+ {
+ foreach (var ch in GetNodes())
+ {
+ ch.Parent = this;
+ ch.SetTree();
+ }
+ }
+}
+
+public abstract partial class MemberBase : IClassMember
+{
+ public string ID;
+ public AccessModifier AccessModifier = AccessModifier.Public;
+ public string Name;
+ public string Type;
+ public List Comment = new List();
+ public string EndLineComment;
+ public List Attributes = new List();
+ public bool InsertBlankLineAfter = true;
+
+ public int AccessModifierLen;
+ public int ModifierLen;
+ public int TypeLen;
+ public int NameLen;
+ public int ParamLen;
+ public int BodyLen;
+
+ public virtual int CalcModifierLen() { return 0; }
+ public abstract int CalcBodyLen ();
+ public virtual int CalcParamLen () { return 0; }
+ public abstract void Render (GeneratedTextTransformation tt, bool isCompact);
+
+ public ITree Parent { get; set; }
+ public virtual IEnumerable GetNodes() { return Enumerable.Empty(); }
+ public virtual void SetTree () {}
+}
+
+static Action BeginRegion = (tt,s) => { tt.WriteLine("#region {0}", s); };
+static Action EndRegion = (tt) => { tt.WriteLine("#endregion"); };
+
+public partial class MemberGroup : MemberBase
+{
+ public string Region;
+ public bool IsCompact;
+ public bool IsPropertyGroup;
+ public List Members = new List();
+
+ public override int CalcBodyLen() { return 0; }
+
+ public override void Render(GeneratedTextTransformation tt, bool isCompact)
+ {
+ if (!string.IsNullOrEmpty(Region))
+ {
+ BeginRegion(tt, Region);
+ tt.WriteLine("");
+ }
+
+ if (IsCompact)
+ {
+ var allMembers = GetTreeNodes(this).OfType().Where(m => !(m is MemberGroup)).ToList();
+
+ if (allMembers.Count > 0)
+ {
+ int max = allMembers.Max(m => m.AccessModifier.ToString().Length);
+ foreach (var m in allMembers)
+ m.AccessModifierLen = max;
+
+ max = allMembers.Max(m => m.CalcModifierLen());
+ foreach (var m in allMembers)
+ m.ModifierLen = max;
+
+ max = allMembers.Max(m => (m.Type ?? "").Length);
+ foreach (var m in allMembers)
+ m.TypeLen = max;
+
+ var notHasGetter = allMembers.OfType().Any(m => m.IsAuto && !m.HasGetter);
+ var notHasSetter = allMembers.OfType().Any(m => m.IsAuto && !m.HasSetter);
+
+ foreach (var p in allMembers.OfType())
+ {
+ if (notHasGetter) p.GetterLen = 13;
+ if (notHasSetter) p.SetterLen = 13;
+ }
+
+ max = allMembers.Max(m => m.Name.Length);
+ foreach (var m in allMembers)
+ m.NameLen = max;
+
+ max = allMembers.Max(m => m.CalcParamLen());
+ foreach (var m in allMembers)
+ m.ParamLen = max;
+
+ max = allMembers.Max(m => m.CalcBodyLen());
+ foreach (var m in allMembers)
+ m.BodyLen = max;
+
+ var members =
+ (
+ from m in allMembers
+ select new
+ {
+ m,
+ attrs =
+ (
+ from a in m.Attributes
+ group a by a.Name into gr
+ select gr.Select((a,i) => new { a, name = a.Name + "." + i }).ToList() into s
+ from a in s
+ select a
+ ).ToList()
+ }
+ ).ToList();
+
+ var attrWeight =
+ (
+ from m in members
+ from a in m.attrs
+ group a by a.name into gr
+ select new { gr.Key, Count = gr.Count() }
+ ).ToDictionary(a => a.Key, a => a.Count);
+
+ var q =
+ from m in members
+ where m.attrs.Count > 0
+ select new { m, w = m.attrs.Sum(aa => attrWeight[aa.name]) } into m
+ orderby m.w descending
+ select m.m;
+
+ var attrs = new List();
+
+ foreach (var m in q)
+ {
+ var list = m.attrs.Select(a => a.name).ToList();
+
+ if (attrs.Count == 0)
+ attrs.AddRange(list);
+ else
+ {
+ for (var i = 0; i < list.Count; i++)
+ {
+ var nm = list[i];
+
+ if (!attrs.Contains(nm))
+ {
+ for (var j = i + 1; j < list.Count; j++)
+ {
+ var idx = attrs.IndexOf(list[j]);
+
+ if (idx >= 0)
+ {
+ attrs.Insert(idx, nm);
+ break;
+ }
+ }
+ }
+
+ if (!attrs.Contains(nm))
+ attrs.Add(nm);
+ }
+ }
+ }
+
+ var mms = members.Select(m =>
+ {
+ var arr = new Attribute[attrs.Count];
+
+ foreach (var a in m.attrs)
+ arr[attrs.IndexOf(a.name)] = a.a;
+
+ return new { m.m, attrs = arr.ToList() };
+ }).ToList();
+
+ var idxs = Enumerable.Range(0, attrs.Count).Select(_ => new List()).ToList();
+
+ for (var i = 0; i < mms.Count; i++)
+ for (var j = 0; j < mms[i].attrs.Count; j++)
+ if (mms[i].attrs[j] != null)
+ idxs[j].Add(i);
+
+ var toRemove = new List();
+
+ for (int i = 1; i < idxs.Count; i++)
+ {
+ for (int j = 0; j < i; j++)
+ {
+ if (idxs[j] == null)
+ continue;
+
+ if (idxs[i].Intersect(idxs[j]).Count() == 0)
+ {
+ foreach (var m in mms)
+ {
+ if (m.attrs[i] != null)
+ {
+ m.attrs[j] = m.attrs[i];
+ m.attrs[i] = null;
+ }
+ }
+
+ idxs[j].AddRange(idxs[i]);
+ idxs[i] = null;
+ toRemove.Add(i);
+ break;
+ }
+ }
+
+ }
+
+ foreach (var n in toRemove.OrderByDescending(i => i))
+ foreach (var m in mms)
+ m.attrs.RemoveAt(n);
+
+ var lens = new int[attrs.Count - toRemove.Count];
+
+ foreach (var m in mms)
+ {
+ for (var i = 0; i < m.attrs.Count; i++)
+ {
+ var a = m.attrs[i];
+
+ if (a != null)
+ {
+ var len = a.Name.Length;
+
+ if (a.Parameters.Count >= 0)
+ len += a.Parameters.Sum(p => 2 + p.Length);
+
+ lens[i] = Math.Max(lens[i], len);
+ }
+ }
+ }
+
+ foreach (var m in allMembers)
+ {
+ foreach (var c in m.Comment)
+ WriteComment(tt, c);
+
+ if (attrs.Count > 0)
+ {
+ var ma = mms.First(mr => mr.m == m);
+
+ if (m.Attributes.Count > 0)
+ {
+ tt.Write("[");
+
+ for (var i = 0; i < ma.attrs.Count; i++)
+ {
+ var a = ma.attrs[i];
+
+ if (a == null)
+ {
+ tt.WriteSpaces(lens[i]);
+ if (i + 1 < ma.attrs.Count)
+ tt.Write(" ");
+ }
+ else
+ {
+ var len = tt.GenerationEnvironment.Length;
+ a.Render(tt);
+ len = (tt.GenerationEnvironment.Length - len);
+
+ var commaAdded = false;
+
+ for (var j = i + 1; j < ma.attrs.Count; j++)
+ {
+ if (ma.attrs[j] != null)
+ {
+ SkipSpacesAndInsert(tt, ", ");
+ commaAdded = true;
+ break;
+ }
+ }
+
+ if (i + 1 < ma.attrs.Count && !commaAdded)
+ tt.Write(" ");
+
+ tt.WriteSpaces(lens[i] - len);
+ }
+ }
+
+ tt.Write("] ");
+ }
+ else
+ {
+ tt.WriteSpaces(lens.Sum() + ma.attrs.Count * 2 + 1);
+ }
+ }
+
+ m.Render(tt, true);
+
+ if (!IsCompact)
+ tt.WriteLine("");
+ }
+ }
+ }
+ else
+ {
+ foreach (var cm in Members)
+ {
+ if (cm is MemberBase)
+ {
+ var m = (MemberBase)cm;
+
+ foreach (var c in m.Comment)
+ WriteComment(tt, c);
+
+ if (m.Attributes.Count > 0)
+ {
+ var q =
+ from a in m.Attributes
+ group a by a.Conditional ?? "";
+
+ foreach (var g in q)
+ {
+ if (g.Key.Length > 0)
+ {
+ tt.RemoveSpace();
+ tt.WriteLine("#if " + g.Key);
+ }
+
+ var attrs = g.ToList();
+
+ var aa = attrs.Where(a => !a.IsSeparated).ToList();
+
+ if (aa.Count > 0)
+ {
+ tt.Write("[");
+
+ for (var i = 0; i < aa.Count; i++)
+ {
+ if (i > 0) tt.Write(", ");
+ aa[i].Render(tt);
+ }
+
+ tt.WriteLine("]");
+ }
+
+ aa = attrs.Where(a => a.IsSeparated).ToList();
+
+ foreach (var a in aa)
+ {
+ tt.Write("[");
+ a.Render(tt);
+ tt.WriteLine("]");
+ }
+
+ if (g.Key.Length > 0)
+ {
+ tt.RemoveSpace();
+ tt.WriteLine("#endif");
+ }
+ }
+ }
+
+ m.Render(tt, false);
+
+ if (m.InsertBlankLineAfter)
+ tt.WriteLine("");
+ }
+ else if (cm is TypeBase)
+ {
+ var t = (TypeBase)cm;
+
+ t.Render(tt);
+ tt.WriteLine("");
+ }
+ }
+ }
+
+ tt.Trim();
+
+ if (!string.IsNullOrEmpty(Region))
+ {
+ tt.WriteLine("");
+ EndRegion(tt);
+ }
+ }
+
+ public override IEnumerable GetNodes() { return Members; }
+
+ public override void SetTree()
+ {
+ foreach (var ch in GetNodes())
+ {
+ ch.Parent = this;
+ ch.SetTree();
+ }
+ }
+}
+
+static Action WriteField = (tt,f) =>
+{
+ var am = f.AccessModifier.ToString().ToLower();
+ var mdf =
+ (f.IsStatic ? " static" : "") +
+ (f.IsReadonly ? " readonly" : "") ;
+
+ tt.Write("{0}{1}{2}{3} {4}{5} {6}",
+ am, LenDiff(f.AccessModifierLen, am),
+ mdf, LenDiff(f.ModifierLen, mdf),
+ f.Type, LenDiff(f.TypeLen, f.Type),
+ f.Name);
+
+ if (f.InitValue != null)
+ {
+ tt.Write(" = {0}", f.InitValue);
+ }
+
+ tt.Write(";");
+
+ if (!string.IsNullOrEmpty(f.EndLineComment))
+ {
+ tt.WriteSpaces(f.NameLen - f.Name.Length + f.BodyLen + f.ParamLen - 1);
+ tt.Write(" ");
+ WriteComment(tt, " " + f.EndLineComment);
+ }
+ else
+ tt.WriteLine("");
+};
+
+public partial class Field : MemberBase
+{
+ public bool IsStatic;
+ public bool IsReadonly;
+ public string InitValue;
+
+ public Field()
+ {
+ }
+
+ public Field(string type, string name)
+ {
+ Type = type;
+ Name = name;
+ }
+
+ public override int CalcModifierLen()
+ {
+ return
+ (IsStatic ? " static". Length : 0) +
+ (IsReadonly ? " readonly".Length : 0) ;
+ }
+
+ public override int CalcBodyLen() { return InitValue == null ? 1 : 4 + InitValue.Length; }
+
+ public override void Render(GeneratedTextTransformation tt, bool isCompact)
+ {
+ WriteField(tt, this);
+ }
+}
+
+static Action WriteEvent = (tt,m) =>
+{
+ var am = m.AccessModifier.ToString().ToLower();
+ var mdf =
+ (m.IsStatic ? " static" : "") +
+ (m.IsVirtual ? " virtual" : "") +
+ " event";
+
+ tt.Write("{0}{1}{2}{3} {4}{5} {6};",
+ am, LenDiff(m.AccessModifierLen, am),
+ mdf, LenDiff(m.ModifierLen, mdf),
+ m.Type, LenDiff(m.TypeLen, m.Type),
+ m.Name);
+
+ if (!string.IsNullOrEmpty(m.EndLineComment))
+ {
+ tt.WriteSpaces(m.NameLen - m.Name.Length + m.BodyLen + m.ParamLen - 1);
+ tt.Write(" ");
+ WriteComment(tt, " " + m.EndLineComment);
+ }
+ else
+ tt.WriteLine("");
+};
+
+public partial class Event : MemberBase
+{
+ public bool IsStatic;
+ public bool IsVirtual;
+
+ public Event()
+ {
+ }
+
+ public Event(string type, string name)
+ {
+ Type = type;
+ Name = name;
+ }
+
+ public override int CalcModifierLen()
+ {
+ return
+ (IsStatic ? " static". Length : 0) +
+ (IsVirtual ? " virtual".Length : 0) +
+ " event".Length;
+ }
+
+ public override int CalcBodyLen() { return 1; }
+
+ public override void Render(GeneratedTextTransformation tt, bool isCompact)
+ {
+ WriteEvent(tt, this);
+ }
+}
+
+static Action WriteProperty = (tt,p,compact) =>
+{
+ var am = p.AccessModifier.ToString().ToLower();
+// var mdf = p.IsVirtual ? " virtual" : "";
+ var mdf = p.IsAbstract ? " abstract" : p.IsVirtual ? " virtual" : p.IsOverride ? " override" : p.IsStatic ? " static" : "";
+
+ tt.Write("{0}{1}{2}{3} {4}{5} {6}",
+ am, LenDiff(p.AccessModifierLen, am),
+ mdf, LenDiff(p.ModifierLen, mdf),
+ p.Type, LenDiff(p.TypeLen, p.Type),
+ p.Name);
+
+ Action writeComment = () =>
+ {
+ if (!string.IsNullOrEmpty(p.EndLineComment))
+ {
+ tt.Write(" ");
+ WriteComment(tt, " " + p.EndLineComment);
+ }
+ else
+ tt.WriteLine("");
+ };
+
+ if (p.IsAuto)
+ {
+ tt.Write(LenDiff(p.NameLen + p.ParamLen, p.Name));
+
+ var len = tt.GenerationEnvironment.Length;
+
+ tt.Write(" { ");
+
+ if (!p.HasGetter)
+ tt.Write("private ");
+ else if (p.GetterLen == 13)
+ tt.Write(" ");
+ tt.Write("get; ");
+
+ if (!p.HasSetter)
+ tt.Write("private ");
+ else if (p.SetterLen == 13)
+ tt.Write(" ");
+ tt.Write("set; ");
+
+ tt.Write("}");
+
+ if (!string.IsNullOrEmpty(p.EndLineComment))
+ tt.WriteSpaces(p.BodyLen - (tt.GenerationEnvironment.Length - len));
+ writeComment();
+ }
+ else
+ {
+ if (compact)
+ {
+ tt.Write(LenDiff(p.NameLen + p.ParamLen, p.Name));
+
+ var len = tt.GenerationEnvironment.Length;
+
+ tt.Write(" { ");
+
+ if (p.HasGetter)
+ {
+ tt.Write("get { ");
+ foreach (var t in p.GetBody)
+ tt.Write("{0} ", t);
+ tt.Write("} ");
+ }
+
+ if (p.HasSetter)
+ {
+ tt.Write("set { ");
+ foreach (var t in p.SetBody)
+ tt.Write("{0} ", t);
+ tt.Write("} ");
+ }
+
+ tt.Write("}");
+
+ if (!string.IsNullOrEmpty(p.EndLineComment))
+ tt.WriteSpaces(p.BodyLen - (tt.GenerationEnvironment.Length - len));
+ writeComment();
+ }
+ else
+ {
+ writeComment();
+
+ tt.WriteLine("{");
+ tt.PushIndent("\t");
+
+ if (p.HasGetter)
+ {
+ if (p.GetBody.Count == 1)
+ {
+ tt.WriteLine("get {{ {0} }}", p.GetBody[0]);
+ }
+ else
+ {
+ tt.WriteLine("get");
+ tt.WriteLine("{");
+ tt.PushIndent("\t");
+
+ foreach (var t in p.GetBody)
+ tt.WriteLine(t);
+
+ tt.PopIndent();
+ tt.WriteLine("}");
+ }
+ }
+
+ if (p.HasSetter)
+ {
+ if (p.SetBody.Count == 1)
+ {
+ tt.WriteLine("set {{ {0} }}", p.SetBody[0]);
+ }
+ else
+ {
+ tt.WriteLine("set");
+ tt.WriteLine("{");
+ tt.PushIndent("\t");
+
+ foreach (var t in p.SetBody)
+ tt.WriteLine(t);
+
+ tt.PopIndent();
+ tt.WriteLine("}");
+ }
+ }
+
+ tt.PopIndent();
+ tt.WriteLine("}");
+ }
+ }
+};
+
+public partial class Property : MemberBase
+{
+ public bool IsAuto = true;
+ public string InitValue;
+ public bool IsVirtual;
+ public bool IsOverride;
+ public bool IsAbstract;
+ public bool IsStatic;
+ public bool HasGetter = true;
+ public bool HasSetter = true;
+ public List GetBody = new List();
+ public List SetBody = new List();
+
+ public int GetterLen = 5;
+ public int SetterLen = 5;
+
+ public Property()
+ {
+ }
+
+ public Property(string type, string name, IEnumerable getBody = null, IEnumerable setBody = null)
+ {
+ Type = type;
+ Name = name;
+
+ InitBody(getBody, setBody);
+ }
+
+ public override int CalcModifierLen()
+ {
+ return IsVirtual ? " virtual".Length : 0;
+ }
+
+ public override int CalcBodyLen()
+ {
+ if (IsAuto)
+ return 4 + GetterLen + SetterLen; // ' { get; set; }'
+
+ var len = " {".Length;
+
+ if (HasGetter)
+ {
+ len += " get {".Length;
+ foreach (var t in GetBody)
+ len += 1 + t.Length;
+ len += " }".Length;
+ }
+
+ if (HasSetter)
+ {
+ len += " set {".Length;
+ foreach (var t in SetBody)
+ len += 1 + t.Length;
+ len += " }".Length;
+ }
+
+ len += " }".Length;
+
+ return len;
+ }
+
+ public override void Render(GeneratedTextTransformation tt, bool isCompact)
+ {
+ if (!IsAuto && HasGetter && GetBody.Count == 1)
+ {
+ var t = GetBody[GetBody.Count - 1];
+
+ if (!t.StartsWith("return"))
+ {
+ t = "return " + t;
+
+ if (!t.EndsWith(";"))
+ t += ";";
+
+ GetBody[GetBody.Count - 1] = t;
+ }
+ }
+
+ WriteProperty(tt, this, isCompact);
+ }
+
+ public Property InitBody(IEnumerable getBody = null, IEnumerable setBody = null)
+ {
+ IsAuto = getBody == null && setBody == null;
+
+ if (getBody != null) GetBody.AddRange(getBody);
+ if (setBody != null) SetBody.AddRange(setBody);
+
+ if (!IsAuto)
+ {
+ HasGetter = getBody != null;
+ HasSetter = setBody != null;
+ }
+
+ return this;
+ }
+
+ public Property InitGetter(params string[] getBody)
+ {
+ return InitBody(getBody, null);
+ }
+}
+
+static Action WriteMethod = (tt,m,compact) =>
+{
+ var am1 = m.AccessModifier.ToString().ToLower();
+ var len1 = m.AccessModifierLen;
+ var am2 = "";
+ var len2 = 0;
+ var mdf = m.IsAbstract ? " abstract" : m.IsVirtual ? " virtual" : m.IsOverride ? " override" : m.IsStatic ? " static" : "";
+ var mlen = m.ModifierLen;
+
+ if (am1 == "partial" && mdf.Length > 0)
+ {
+ am2 = " " + am1; len2 = len1 + 1;
+ am1 = ""; len1 = 0;
+ mdf = mdf.Trim();
+ mlen--;
+ }
+
+ tt.Write("{0}{1}{2}{3}{4}{5}{6}{7}{8} {9}",
+ am1, LenDiff(len1, am1),
+ mdf, LenDiff(mlen, mdf),
+ am2, LenDiff(len2, am2),
+ m.Type == null ? "" : " ",
+ m.Type, LenDiff(m.TypeLen, m.Type ?? ""),
+ m.Name);
+
+ Action writeComment = () =>
+ {
+ if (!string.IsNullOrEmpty(m.EndLineComment))
+ {
+ tt.Write(" ");
+ WriteComment(tt, " " + m.EndLineComment);
+ }
+ else
+ tt.WriteLine("");
+ };
+
+ Action writeParams = () =>
+ {
+ tt.Write("(");
+
+ for (int i = 0; i < m.Parameters.Count; i++)
+ {
+ if (i > 0)
+ tt.Write(", ");
+ tt.Write(m.Parameters[i]);
+ }
+
+ tt.Write(")");
+ };
+
+ if (compact)
+ {
+ tt.Write(LenDiff(m.NameLen, m.Name));
+
+ var len = tt.GenerationEnvironment.Length;
+
+ writeParams();
+
+ foreach (var s in m.AfterSignature)
+ {
+ tt.Write(" ");
+ tt.Write(s);
+ }
+
+ len = tt.GenerationEnvironment.Length - len;
+
+ if (m.IsAbstract || m.AccessModifier == AccessModifier.Partial)
+ {
+ tt.Write(";");
+ len = 0;
+ }
+ else
+ {
+ tt.WriteSpaces(m.ParamLen - len);
+
+ len = tt.GenerationEnvironment.Length;
+
+ tt.Write(" {");
+
+ foreach (var t in m.Body)
+ tt.Write(" {0}", t);
+
+ tt.Write(" }");
+ }
+
+ if (!string.IsNullOrEmpty(m.EndLineComment))
+ tt.WriteSpaces(m.BodyLen - (tt.GenerationEnvironment.Length - len));
+ writeComment();
+ }
+ else
+ {
+ writeParams ();
+ writeComment();
+
+ tt.PushIndent("\t");
+ foreach (var s in m.AfterSignature)
+ tt.WriteLine(s);
+ tt.PopIndent();
+
+ tt.WriteLine("{");
+ tt.PushIndent("\t");
+
+ foreach (var t in m.Body)
+ {
+ if (t.Length > 1 && t[0] == '#')
+ {
+ tt.RemoveSpace();
+ }
+
+ tt.WriteLine(t);
+ }
+
+ tt.PopIndent();
+ tt.WriteLine("}");
+ }
+};
+
+public partial class Method : MemberBase
+{
+ public bool IsAbstract;
+ public bool IsVirtual;
+ public bool IsOverride;
+ public bool IsStatic;
+ public List AfterSignature = new List();
+ public List Parameters = new List();
+ public List Body = new List();
+
+ public Method()
+ {
+ }
+
+ public Method(string type, string name, IEnumerable parameters = null, IEnumerable body = null)
+ {
+ Type = type;
+ Name = name;
+
+ if (parameters != null) Parameters.AddRange(parameters);
+ if (body != null) Body. AddRange(body);
+ }
+
+ public override int CalcModifierLen()
+ {
+ return
+ IsAbstract ? " abstract".Length :
+ IsVirtual ? " virtual".Length :
+ IsStatic ? " static".Length : 0;
+ }
+
+ public override int CalcBodyLen()
+ {
+ if (IsAbstract || AccessModifier == AccessModifier.Partial)
+ return 1;
+
+ var len = " {".Length;
+
+ foreach (var t in Body)
+ len += 1 + t.Length;
+
+ len += " }".Length;
+
+ return len;
+ }
+
+ public override int CalcParamLen()
+ {
+ return Parameters.Sum(p => p.Length + 2);
+ }
+
+ public override void Render(GeneratedTextTransformation tt, bool isCompact)
+ {
+ WriteMethod(tt, this, isCompact);
+ }
+}
+
+static Action WriteAttribute = (tt,a) =>
+{
+ tt.Write(a.Name);
+
+ if (a.Parameters.Count > 0)
+ {
+ tt.Write("(");
+
+ for (var i = 0; i < a.Parameters.Count; i++)
+ {
+ if (i > 0)
+ if (a.Parameters[i - 1].All(c => c == ' '))
+ tt.Write(" ");
+ else
+ SkipSpacesAndInsert(tt, ", ");
+ tt.Write(a.Parameters[i]);
+ }
+
+ SkipSpacesAndInsert(tt, ")");
+ }
+};
+
+public partial class Attribute
+{
+ public string Name;
+ public List Parameters = new List();
+ public string Conditional;
+ public bool IsSeparated;
+
+ public Attribute()
+ {
+ }
+
+ public Attribute(string name, params string[] ps)
+ {
+ Name = name;
+ Parameters.AddRange(ps);
+ }
+
+ public virtual void Render(GeneratedTextTransformation tt)
+ {
+ WriteAttribute(tt, this);
+ }
+}
+
+// Helpers.
+//
+
+Func ToPlural = s => s + "s";
+Func ToSingular = s => s;
+
+static string LenDiff(int max, string str)
+{
+ var s = "";
+
+ while (max-- > str.Length)
+ s += " ";
+
+ return s;
+}
+
+public void WriteSpaces(int len)
+{
+ while (len-- > 0)
+ Write(" ");
+}
+
+void RemoveSpace()
+{
+ Write(" ");
+
+ while (GenerationEnvironment.Length > 0 &&
+ (GenerationEnvironment[GenerationEnvironment.Length - 1] == ' ' ||
+ GenerationEnvironment[GenerationEnvironment.Length - 1] == '\t'))
+ GenerationEnvironment.Length--;
+}
+
+public static IEnumerable GetTreeNodes(ITree parent)
+{
+ foreach (var node in parent.GetNodes())
+ {
+ yield return node;
+
+ foreach (var grandNode in GetTreeNodes(node))
+ yield return grandNode;
+ }
+}
+
+public static ITree FindNode(ITree parent, Func func)
+{
+ foreach (var node in parent.GetNodes())
+ {
+ if (func(node))
+ return node;
+
+ var n = FindNode(node, func);
+
+ if (n != null)
+ return n;
+ }
+
+ return null;
+}
+
+static void SkipSpacesAndInsert(GeneratedTextTransformation tt, string value)
+{
+ var l = tt.GenerationEnvironment.Length;
+
+ for (; l > 0 && tt.GenerationEnvironment[l - 1] == ' '; l--)
+ {
+ }
+
+ tt.GenerationEnvironment.Insert(l, value);
+}
+
+
+string ToCamelCase(string name)
+{
+ var n = 0;
+
+ foreach (var c in name)
+ {
+ if (char.IsUpper(c))
+ n++;
+ else
+ break;
+ }
+
+ if (n == 0)
+ return name;
+
+ if (n == name.Length)
+ return name.ToLower();
+
+ n = Math.Max(1, n - 1);
+
+ return name.Substring(0, n).ToLower() + name.Substring(n);
+}
+
+event Action SetPropertyValueAction;
+
+void SetPropertyValue(Property propertyObject, string propertyName, object value)
+{
+ if (SetPropertyValueAction != null)
+ SetPropertyValueAction(propertyObject, propertyName, value);
+}
+#>
diff --git a/AntData/AntData.DbModels.linux/code.gen/tools/Arch.Data.ORM.CodeGen.dll b/AntData/AntData.DbModels.linux/code.gen/tools/Arch.Data.ORM.CodeGen.dll
new file mode 100644
index 0000000..9b56526
Binary files /dev/null and b/AntData/AntData.DbModels.linux/code.gen/tools/Arch.Data.ORM.CodeGen.dll differ
diff --git a/AntData/AntData.DbModels.linux/code.gen/tools/MySql.Data.dll b/AntData/AntData.DbModels.linux/code.gen/tools/MySql.Data.dll
new file mode 100644
index 0000000..6bf3262
Binary files /dev/null and b/AntData/AntData.DbModels.linux/code.gen/tools/MySql.Data.dll differ
diff --git a/AntData/AntData.DbModels.linux/code.gen/tools/Npgsql.dll b/AntData/AntData.DbModels.linux/code.gen/tools/Npgsql.dll
new file mode 100644
index 0000000..22fcf0b
Binary files /dev/null and b/AntData/AntData.DbModels.linux/code.gen/tools/Npgsql.dll differ
diff --git a/AntData/AntData.DbModels.linux/code.gen/tools/Oracle.ManagedDataAccess.dll b/AntData/AntData.DbModels.linux/code.gen/tools/Oracle.ManagedDataAccess.dll
new file mode 100644
index 0000000..88c2671
Binary files /dev/null and b/AntData/AntData.DbModels.linux/code.gen/tools/Oracle.ManagedDataAccess.dll differ
diff --git a/AntData/AntData.DbModels.linux/project.json b/AntData/AntData.DbModels.linux/project.json
deleted file mode 100644
index 3b80da5..0000000
--- a/AntData/AntData.DbModels.linux/project.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "version": "1.0.0-*",
- "dependencies": {
- "AntData.Core": "1.0.0"
- },
- "frameworks": {
- "netstandard1.6": {
- "buildOptions": {
- "define": [ "NETSTANDARD" ],
- "compile": {
- "exclude": [
- ]
- }
- },
- "dependencies": {
-
- }
- }
- }
-}
diff --git a/AntData/AntData.DbModels.linux/project.lock.json b/AntData/AntData.DbModels.linux/project.lock.json
deleted file mode 100644
index 2267aad..0000000
--- a/AntData/AntData.DbModels.linux/project.lock.json
+++ /dev/null
@@ -1,6415 +0,0 @@
-{
- "locked": false,
- "version": 2,
- "targets": {
- ".NETStandard,Version=v1.6": {
- "Microsoft.CSharp/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "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.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.0/Microsoft.CSharp.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {}
- }
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "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/9.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "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.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography/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.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win7-x64/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x64"
- }
- }
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win7-x86/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x86"
- }
- }
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.1/_._": {}
- },
- "runtime": {
- "lib/netstandard1.1/System.Buffers.dll": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
- }
- },
- "System.Collections.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.NonGeneric/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- },
- "runtime": {
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Console/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Data.Common": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Pipes": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection": "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.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "runtime.native.System.Data.SqlClient.sni": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Data.SqlClient.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/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/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.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.TraceSource/4.0.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.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.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.Dynamic.Runtime/4.0.11": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.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.IO.Pipes/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "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.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Overlapped": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.1.0": {
- "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.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Linq.Queryable.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Linq.Queryable.dll": {}
- }
- },
- "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.NameResolution/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.NetworkInformation/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "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.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "linux"
- },
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {}
- }
- },
- "System.Net.Security/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {}
- }
- },
- "System.ObjectModel/4.0.12": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "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.0.1": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.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.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.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.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/netstandard1.5/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.Loader/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.Loader.dll": {}
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Runtime.Serialization.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.Claims/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.Security.Principal": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Claims.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.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.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Principal/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {}
- }
- },
- "System.Security.Principal.Windows/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "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.Claims": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/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/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/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.Overlapped/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
- }
- },
- "System.Threading.Thread/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {}
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.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": {}
- }
- },
- "System.Xml.XmlDocument/4.0.1": {
- "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.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.XmlDocument.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
- }
- },
- "AntData.Core/1.0.0": {
- "type": "project",
- "framework": ".NETStandard,Version=v1.6",
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "NETStandard.Library": "1.6.0",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Data.Common": "4.3.0",
- "System.Data.SqlClient": "4.3.0",
- "System.Diagnostics.TraceSource": "4.0.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NetworkInformation": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "compile": {
- "netstandard1.6/AntData.core.dll": {}
- },
- "runtime": {
- "netstandard1.6/AntData.core.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
- "type": "package",
- "path": "Microsoft.CSharp/4.0.1",
- "files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
- "Microsoft.CSharp.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.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/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/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/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
- "type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
- "files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
- ]
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
- "type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
- "files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.DependencyModel.nuspec",
- "lib/net451/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "Microsoft.NETCore.Platforms/1.1.0",
- "files": [
- "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Platforms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "Microsoft.NETCore.Targets/1.1.0",
- "files": [
- "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Targets.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "type": "package",
- "path": "Microsoft.Win32.Primitives/4.3.0",
- "files": [
- "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
- "Microsoft.Win32.Primitives.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "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/_._"
- ]
- },
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
- "type": "package",
- "path": "NETStandard.Library/1.6.0",
- "files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
- "NETStandard.Library.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt"
- ]
- },
- "Newtonsoft.Json/9.0.1": {
- "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
- "type": "package",
- "path": "Newtonsoft.Json/9.0.1",
- "files": [
- "Newtonsoft.Json.9.0.1.nupkg.sha512",
- "Newtonsoft.Json.nuspec",
- "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/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "tools/install.ps1"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.System/4.3.0",
- "files": [
- "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.3.0": {
- "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
- "type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.native.System.Data.SqlClient.sni.nuspec"
- ]
- },
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
- "type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
- "files": [
- "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.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.System.Net.Http/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Http.nuspec"
- ]
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "type": "package",
- "path": "runtime.native.System.Net.Security/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Security.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
- "files": [
- "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.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.Apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
- "type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x64/native/sni.dll"
- ]
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
- "type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x86/native/sni.dll"
- ]
- },
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
- "type": "package",
- "path": "System.AppContext/4.1.0",
- "files": [
- "System.AppContext.4.1.0.nupkg.sha512",
- "System.AppContext.nuspec",
- "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.Buffers/4.3.0": {
- "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "type": "package",
- "path": "System.Buffers/4.3.0",
- "files": [
- "System.Buffers.4.3.0.nupkg.sha512",
- "System.Buffers.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.1/.xml",
- "lib/netstandard1.1/System.Buffers.dll"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "System.Collections/4.3.0",
- "files": [
- "System.Collections.4.3.0.nupkg.sha512",
- "System.Collections.nuspec",
- "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.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "System.Collections.Concurrent/4.3.0",
- "files": [
- "System.Collections.Concurrent.4.3.0.nupkg.sha512",
- "System.Collections.Concurrent.nuspec",
- "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.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
- "files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
- "System.Collections.NonGeneric.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/netstandard1.3/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "type": "package",
- "path": "System.Collections.Specialized/4.0.1",
- "files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
- "System.Collections.Specialized.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/netstandard1.3/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.xml",
- "ref/netstandard1.3/de/System.Collections.Specialized.xml",
- "ref/netstandard1.3/es/System.Collections.Specialized.xml",
- "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
- "ref/netstandard1.3/it/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "type": "package",
- "path": "System.ComponentModel/4.0.1",
- "files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
- "System.ComponentModel.nuspec",
- "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.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
- "type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
- "files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
- "System.ComponentModel.Annotations.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.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/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/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/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
- "files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
- "System.ComponentModel.Primitives.nuspec",
- "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.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
- "files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
- "System.ComponentModel.TypeConverter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.ComponentModel.TypeConverter.dll",
- "lib/net462/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.ComponentModel.TypeConverter.dll",
- "ref/net462/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
- "type": "package",
- "path": "System.Console/4.0.0",
- "files": [
- "System.Console.4.0.0.nupkg.sha512",
- "System.Console.nuspec",
- "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.Data.Common/4.3.0": {
- "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
- "type": "package",
- "path": "System.Data.Common/4.3.0",
- "files": [
- "System.Data.Common.4.3.0.nupkg.sha512",
- "System.Data.Common.nuspec",
- "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.SqlClient/4.3.0": {
- "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
- "type": "package",
- "path": "System.Data.SqlClient/4.3.0",
- "files": [
- "System.Data.SqlClient.4.3.0.nupkg.sha512",
- "System.Data.SqlClient.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/System.Data.SqlClient.dll",
- "lib/net46/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/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/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/win/lib/net451/System.Data.SqlClient.dll",
- "runtimes/win/lib/net46/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "System.Diagnostics.Debug/4.3.0",
- "files": [
- "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
- "System.Diagnostics.Debug.nuspec",
- "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.DiagnosticSource/4.3.0": {
- "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.3.0",
- "files": [
- "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
- "System.Diagnostics.DiagnosticSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
- ]
- },
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
- "type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
- "files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
- "System.Diagnostics.Tools.nuspec",
- "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.TraceSource/4.0.0": {
- "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
- "type": "package",
- "path": "System.Diagnostics.TraceSource/4.0.0",
- "files": [
- "System.Diagnostics.TraceSource.4.0.0.nupkg.sha512",
- "System.Diagnostics.TraceSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TraceSource.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "System.Diagnostics.Tracing/4.3.0",
- "files": [
- "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
- "System.Diagnostics.Tracing.nuspec",
- "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.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
- "type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
- "files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
- "System.Dynamic.Runtime.nuspec",
- "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.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "System.Globalization/4.3.0",
- "files": [
- "System.Globalization.4.3.0.nupkg.sha512",
- "System.Globalization.nuspec",
- "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.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "System.Globalization.Calendars/4.3.0",
- "files": [
- "System.Globalization.Calendars.4.3.0.nupkg.sha512",
- "System.Globalization.Calendars.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "System.Globalization.Extensions/4.3.0",
- "files": [
- "System.Globalization.Extensions.4.3.0.nupkg.sha512",
- "System.Globalization.Extensions.nuspec",
- "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.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "System.IO/4.3.0",
- "files": [
- "System.IO.4.3.0.nupkg.sha512",
- "System.IO.nuspec",
- "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.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
- "type": "package",
- "path": "System.IO.Compression/4.1.0",
- "files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
- "System.IO.Compression.nuspec",
- "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.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
- "type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
- "files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
- "System.IO.Compression.ZipFile.nuspec",
- "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.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "System.IO.FileSystem/4.3.0",
- "files": [
- "System.IO.FileSystem.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "System.IO.FileSystem.Primitives/4.3.0",
- "files": [
- "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.Primitives.nuspec",
- "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.Pipes/4.3.0": {
- "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
- "type": "package",
- "path": "System.IO.Pipes/4.3.0",
- "files": [
- "System.IO.Pipes.4.3.0.nupkg.sha512",
- "System.IO.Pipes.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.IO.Pipes.dll",
- "ref/net46/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.xml",
- "ref/netstandard1.3/de/System.IO.Pipes.xml",
- "ref/netstandard1.3/es/System.IO.Pipes.xml",
- "ref/netstandard1.3/fr/System.IO.Pipes.xml",
- "ref/netstandard1.3/it/System.IO.Pipes.xml",
- "ref/netstandard1.3/ja/System.IO.Pipes.xml",
- "ref/netstandard1.3/ko/System.IO.Pipes.xml",
- "ref/netstandard1.3/ru/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml",
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win/lib/net46/System.IO.Pipes.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "System.Linq/4.3.0",
- "files": [
- "System.Linq.4.3.0.nupkg.sha512",
- "System.Linq.nuspec",
- "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.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
- "type": "package",
- "path": "System.Linq.Expressions/4.1.0",
- "files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
- "System.Linq.Expressions.nuspec",
- "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.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "type": "package",
- "path": "System.Linq.Queryable/4.0.1",
- "files": [
- "System.Linq.Queryable.4.0.1.nupkg.sha512",
- "System.Linq.Queryable.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/netstandard1.3/System.Linq.Queryable.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.Queryable.dll",
- "ref/netcore50/System.Linq.Queryable.xml",
- "ref/netcore50/de/System.Linq.Queryable.xml",
- "ref/netcore50/es/System.Linq.Queryable.xml",
- "ref/netcore50/fr/System.Linq.Queryable.xml",
- "ref/netcore50/it/System.Linq.Queryable.xml",
- "ref/netcore50/ja/System.Linq.Queryable.xml",
- "ref/netcore50/ko/System.Linq.Queryable.xml",
- "ref/netcore50/ru/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
- "ref/netstandard1.0/System.Linq.Queryable.dll",
- "ref/netstandard1.0/System.Linq.Queryable.xml",
- "ref/netstandard1.0/de/System.Linq.Queryable.xml",
- "ref/netstandard1.0/es/System.Linq.Queryable.xml",
- "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
- "ref/netstandard1.0/it/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
- "type": "package",
- "path": "System.Net.Http/4.1.0",
- "files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
- "System.Net.Http.nuspec",
- "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.NameResolution/4.3.0": {
- "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "type": "package",
- "path": "System.Net.NameResolution/4.3.0",
- "files": [
- "System.Net.NameResolution.4.3.0.nupkg.sha512",
- "System.Net.NameResolution.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.NameResolution.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.xml",
- "ref/netstandard1.3/de/System.Net.NameResolution.xml",
- "ref/netstandard1.3/es/System.Net.NameResolution.xml",
- "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
- "ref/netstandard1.3/it/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
- "runtimes/win/lib/net46/System.Net.NameResolution.dll",
- "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
- ]
- },
- "System.Net.NetworkInformation/4.1.0": {
- "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
- "type": "package",
- "path": "System.Net.NetworkInformation/4.1.0",
- "files": [
- "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
- "System.Net.NetworkInformation.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.NetworkInformation.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.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.xml",
- "ref/netcore50/de/System.Net.NetworkInformation.xml",
- "ref/netcore50/es/System.Net.NetworkInformation.xml",
- "ref/netcore50/fr/System.Net.NetworkInformation.xml",
- "ref/netcore50/it/System.Net.NetworkInformation.xml",
- "ref/netcore50/ja/System.Net.NetworkInformation.xml",
- "ref/netcore50/ko/System.Net.NetworkInformation.xml",
- "ref/netcore50/ru/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/System.Net.NetworkInformation.dll",
- "ref/netstandard1.0/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/System.Net.NetworkInformation.dll",
- "ref/netstandard1.3/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "System.Net.Primitives/4.3.0",
- "files": [
- "System.Net.Primitives.4.3.0.nupkg.sha512",
- "System.Net.Primitives.nuspec",
- "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.Security/4.3.0": {
- "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "type": "package",
- "path": "System.Net.Security/4.3.0",
- "files": [
- "System.Net.Security.4.3.0.nupkg.sha512",
- "System.Net.Security.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Security.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.xml",
- "ref/netstandard1.3/de/System.Net.Security.xml",
- "ref/netstandard1.3/es/System.Net.Security.xml",
- "ref/netstandard1.3/fr/System.Net.Security.xml",
- "ref/netstandard1.3/it/System.Net.Security.xml",
- "ref/netstandard1.3/ja/System.Net.Security.xml",
- "ref/netstandard1.3/ko/System.Net.Security.xml",
- "ref/netstandard1.3/ru/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
- "runtimes/win/lib/net46/System.Net.Security.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Net.Sockets/4.3.0": {
- "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "type": "package",
- "path": "System.Net.Sockets/4.3.0",
- "files": [
- "System.Net.Sockets.4.3.0.nupkg.sha512",
- "System.Net.Sockets.nuspec",
- "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.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
- "type": "package",
- "path": "System.ObjectModel/4.0.12",
- "files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
- "System.ObjectModel.nuspec",
- "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.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "System.Reflection/4.3.0",
- "files": [
- "System.Reflection.4.3.0.nupkg.sha512",
- "System.Reflection.nuspec",
- "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.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
- "type": "package",
- "path": "System.Reflection.Emit/4.0.1",
- "files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
- "System.Reflection.Emit.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinmac20/_._",
- "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.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.3.0",
- "files": [
- "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.ILGeneration.nuspec",
- "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.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.3.0",
- "files": [
- "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.Lightweight.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "System.Reflection.Extensions/4.3.0",
- "files": [
- "System.Reflection.Extensions.4.3.0.nupkg.sha512",
- "System.Reflection.Extensions.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "System.Reflection.Primitives/4.3.0",
- "files": [
- "System.Reflection.Primitives.4.3.0.nupkg.sha512",
- "System.Reflection.Primitives.nuspec",
- "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.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "System.Reflection.TypeExtensions/4.3.0",
- "files": [
- "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
- "System.Reflection.TypeExtensions.nuspec",
- "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.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "System.Resources.ResourceManager/4.3.0",
- "files": [
- "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
- "System.Resources.ResourceManager.nuspec",
- "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.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "System.Runtime/4.3.0",
- "files": [
- "System.Runtime.4.3.0.nupkg.sha512",
- "System.Runtime.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "System.Runtime.Extensions/4.3.0",
- "files": [
- "System.Runtime.Extensions.4.3.0.nupkg.sha512",
- "System.Runtime.Extensions.nuspec",
- "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.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "System.Runtime.Handles/4.3.0",
- "files": [
- "System.Runtime.Handles.4.3.0.nupkg.sha512",
- "System.Runtime.Handles.nuspec",
- "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.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "System.Runtime.InteropServices/4.3.0",
- "files": [
- "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.nuspec",
- "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.RuntimeInformation/4.3.0": {
- "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
- "files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.RuntimeInformation.nuspec",
- "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.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "type": "package",
- "path": "System.Runtime.Loader/4.0.0",
- "files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
- "System.Runtime.Loader.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net462/_._",
- "lib/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.xml",
- "ref/netstandard1.5/de/System.Runtime.Loader.xml",
- "ref/netstandard1.5/es/System.Runtime.Loader.xml",
- "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
- "ref/netstandard1.5/it/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "System.Runtime.Numerics/4.3.0",
- "files": [
- "System.Runtime.Numerics.4.3.0.nupkg.sha512",
- "System.Runtime.Numerics.nuspec",
- "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.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": [
- "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
- "System.Runtime.Serialization.Primitives.nuspec",
- "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.Security.Claims/4.3.0": {
- "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "type": "package",
- "path": "System.Security.Claims/4.3.0",
- "files": [
- "System.Security.Claims.4.3.0.nupkg.sha512",
- "System.Security.Claims.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Claims.dll",
- "lib/netstandard1.3/System.Security.Claims.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.xml",
- "ref/netstandard1.3/de/System.Security.Claims.xml",
- "ref/netstandard1.3/es/System.Security.Claims.xml",
- "ref/netstandard1.3/fr/System.Security.Claims.xml",
- "ref/netstandard1.3/it/System.Security.Claims.xml",
- "ref/netstandard1.3/ja/System.Security.Claims.xml",
- "ref/netstandard1.3/ko/System.Security.Claims.xml",
- "ref/netstandard1.3/ru/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.3.0",
- "files": [
- "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Algorithms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "System.Security.Cryptography.Cng/4.3.0",
- "files": [
- "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Cng.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/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"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "System.Security.Cryptography.Csp/4.3.0",
- "files": [
- "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Csp.nuspec",
- "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.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "System.Security.Cryptography.Encoding/4.3.0",
- "files": [
- "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Encoding.nuspec",
- "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.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.OpenSsl.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "type": "package",
- "path": "System.Security.Cryptography.Primitives/4.3.0",
- "files": [
- "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Primitives.nuspec",
- "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.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.3.0",
- "files": [
- "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.X509Certificates.nuspec",
- "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.Principal/4.3.0": {
- "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "type": "package",
- "path": "System.Security.Principal/4.3.0",
- "files": [
- "System.Security.Principal.4.3.0.nupkg.sha512",
- "System.Security.Principal.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Security.Principal.dll",
- "lib/netstandard1.0/System.Security.Principal.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.Security.Principal.dll",
- "ref/netcore50/System.Security.Principal.xml",
- "ref/netcore50/de/System.Security.Principal.xml",
- "ref/netcore50/es/System.Security.Principal.xml",
- "ref/netcore50/fr/System.Security.Principal.xml",
- "ref/netcore50/it/System.Security.Principal.xml",
- "ref/netcore50/ja/System.Security.Principal.xml",
- "ref/netcore50/ko/System.Security.Principal.xml",
- "ref/netcore50/ru/System.Security.Principal.xml",
- "ref/netcore50/zh-hans/System.Security.Principal.xml",
- "ref/netcore50/zh-hant/System.Security.Principal.xml",
- "ref/netstandard1.0/System.Security.Principal.dll",
- "ref/netstandard1.0/System.Security.Principal.xml",
- "ref/netstandard1.0/de/System.Security.Principal.xml",
- "ref/netstandard1.0/es/System.Security.Principal.xml",
- "ref/netstandard1.0/fr/System.Security.Principal.xml",
- "ref/netstandard1.0/it/System.Security.Principal.xml",
- "ref/netstandard1.0/ja/System.Security.Principal.xml",
- "ref/netstandard1.0/ko/System.Security.Principal.xml",
- "ref/netstandard1.0/ru/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Principal.Windows/4.3.0": {
- "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
- "type": "package",
- "path": "System.Security.Principal.Windows/4.3.0",
- "files": [
- "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
- "System.Security.Principal.Windows.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Principal.Windows.dll",
- "ref/net46/System.Security.Principal.Windows.dll",
- "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",
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "System.Text.Encoding/4.3.0",
- "files": [
- "System.Text.Encoding.4.3.0.nupkg.sha512",
- "System.Text.Encoding.nuspec",
- "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.CodePages/4.3.0": {
- "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
- "type": "package",
- "path": "System.Text.Encoding.CodePages/4.3.0",
- "files": [
- "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
- "System.Text.Encoding.CodePages.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
- ]
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "type": "package",
- "path": "System.Text.Encoding.Extensions/4.3.0",
- "files": [
- "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
- "System.Text.Encoding.Extensions.nuspec",
- "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.RegularExpressions/4.3.0": {
- "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "type": "package",
- "path": "System.Text.RegularExpressions/4.3.0",
- "files": [
- "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
- "System.Text.RegularExpressions.nuspec",
- "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.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "System.Threading/4.3.0",
- "files": [
- "System.Threading.4.3.0.nupkg.sha512",
- "System.Threading.nuspec",
- "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.Overlapped/4.3.0": {
- "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
- "type": "package",
- "path": "System.Threading.Overlapped/4.3.0",
- "files": [
- "System.Threading.Overlapped.4.3.0.nupkg.sha512",
- "System.Threading.Overlapped.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Threading.Overlapped.dll",
- "ref/net46/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
- "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "System.Threading.Tasks/4.3.0",
- "files": [
- "System.Threading.Tasks.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "type": "package",
- "path": "System.Threading.Tasks.Extensions/4.3.0",
- "files": [
- "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.Extensions.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.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"
- ]
- },
- "System.Threading.Thread/4.3.0": {
- "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "type": "package",
- "path": "System.Threading.Thread/4.3.0",
- "files": [
- "System.Threading.Thread.4.3.0.nupkg.sha512",
- "System.Threading.Thread.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.xml",
- "ref/netstandard1.3/de/System.Threading.Thread.xml",
- "ref/netstandard1.3/es/System.Threading.Thread.xml",
- "ref/netstandard1.3/fr/System.Threading.Thread.xml",
- "ref/netstandard1.3/it/System.Threading.Thread.xml",
- "ref/netstandard1.3/ja/System.Threading.Thread.xml",
- "ref/netstandard1.3/ko/System.Threading.Thread.xml",
- "ref/netstandard1.3/ru/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.ThreadPool/4.3.0": {
- "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "type": "package",
- "path": "System.Threading.ThreadPool/4.3.0",
- "files": [
- "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
- "System.Threading.ThreadPool.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.Timer/4.3.0": {
- "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "type": "package",
- "path": "System.Threading.Timer/4.3.0",
- "files": [
- "System.Threading.Timer.4.3.0.nupkg.sha512",
- "System.Threading.Timer.nuspec",
- "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.Xml.ReaderWriter/4.3.0": {
- "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "type": "package",
- "path": "System.Xml.ReaderWriter/4.3.0",
- "files": [
- "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
- "System.Xml.ReaderWriter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Xml.ReaderWriter.dll",
- "lib/netcore50/System.Xml.ReaderWriter.dll",
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.xml",
- "ref/netcore50/de/System.Xml.ReaderWriter.xml",
- "ref/netcore50/es/System.Xml.ReaderWriter.xml",
- "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
- "ref/netcore50/it/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
- "type": "package",
- "path": "System.Xml.XDocument/4.0.11",
- "files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
- "System.Xml.XDocument.nuspec",
- "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.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "type": "package",
- "path": "System.Xml.XmlDocument/4.0.1",
- "files": [
- "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
- "System.Xml.XmlDocument.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/netstandard1.3/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "AntData.Core/1.0.0": {
- "type": "project",
- "path": "../AntData.ORM/project.json",
- "msbuildProject": "../AntData.ORM/AntData.core.xproj"
- }
- },
- "projectFileDependencyGroups": {
- "": [
- "AntData.Core >= 1.0.0"
- ],
- ".NETStandard,Version=v1.6": []
- },
- "tools": {},
- "projectFileToolGroups": {}
-}
\ No newline at end of file
diff --git a/AntData/AntData.DbModels/Templates/LinqToDB.ttinclude b/AntData/AntData.DbModels/Templates/LinqToDB.ttinclude
index 0c597a0..7830291 100644
--- a/AntData/AntData.DbModels/Templates/LinqToDB.ttinclude
+++ b/AntData/AntData.DbModels/Templates/LinqToDB.ttinclude
@@ -20,9 +20,8 @@ bool IsCompactColumnAliases = true;
bool GenerateDataTypes = false;
bool GenerateDbTypes = false;
bool GenerateSchemaAsType = false;
-bool GenerateFkByTableName = true;
-bool GenerateProcedures = false;
-
+bool GenerateFkByTableName = true;
+bool GenerateProcedures = false;
bool IsOracle = false;
string SchemaNameSuffix = "Schema";
diff --git a/AntData/AntData.ORM.Mysql/1project.json b/AntData/AntData.ORM.Mysql/1project.json
deleted file mode 100644
index da3b7e7..0000000
--- a/AntData/AntData.ORM.Mysql/1project.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "name": "AntData.Core.Mysql",
- "version": "1.2.5",
- "authors": [ "nainaigu" ],
- "description": "AntData.Orm mysql For Dotnet Core",
- "packOptions": {
- "licenseUrl": "https://github.com/yuzd/AntData.ORM/blob/master/MIT-LICENSE.txt",
- "projectUrl": "https://github.com/yuzd/AntData.ORM",
- "tags": [
- "linq",
- "ORM",
- "mysql"
- ]
- },
- "dependencies": {
- "AntData.Core": "1.2.6",
- "NETStandard.Library": "1.6.0",
- "MySql.Data": "7.0.7-m61"
-
- },
- "buildOptions": {
- "outputName": "AntData.ORM.Mysql",
- "embed": [ "**/*.resx", "**/*.txt" ],
- "define": [ "NETSTANDARD" ]
- },
-
- "frameworks": {
- "netstandard1.6": {
- "buildOptions": {
- "define": [ "NETSTANDARD" ],
- "compile": {
- "exclude": [
- ]
- }
- },
- "dependencies": {
-
- }
- }
- }
-}
diff --git a/AntData/AntData.ORM.Mysql/1project.lock.json b/AntData/AntData.ORM.Mysql/1project.lock.json
deleted file mode 100644
index 002ba66..0000000
--- a/AntData/AntData.ORM.Mysql/1project.lock.json
+++ /dev/null
@@ -1,7016 +0,0 @@
-{
- "locked": false,
- "version": 1,
- "targets": {
- ".NETStandard,Version=v1.6": {
- "AntData.Core/1.2.6": {
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "NETStandard.Library": "1.6.0",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Data.Common": "4.3.0",
- "System.Data.SqlClient": "4.3.0",
- "System.Diagnostics.TraceSource": "4.0.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NetworkInformation": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "compile": {
- "lib/netstandard1.6/AntData.ORM.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/AntData.ORM.dll": {}
- }
- },
- "Google.Protobuf/3.0.0": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Google.Protobuf.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Google.Protobuf.dll": {}
- }
- },
- "Microsoft.CSharp/4.0.1": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "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.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.0/Microsoft.CSharp.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {}
- }
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "dependencies": {
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
- },
- "compile": {
- "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/1.0.0": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "Microsoft.Win32.Registry/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "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"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "MySql.Data/7.0.7-m61": {
- "dependencies": {
- "Google.Protobuf": "3.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "System.Collections.NonGeneric": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Data.Common": "4.1.0",
- "System.Data.SqlClient": "4.1.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Diagnostics.TextWriterTraceListener": "4.0.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.Pipes": "4.0.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Security": "4.0.0",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Text.Encoding.CodePages": "4.0.1",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
- },
- "compile": {
- "lib/netstandard1.6/MySql.Data.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/MySql.Data.dll": {}
- }
- },
- "NETStandard.Library/1.6.0": {
- "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/9.0.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "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.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "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.3.0": {
- "dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.0"
- }
- },
- "runtime.native.System.IO.Compression/4.1.0": {
- "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.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "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.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "runtimeTargets": {
- "runtimes/win7-x64/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x64"
- }
- }
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "runtimeTargets": {
- "runtimes/win7-x86/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x86"
- }
- }
- },
- "System.AppContext/4.1.0": {
- "dependencies": {
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.6/System.AppContext.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.AppContext.dll": {}
- }
- },
- "System.Buffers/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.1/_._": {}
- },
- "runtime": {
- "lib/netstandard1.1/System.Buffers.dll": {}
- }
- },
- "System.Collections/4.3.0": {
- "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": {
- "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.NonGeneric/4.0.1": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.0.1": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.0.1": {
- "dependencies": {
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.1.0": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- },
- "runtime": {
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Console/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Console.dll": {}
- }
- },
- "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"
- },
- "compile": {
- "ref/netstandard1.2/System.Data.Common.dll": {}
- },
- "runtime": {
- "lib/netstandard1.2/System.Data.Common.dll": {}
- }
- },
- "System.Data.SqlClient/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Data.Common": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Pipes": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection": "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.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "runtime.native.System.Data.SqlClient.sni": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Data.SqlClient.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
- }
- },
- "System.Diagnostics.Process/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "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.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {
- "assetType": "runtime",
- "rid": "linux"
- },
- "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.TextWriterTraceListener/4.0.0": {
- "dependencies": {
- "System.Diagnostics.TraceSource": "4.0.0",
- "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"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.0.1": {
- "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.TraceSource/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "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.Dynamic.Runtime/4.0.11": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO/4.3.0": {
- "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": {
- "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": {
- "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": {
- "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": {
- "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.IO.FileSystem.Watcher/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "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.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
- "assetType": "runtime",
- "rid": "linux"
- },
- "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO.MemoryMappedFiles/4.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "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.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO.Pipes/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "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.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Overlapped": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.Pipes.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
- }
- },
- "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"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.1.0": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Linq.Queryable.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Linq.Queryable.dll": {}
- }
- },
- "System.Net.Http/4.1.0": {
- "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.NameResolution/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.NameResolution.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.NetworkInformation/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "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.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "linux"
- },
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {}
- }
- },
- "System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Security.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {}
- }
- },
- "System.ObjectModel/4.0.12": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {}
- }
- },
- "System.Reflection.Emit/4.0.1": {
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Reflection.Emit.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "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": {
- "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": {
- "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.Primitives/4.3.0": {
- "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": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "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": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "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": {
- "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": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
- }
- },
- "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"
- },
- "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.Loader/4.0.0": {
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.Loader.dll": {}
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "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.Claims/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.Security.Principal": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Claims.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Claims.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.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.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Principal/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Security.Principal.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {}
- }
- },
- "System.Security.Principal.Windows/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "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.Claims": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {}
- }
- },
- "System.Text.Encoding.CodePages/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.3.0": {
- "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.Overlapped/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "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.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
- }
- },
- "System.Threading.Thread/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {}
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.0.11": {
- "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": {}
- }
- },
- "System.Xml.XmlDocument/4.0.1": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "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.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.XmlDocument.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
- }
- }
- }
- },
- "libraries": {
- "AntData.Core/1.2.6": {
- "sha512": "ZMlZ4Q5L5BXf77CJEpUBkKUaMWhtFz4dQJFpxO9J1vKH0+SEQIQOWKYDUvHXpSh7nY2YbEO2QrYqej5nMlycSQ==",
- "type": "package",
- "path": "AntData.Core/1.2.6",
- "files": [
- "AntData.Core.1.2.6.nupkg.sha512",
- "AntData.Core.nuspec",
- "lib/netstandard1.6/AntData.ORM.dll"
- ]
- },
- "Google.Protobuf/3.0.0": {
- "sha512": "dR2aOri7pW74e1mKgA7/+ocXnfDIW5fb+FrexPsxA9xx8EijQQp7ps09llRoF+M3D75GFVhusjlIMQ5We+ow/w==",
- "type": "package",
- "path": "Google.Protobuf/3.0.0",
- "files": [
- "Google.Protobuf.3.0.0.nupkg.sha512",
- "Google.Protobuf.nuspec",
- "lib/net45/Google.Protobuf.dll",
- "lib/net45/Google.Protobuf.xml",
- "lib/netstandard1.0/Google.Protobuf.dll",
- "lib/netstandard1.0/Google.Protobuf.xml"
- ]
- },
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
- "type": "package",
- "path": "Microsoft.CSharp/4.0.1",
- "files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
- "Microsoft.CSharp.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.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/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/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/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
- "type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
- "files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
- ]
- },
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
- "type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
- "files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.Configuration.nuspec",
- "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
- "type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
- "files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.Configuration.Abstractions.nuspec",
- "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
- ]
- },
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
- "type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
- "files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.Configuration.FileExtensions.nuspec",
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
- ]
- },
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
- "type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
- "files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.Configuration.Json.nuspec",
- "lib/net451/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net451/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
- ]
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
- "type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
- "files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.DependencyModel.nuspec",
- "lib/net451/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
- ]
- },
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
- "type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
- "files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.FileProviders.Abstractions.nuspec",
- "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
- ]
- },
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
- "type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
- "files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.FileProviders.Physical.nuspec",
- "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
- ]
- },
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
- "type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
- "files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
- ]
- },
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
- "type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
- "files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.Primitives.nuspec",
- "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "Microsoft.NETCore.Platforms/1.1.0",
- "files": [
- "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Platforms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "Microsoft.NETCore.Targets/1.1.0",
- "files": [
- "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Targets.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "type": "package",
- "path": "Microsoft.Win32.Primitives/4.3.0",
- "files": [
- "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
- "Microsoft.Win32.Primitives.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "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.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
- "type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
- "files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
- "Microsoft.Win32.Registry.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/Microsoft.Win32.Registry.dll",
- "ref/net46/Microsoft.Win32.Registry.dll",
- "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",
- "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/netcore50/_._",
- "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
- ]
- },
- "MySql.Data/7.0.7-m61": {
- "sha512": "xEoqBSNVDsJagx2fqSvN4jHjpuUPP5S+kyYpZl1dJ300QmKb0Oqsy6XB0juxiWRFniX43VY3QzPZsEesqx9NRA==",
- "type": "package",
- "path": "MySql.Data/7.0.7-m61",
- "files": [
- "MySql.Data.7.0.7-m61.nupkg.sha512",
- "MySql.Data.nuspec",
- "README",
- "lib/net451/MySql.Data.dll",
- "lib/net451/MySql.Data.xml",
- "lib/netstandard1.6/MySql.Data.dll",
- "lib/netstandard1.6/MySql.Data.xml"
- ]
- },
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
- "type": "package",
- "path": "NETStandard.Library/1.6.0",
- "files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
- "NETStandard.Library.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt"
- ]
- },
- "Newtonsoft.Json/9.0.1": {
- "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
- "type": "package",
- "path": "Newtonsoft.Json/9.0.1",
- "files": [
- "Newtonsoft.Json.9.0.1.nupkg.sha512",
- "Newtonsoft.Json.nuspec",
- "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/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "tools/install.ps1"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.System/4.3.0",
- "files": [
- "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.3.0": {
- "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
- "type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.native.System.Data.SqlClient.sni.nuspec"
- ]
- },
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
- "type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
- "files": [
- "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.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.System.Net.Http/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Http.nuspec"
- ]
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "type": "package",
- "path": "runtime.native.System.Net.Security/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Security.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
- "files": [
- "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.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.Apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
- "type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x64/native/sni.dll"
- ]
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
- "type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x86/native/sni.dll"
- ]
- },
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
- "type": "package",
- "path": "System.AppContext/4.1.0",
- "files": [
- "System.AppContext.4.1.0.nupkg.sha512",
- "System.AppContext.nuspec",
- "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.Buffers/4.3.0": {
- "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "type": "package",
- "path": "System.Buffers/4.3.0",
- "files": [
- "System.Buffers.4.3.0.nupkg.sha512",
- "System.Buffers.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.1/.xml",
- "lib/netstandard1.1/System.Buffers.dll"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "System.Collections/4.3.0",
- "files": [
- "System.Collections.4.3.0.nupkg.sha512",
- "System.Collections.nuspec",
- "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.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "System.Collections.Concurrent/4.3.0",
- "files": [
- "System.Collections.Concurrent.4.3.0.nupkg.sha512",
- "System.Collections.Concurrent.nuspec",
- "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.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
- "files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
- "System.Collections.NonGeneric.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/netstandard1.3/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "type": "package",
- "path": "System.Collections.Specialized/4.0.1",
- "files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
- "System.Collections.Specialized.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/netstandard1.3/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.xml",
- "ref/netstandard1.3/de/System.Collections.Specialized.xml",
- "ref/netstandard1.3/es/System.Collections.Specialized.xml",
- "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
- "ref/netstandard1.3/it/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "type": "package",
- "path": "System.ComponentModel/4.0.1",
- "files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
- "System.ComponentModel.nuspec",
- "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.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
- "type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
- "files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
- "System.ComponentModel.Annotations.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.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/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/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/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
- "files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
- "System.ComponentModel.Primitives.nuspec",
- "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.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
- "files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
- "System.ComponentModel.TypeConverter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.ComponentModel.TypeConverter.dll",
- "lib/net462/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.ComponentModel.TypeConverter.dll",
- "ref/net462/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
- "type": "package",
- "path": "System.Console/4.0.0",
- "files": [
- "System.Console.4.0.0.nupkg.sha512",
- "System.Console.nuspec",
- "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.Data.Common/4.3.0": {
- "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
- "type": "package",
- "path": "System.Data.Common/4.3.0",
- "files": [
- "System.Data.Common.4.3.0.nupkg.sha512",
- "System.Data.Common.nuspec",
- "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.SqlClient/4.3.0": {
- "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
- "type": "package",
- "path": "System.Data.SqlClient/4.3.0",
- "files": [
- "System.Data.SqlClient.4.3.0.nupkg.sha512",
- "System.Data.SqlClient.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/System.Data.SqlClient.dll",
- "lib/net46/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/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/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/win/lib/net451/System.Data.SqlClient.dll",
- "runtimes/win/lib/net46/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "System.Diagnostics.Debug/4.3.0",
- "files": [
- "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
- "System.Diagnostics.Debug.nuspec",
- "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.DiagnosticSource/4.3.0": {
- "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.3.0",
- "files": [
- "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
- "System.Diagnostics.DiagnosticSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
- ]
- },
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
- "type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
- "files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
- "System.Diagnostics.Process.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.Process.dll",
- "lib/net461/System.Diagnostics.Process.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.Process.dll",
- "ref/net461/System.Diagnostics.Process.dll",
- "ref/netstandard1.3/System.Diagnostics.Process.dll",
- "ref/netstandard1.3/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/System.Diagnostics.Process.dll",
- "ref/netstandard1.4/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
- "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
- "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
- "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
- "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
- "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Diagnostics.TextWriterTraceListener/4.0.0": {
- "sha512": "w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==",
- "type": "package",
- "path": "System.Diagnostics.TextWriterTraceListener/4.0.0",
- "files": [
- "System.Diagnostics.TextWriterTraceListener.4.0.0.nupkg.sha512",
- "System.Diagnostics.TextWriterTraceListener.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
- "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
- "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
- "type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
- "files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
- "System.Diagnostics.Tools.nuspec",
- "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.TraceSource/4.0.0": {
- "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
- "type": "package",
- "path": "System.Diagnostics.TraceSource/4.0.0",
- "files": [
- "System.Diagnostics.TraceSource.4.0.0.nupkg.sha512",
- "System.Diagnostics.TraceSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TraceSource.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "System.Diagnostics.Tracing/4.3.0",
- "files": [
- "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
- "System.Diagnostics.Tracing.nuspec",
- "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.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
- "type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
- "files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
- "System.Dynamic.Runtime.nuspec",
- "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.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "System.Globalization/4.3.0",
- "files": [
- "System.Globalization.4.3.0.nupkg.sha512",
- "System.Globalization.nuspec",
- "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.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "System.Globalization.Calendars/4.3.0",
- "files": [
- "System.Globalization.Calendars.4.3.0.nupkg.sha512",
- "System.Globalization.Calendars.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "System.Globalization.Extensions/4.3.0",
- "files": [
- "System.Globalization.Extensions.4.3.0.nupkg.sha512",
- "System.Globalization.Extensions.nuspec",
- "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.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "System.IO/4.3.0",
- "files": [
- "System.IO.4.3.0.nupkg.sha512",
- "System.IO.nuspec",
- "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.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
- "type": "package",
- "path": "System.IO.Compression/4.1.0",
- "files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
- "System.IO.Compression.nuspec",
- "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.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
- "type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
- "files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
- "System.IO.Compression.ZipFile.nuspec",
- "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.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "System.IO.FileSystem/4.3.0",
- "files": [
- "System.IO.FileSystem.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "System.IO.FileSystem.Primitives/4.3.0",
- "files": [
- "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.Primitives.nuspec",
- "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.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
- "type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
- "files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
- "System.IO.FileSystem.Watcher.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Watcher.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Watcher.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
- "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
- "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
- "type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
- "files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
- "System.IO.MemoryMappedFiles.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.MemoryMappedFiles.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.MemoryMappedFiles.dll",
- "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll",
- "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml",
- "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll",
- "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll",
- "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
- ]
- },
- "System.IO.Pipes/4.3.0": {
- "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
- "type": "package",
- "path": "System.IO.Pipes/4.3.0",
- "files": [
- "System.IO.Pipes.4.3.0.nupkg.sha512",
- "System.IO.Pipes.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.IO.Pipes.dll",
- "ref/net46/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.xml",
- "ref/netstandard1.3/de/System.IO.Pipes.xml",
- "ref/netstandard1.3/es/System.IO.Pipes.xml",
- "ref/netstandard1.3/fr/System.IO.Pipes.xml",
- "ref/netstandard1.3/it/System.IO.Pipes.xml",
- "ref/netstandard1.3/ja/System.IO.Pipes.xml",
- "ref/netstandard1.3/ko/System.IO.Pipes.xml",
- "ref/netstandard1.3/ru/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml",
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win/lib/net46/System.IO.Pipes.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
- "type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
- "files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
- "System.IO.UnmanagedMemoryStream.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.UnmanagedMemoryStream.dll",
- "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.UnmanagedMemoryStream.dll",
- "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
- "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
- "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "System.Linq/4.3.0",
- "files": [
- "System.Linq.4.3.0.nupkg.sha512",
- "System.Linq.nuspec",
- "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.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
- "type": "package",
- "path": "System.Linq.Expressions/4.1.0",
- "files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
- "System.Linq.Expressions.nuspec",
- "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.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "type": "package",
- "path": "System.Linq.Queryable/4.0.1",
- "files": [
- "System.Linq.Queryable.4.0.1.nupkg.sha512",
- "System.Linq.Queryable.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/netstandard1.3/System.Linq.Queryable.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.Queryable.dll",
- "ref/netcore50/System.Linq.Queryable.xml",
- "ref/netcore50/de/System.Linq.Queryable.xml",
- "ref/netcore50/es/System.Linq.Queryable.xml",
- "ref/netcore50/fr/System.Linq.Queryable.xml",
- "ref/netcore50/it/System.Linq.Queryable.xml",
- "ref/netcore50/ja/System.Linq.Queryable.xml",
- "ref/netcore50/ko/System.Linq.Queryable.xml",
- "ref/netcore50/ru/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
- "ref/netstandard1.0/System.Linq.Queryable.dll",
- "ref/netstandard1.0/System.Linq.Queryable.xml",
- "ref/netstandard1.0/de/System.Linq.Queryable.xml",
- "ref/netstandard1.0/es/System.Linq.Queryable.xml",
- "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
- "ref/netstandard1.0/it/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
- "type": "package",
- "path": "System.Net.Http/4.1.0",
- "files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
- "System.Net.Http.nuspec",
- "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.NameResolution/4.3.0": {
- "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "type": "package",
- "path": "System.Net.NameResolution/4.3.0",
- "files": [
- "System.Net.NameResolution.4.3.0.nupkg.sha512",
- "System.Net.NameResolution.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.NameResolution.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.xml",
- "ref/netstandard1.3/de/System.Net.NameResolution.xml",
- "ref/netstandard1.3/es/System.Net.NameResolution.xml",
- "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
- "ref/netstandard1.3/it/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
- "runtimes/win/lib/net46/System.Net.NameResolution.dll",
- "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
- ]
- },
- "System.Net.NetworkInformation/4.1.0": {
- "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
- "type": "package",
- "path": "System.Net.NetworkInformation/4.1.0",
- "files": [
- "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
- "System.Net.NetworkInformation.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.NetworkInformation.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.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.xml",
- "ref/netcore50/de/System.Net.NetworkInformation.xml",
- "ref/netcore50/es/System.Net.NetworkInformation.xml",
- "ref/netcore50/fr/System.Net.NetworkInformation.xml",
- "ref/netcore50/it/System.Net.NetworkInformation.xml",
- "ref/netcore50/ja/System.Net.NetworkInformation.xml",
- "ref/netcore50/ko/System.Net.NetworkInformation.xml",
- "ref/netcore50/ru/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/System.Net.NetworkInformation.dll",
- "ref/netstandard1.0/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/System.Net.NetworkInformation.dll",
- "ref/netstandard1.3/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "System.Net.Primitives/4.3.0",
- "files": [
- "System.Net.Primitives.4.3.0.nupkg.sha512",
- "System.Net.Primitives.nuspec",
- "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.Security/4.3.0": {
- "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "type": "package",
- "path": "System.Net.Security/4.3.0",
- "files": [
- "System.Net.Security.4.3.0.nupkg.sha512",
- "System.Net.Security.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Security.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.xml",
- "ref/netstandard1.3/de/System.Net.Security.xml",
- "ref/netstandard1.3/es/System.Net.Security.xml",
- "ref/netstandard1.3/fr/System.Net.Security.xml",
- "ref/netstandard1.3/it/System.Net.Security.xml",
- "ref/netstandard1.3/ja/System.Net.Security.xml",
- "ref/netstandard1.3/ko/System.Net.Security.xml",
- "ref/netstandard1.3/ru/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
- "runtimes/win/lib/net46/System.Net.Security.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Net.Sockets/4.3.0": {
- "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "type": "package",
- "path": "System.Net.Sockets/4.3.0",
- "files": [
- "System.Net.Sockets.4.3.0.nupkg.sha512",
- "System.Net.Sockets.nuspec",
- "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.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
- "type": "package",
- "path": "System.ObjectModel/4.0.12",
- "files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
- "System.ObjectModel.nuspec",
- "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.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "System.Reflection/4.3.0",
- "files": [
- "System.Reflection.4.3.0.nupkg.sha512",
- "System.Reflection.nuspec",
- "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.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
- "type": "package",
- "path": "System.Reflection.Emit/4.0.1",
- "files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
- "System.Reflection.Emit.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinmac20/_._",
- "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.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.3.0",
- "files": [
- "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.ILGeneration.nuspec",
- "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.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.3.0",
- "files": [
- "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.Lightweight.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "System.Reflection.Extensions/4.3.0",
- "files": [
- "System.Reflection.Extensions.4.3.0.nupkg.sha512",
- "System.Reflection.Extensions.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "System.Reflection.Primitives/4.3.0",
- "files": [
- "System.Reflection.Primitives.4.3.0.nupkg.sha512",
- "System.Reflection.Primitives.nuspec",
- "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.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "System.Reflection.TypeExtensions/4.3.0",
- "files": [
- "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
- "System.Reflection.TypeExtensions.nuspec",
- "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.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "System.Resources.ResourceManager/4.3.0",
- "files": [
- "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
- "System.Resources.ResourceManager.nuspec",
- "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.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "System.Runtime/4.3.0",
- "files": [
- "System.Runtime.4.3.0.nupkg.sha512",
- "System.Runtime.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "System.Runtime.Extensions/4.3.0",
- "files": [
- "System.Runtime.Extensions.4.3.0.nupkg.sha512",
- "System.Runtime.Extensions.nuspec",
- "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.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "System.Runtime.Handles/4.3.0",
- "files": [
- "System.Runtime.Handles.4.3.0.nupkg.sha512",
- "System.Runtime.Handles.nuspec",
- "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.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "System.Runtime.InteropServices/4.3.0",
- "files": [
- "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.nuspec",
- "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.RuntimeInformation/4.3.0": {
- "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
- "files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.RuntimeInformation.nuspec",
- "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.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "type": "package",
- "path": "System.Runtime.Loader/4.0.0",
- "files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
- "System.Runtime.Loader.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net462/_._",
- "lib/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.xml",
- "ref/netstandard1.5/de/System.Runtime.Loader.xml",
- "ref/netstandard1.5/es/System.Runtime.Loader.xml",
- "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
- "ref/netstandard1.5/it/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "System.Runtime.Numerics/4.3.0",
- "files": [
- "System.Runtime.Numerics.4.3.0.nupkg.sha512",
- "System.Runtime.Numerics.nuspec",
- "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.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": [
- "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
- "System.Runtime.Serialization.Primitives.nuspec",
- "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.Security.Claims/4.3.0": {
- "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "type": "package",
- "path": "System.Security.Claims/4.3.0",
- "files": [
- "System.Security.Claims.4.3.0.nupkg.sha512",
- "System.Security.Claims.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Claims.dll",
- "lib/netstandard1.3/System.Security.Claims.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.xml",
- "ref/netstandard1.3/de/System.Security.Claims.xml",
- "ref/netstandard1.3/es/System.Security.Claims.xml",
- "ref/netstandard1.3/fr/System.Security.Claims.xml",
- "ref/netstandard1.3/it/System.Security.Claims.xml",
- "ref/netstandard1.3/ja/System.Security.Claims.xml",
- "ref/netstandard1.3/ko/System.Security.Claims.xml",
- "ref/netstandard1.3/ru/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.3.0",
- "files": [
- "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Algorithms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "System.Security.Cryptography.Cng/4.3.0",
- "files": [
- "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Cng.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/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"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "System.Security.Cryptography.Csp/4.3.0",
- "files": [
- "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Csp.nuspec",
- "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.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "System.Security.Cryptography.Encoding/4.3.0",
- "files": [
- "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Encoding.nuspec",
- "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.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.OpenSsl.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "type": "package",
- "path": "System.Security.Cryptography.Primitives/4.3.0",
- "files": [
- "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Primitives.nuspec",
- "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.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.3.0",
- "files": [
- "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.X509Certificates.nuspec",
- "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.Principal/4.3.0": {
- "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "type": "package",
- "path": "System.Security.Principal/4.3.0",
- "files": [
- "System.Security.Principal.4.3.0.nupkg.sha512",
- "System.Security.Principal.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Security.Principal.dll",
- "lib/netstandard1.0/System.Security.Principal.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.Security.Principal.dll",
- "ref/netcore50/System.Security.Principal.xml",
- "ref/netcore50/de/System.Security.Principal.xml",
- "ref/netcore50/es/System.Security.Principal.xml",
- "ref/netcore50/fr/System.Security.Principal.xml",
- "ref/netcore50/it/System.Security.Principal.xml",
- "ref/netcore50/ja/System.Security.Principal.xml",
- "ref/netcore50/ko/System.Security.Principal.xml",
- "ref/netcore50/ru/System.Security.Principal.xml",
- "ref/netcore50/zh-hans/System.Security.Principal.xml",
- "ref/netcore50/zh-hant/System.Security.Principal.xml",
- "ref/netstandard1.0/System.Security.Principal.dll",
- "ref/netstandard1.0/System.Security.Principal.xml",
- "ref/netstandard1.0/de/System.Security.Principal.xml",
- "ref/netstandard1.0/es/System.Security.Principal.xml",
- "ref/netstandard1.0/fr/System.Security.Principal.xml",
- "ref/netstandard1.0/it/System.Security.Principal.xml",
- "ref/netstandard1.0/ja/System.Security.Principal.xml",
- "ref/netstandard1.0/ko/System.Security.Principal.xml",
- "ref/netstandard1.0/ru/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Principal.Windows/4.3.0": {
- "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
- "type": "package",
- "path": "System.Security.Principal.Windows/4.3.0",
- "files": [
- "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
- "System.Security.Principal.Windows.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Principal.Windows.dll",
- "ref/net46/System.Security.Principal.Windows.dll",
- "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",
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "System.Text.Encoding/4.3.0",
- "files": [
- "System.Text.Encoding.4.3.0.nupkg.sha512",
- "System.Text.Encoding.nuspec",
- "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.CodePages/4.3.0": {
- "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
- "type": "package",
- "path": "System.Text.Encoding.CodePages/4.3.0",
- "files": [
- "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
- "System.Text.Encoding.CodePages.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
- ]
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "type": "package",
- "path": "System.Text.Encoding.Extensions/4.3.0",
- "files": [
- "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
- "System.Text.Encoding.Extensions.nuspec",
- "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.RegularExpressions/4.3.0": {
- "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "type": "package",
- "path": "System.Text.RegularExpressions/4.3.0",
- "files": [
- "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
- "System.Text.RegularExpressions.nuspec",
- "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.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "System.Threading/4.3.0",
- "files": [
- "System.Threading.4.3.0.nupkg.sha512",
- "System.Threading.nuspec",
- "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.Overlapped/4.3.0": {
- "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
- "type": "package",
- "path": "System.Threading.Overlapped/4.3.0",
- "files": [
- "System.Threading.Overlapped.4.3.0.nupkg.sha512",
- "System.Threading.Overlapped.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Threading.Overlapped.dll",
- "ref/net46/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
- "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "System.Threading.Tasks/4.3.0",
- "files": [
- "System.Threading.Tasks.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "type": "package",
- "path": "System.Threading.Tasks.Extensions/4.3.0",
- "files": [
- "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.Extensions.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.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"
- ]
- },
- "System.Threading.Thread/4.3.0": {
- "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "type": "package",
- "path": "System.Threading.Thread/4.3.0",
- "files": [
- "System.Threading.Thread.4.3.0.nupkg.sha512",
- "System.Threading.Thread.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.xml",
- "ref/netstandard1.3/de/System.Threading.Thread.xml",
- "ref/netstandard1.3/es/System.Threading.Thread.xml",
- "ref/netstandard1.3/fr/System.Threading.Thread.xml",
- "ref/netstandard1.3/it/System.Threading.Thread.xml",
- "ref/netstandard1.3/ja/System.Threading.Thread.xml",
- "ref/netstandard1.3/ko/System.Threading.Thread.xml",
- "ref/netstandard1.3/ru/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.ThreadPool/4.3.0": {
- "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "type": "package",
- "path": "System.Threading.ThreadPool/4.3.0",
- "files": [
- "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
- "System.Threading.ThreadPool.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.Timer/4.3.0": {
- "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "type": "package",
- "path": "System.Threading.Timer/4.3.0",
- "files": [
- "System.Threading.Timer.4.3.0.nupkg.sha512",
- "System.Threading.Timer.nuspec",
- "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.Xml.ReaderWriter/4.3.0": {
- "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "type": "package",
- "path": "System.Xml.ReaderWriter/4.3.0",
- "files": [
- "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
- "System.Xml.ReaderWriter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Xml.ReaderWriter.dll",
- "lib/netcore50/System.Xml.ReaderWriter.dll",
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.xml",
- "ref/netcore50/de/System.Xml.ReaderWriter.xml",
- "ref/netcore50/es/System.Xml.ReaderWriter.xml",
- "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
- "ref/netcore50/it/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
- "type": "package",
- "path": "System.Xml.XDocument/4.0.11",
- "files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
- "System.Xml.XDocument.nuspec",
- "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.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "type": "package",
- "path": "System.Xml.XmlDocument/4.0.1",
- "files": [
- "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
- "System.Xml.XmlDocument.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/netstandard1.3/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "": [
- "AntData.Core >= 1.2.6",
- "MySql.Data >= 7.0.7-m61",
- "NETStandard.Library >= 1.6.0"
- ],
- ".NETStandard,Version=v1.6": []
- }
-}
\ No newline at end of file
diff --git a/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj b/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj
index ea7114e..83db49c 100644
--- a/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj
+++ b/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj
@@ -1,68 +1,45 @@
-
-
-
+
+
- Debug
- AnyCPU
- {793DCFF9-618B-4106-9F2E-7280D8DA8CCC}
- Library
- Properties
- AntData.ORM.Mysql
- AntData.ORM.Mysql
- v4.5
- 512
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
+ AntData.Orm mysql For Dotnet Core
+ 1.2.9
+ yuzd
+ netstandard2.0
+ $(DefineConstants);NETSTANDARD
+ AntData.Core.Mysql
+ linq;ORM;mysql
+ https://github.com/yuzd/AntData.ORM
+ https://github.com/yuzd/AntData.ORM/blob/master/MIT-LICENSE.txt
+ false
+ false
+ false
+ true
+ 1.5.5
+
+
+
+
+
+
-
- False
- ..\packages\MySql.Data.6.7.4\lib\net40\MySql.Data.dll
-
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
+
+
+
+
-
- {8156e731-ed0a-404e-9a72-fca6988270da}
- AntData.ORM
-
+
+
-
+
-
-
-
\ No newline at end of file
+
+
diff --git a/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj.migration_in_place_backup b/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj.migration_in_place_backup
new file mode 100644
index 0000000..ea7114e
--- /dev/null
+++ b/AntData/AntData.ORM.Mysql/AntData.ORM.Mysql.csproj.migration_in_place_backup
@@ -0,0 +1,68 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {793DCFF9-618B-4106-9F2E-7280D8DA8CCC}
+ Library
+ Properties
+ AntData.ORM.Mysql
+ AntData.ORM.Mysql
+ v4.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\packages\MySql.Data.6.7.4\lib\net40\MySql.Data.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {8156e731-ed0a-404e-9a72-fca6988270da}
+ AntData.ORM
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AntData/AntData.ORM.Mysql/AntData.core.mysql.xproj b/AntData/AntData.ORM.Mysql/AntData.core.mysql.xproj
deleted file mode 100644
index 837450f..0000000
--- a/AntData/AntData.ORM.Mysql/AntData.core.mysql.xproj
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
- 33dbdbf5-ddb9-4beb-a91e-08da1635d092
- AntData.core.mysql
- .\obj
- .\bin\
- v4.5
-
-
- 2.0
-
-
-
\ No newline at end of file
diff --git a/AntData/AntData.ORM.Mysql/MySqlDatabaseProvider.cs b/AntData/AntData.ORM.Mysql/MySqlDatabaseProvider.cs
index 7780fd6..27a2a4b 100644
--- a/AntData/AntData.ORM.Mysql/MySqlDatabaseProvider.cs
+++ b/AntData/AntData.ORM.Mysql/MySqlDatabaseProvider.cs
@@ -6,19 +6,13 @@
//
//-----------------------------------------------------------------------
+using AntData.ORM.DbEngine.Providers;
using MySql.Data.MySqlClient;
-using System;
-using System.Data;
using System.Data.Common;
-using AntData.ORM.DbEngine.Providers;
namespace AntData.ORM.Mysql
{
using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
///
/// MySql Server 数据库提供者实现
///
@@ -62,7 +56,6 @@ public string CreateParameterName(string name)
return name;
}
-#if !NETSTANDARD
///
/// 创建数据库适配器
///
@@ -71,7 +64,7 @@ public DbDataAdapter CreateDataAdapter()
{
return new MySqlDataAdapter();
}
-
+#if !NETSTANDARD
///
/// 是否支持参数导出
@@ -105,7 +98,6 @@ public void DeriveParameters(DbCommand command)
}
}
}
-
#endif
public string ProviderType
{
diff --git a/AntData/AntData.ORM.Mysql/Properties/AssemblyInfo.cs b/AntData/AntData.ORM.Mysql/Properties/AssemblyInfo.cs
index 57928c4..a944047 100644
--- a/AntData/AntData.ORM.Mysql/Properties/AssemblyInfo.cs
+++ b/AntData/AntData.ORM.Mysql/Properties/AssemblyInfo.cs
@@ -1,37 +1,37 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-using AntData.ORM;
+//using System.Reflection;
+//using System.Runtime.CompilerServices;
+//using System.Runtime.InteropServices;
+//using AntData.ORM;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("AntData.ORM.Mysql")]
-[assembly: AssemblyDescription("mysql provider fro linq to db orm")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("nainaigu")]
-[assembly: AssemblyProduct("AntData.ORM.Mysql")]
-[assembly: AssemblyCopyright("Copyright nainaigu © 2016")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
+//// General Information about an assembly is controlled through the following
+//// set of attributes. Change these attribute values to modify the information
+//// associated with an assembly.
+//[assembly: AssemblyTitle("AntData.ORM.Mysql")]
+//[assembly: AssemblyDescription("mysql provider fro linq to db orm")]
+//[assembly: AssemblyConfiguration("")]
+//[assembly: AssemblyCompany("nainaigu")]
+//[assembly: AssemblyProduct("AntData.ORM.Mysql")]
+//[assembly: AssemblyCopyright("Copyright nainaigu © 2016")]
+//[assembly: AssemblyTrademark("")]
+//[assembly: AssemblyCulture("")]
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
+//// Setting ComVisible to false makes the types in this assembly not visible
+//// to COM components. If you need to access a type in this assembly from
+//// COM, set the ComVisible attribute to true on that type.
+//[assembly: ComVisible(false)]
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("793dcff9-618b-4106-9f2e-7280d8da8ccc")]
+//// The following GUID is for the ID of the typelib if this project is exposed to COM
+//[assembly: Guid("793dcff9-618b-4106-9f2e-7280d8da8ccc")]
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion(LinqToDBConstants.FullVersionString)]
-[assembly: AssemblyFileVersion(LinqToDBConstants.FullVersionString)]
+//// Version information for an assembly consists of the following four values:
+////
+//// Major Version
+//// Minor Version
+//// Build Number
+//// Revision
+////
+//// You can specify all the values or you can default the Build and Revision Numbers
+//// by using the '*' as shown below:
+//// [assembly: AssemblyVersion("1.0.*")]
+//[assembly: AssemblyVersion(LinqToDBConstants.FullVersionString)]
+//[assembly: AssemblyFileVersion(LinqToDBConstants.FullVersionString)]
diff --git a/AntData/AntData.ORM.Postgre/AntData.ORM.Postgre.csproj b/AntData/AntData.ORM.Postgre/AntData.ORM.Postgre.csproj
new file mode 100644
index 0000000..2882e4b
--- /dev/null
+++ b/AntData/AntData.ORM.Postgre/AntData.ORM.Postgre.csproj
@@ -0,0 +1,39 @@
+
+
+
+ AntData.Orm postgre For Dotnet Core
+ yuzd
+ netstandard2.0
+ $(DefineConstants);NETSTANDARD
+ linq;ORM;postgre
+ https://github.com/yuzd/AntData.ORM
+ https://github.com/yuzd/AntData.ORM/blob/master/MIT-LICENSE.txt
+ false
+ false
+ false
+ true
+ 1.5.5
+ AntData.Core.Postgre
+ 1.5.5.0
+ 1.5.5.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AntData/AntData.ORM.Postgre/PostgreDatabaseProvider.cs b/AntData/AntData.ORM.Postgre/PostgreDatabaseProvider.cs
new file mode 100644
index 0000000..2783d9a
--- /dev/null
+++ b/AntData/AntData.ORM.Postgre/PostgreDatabaseProvider.cs
@@ -0,0 +1,111 @@
+//-----------------------------------------------------------------------
+//
+// Copyright (C) Company. All Rights Reserved.
+//
+// nainaigu
+//
+//-----------------------------------------------------------------------
+using System;
+using System.Data;
+using System.Data.Common;
+using AntData.ORM.DbEngine.Providers;
+using Npgsql;
+
+namespace AntData.ORM.Postgre
+{
+
+ ///
+ /// Postgre Server 数据库提供者实现
+ ///
+ public class PostgreDatabaseProvider : IDatabaseProvider
+ {
+ #region Implementation of IDatabaseProvider
+
+ ///
+ /// 创建数据库链接
+ ///
+ /// 数据库链接
+ public DbConnection CreateConnection()
+ {
+
+ return new NpgsqlConnection();
+ }
+
+ ///
+ /// 创建数据库指令
+ ///
+ /// 数据库指令
+ public DbCommand CreateCommand()
+ {
+ return new NpgsqlCommand();;
+ }
+
+ ///
+ /// 将名称变为数据库相关的参数名称
+ ///
+ /// 参数名称
+ /// 数据库相关的参数名称
+ public string CreateParameterName(string name)
+ {
+ if (string.IsNullOrEmpty(name))
+ throw new ArgumentNullException("name");
+
+ if (name[0] != ':')
+ {
+ return ":" + name;
+ }
+ return name;
+ }
+
+ ///
+ /// 创建数据库适配器
+ ///
+ ///
+ public DbDataAdapter CreateDataAdapter()
+ {
+ return new NpgsqlDataAdapter();
+
+ }
+
+#if !NETSTANDARD
+ ///
+ /// 是否支持参数导出
+ ///
+ public bool DeriveParametersSupported
+ {
+ get
+ {
+ return true;
+ }
+ }
+
+ ///
+ /// 导出数据库指令参数
+ ///
+ /// 数据库指令
+ public void DeriveParameters(DbCommand command)
+ {
+ if (command == null)
+ throw new ArgumentNullException("command");
+ if (command.GetType() != typeof(NpgsqlCommand))
+ throw new ArgumentException("command must be NpgsqlCommand!");
+
+
+ NpgsqlCommandBuilder.DeriveParameters((NpgsqlCommand)command);
+
+ foreach (DbParameter para in command.Parameters)
+ {
+ if (para.Direction == ParameterDirection.InputOutput || para.Direction == ParameterDirection.Output)
+ {
+ para.Value = DBNull.Value;
+ }
+ }
+ }
+#endif
+ public string ProviderType
+ {
+ get { return "Postgre"; }
+ }
+#endregion
+ }
+}
\ No newline at end of file
diff --git a/AntData/AntData.ORM/1project.json b/AntData/AntData.ORM/1project.json
deleted file mode 100644
index 52d1d93..0000000
--- a/AntData/AntData.ORM/1project.json
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- "name": "AntData.Core",
- "version": "1.2.7",
- "authors": [ "nainaigu" ],
- "description": "AntData.Orm For Dotnet Core",
- "packOptions": {
- "licenseUrl": "https://github.com/yuzd/AntData.ORM/blob/master/MIT-LICENSE.txt",
- "projectUrl": "https://github.com/yuzd/AntData.ORM",
- "tags": [
- "linq",
- "ORM",
- "database",
- "DB",
- "SQL",
- "SqlServer"
- ]
- },
- "buildOptions": {
- "outputName": "AntData.ORM",
- "embed": [ "**/*.resx", "**/*.txt" ],
- "define": [ "NETSTANDARD" ]
- },
- "frameworks": {
- "netstandard1.6": {
- "buildOptions": {
- "define": [ "NETSTANDARD" ],
- "compile": {
- "exclude": [
- ]
- }
- },
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "NETStandard.Library": "1.6.0",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Data.Common": "4.3.0",
- "System.Data.SqlClient": "4.3.0",
- "System.Diagnostics.TraceSource": "4.0.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NetworkInformation": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Xml.XmlDocument": "4.0.1",
- "System.Collections.Specialized": "4.0.1"
- }
- }
- }
-}
diff --git a/AntData/AntData.ORM/1project.lock.json b/AntData/AntData.ORM/1project.lock.json
deleted file mode 100644
index 78a1741..0000000
--- a/AntData/AntData.ORM/1project.lock.json
+++ /dev/null
@@ -1,6397 +0,0 @@
-{
- "locked": false,
- "version": 2,
- "targets": {
- ".NETStandard,Version=v1.6": {
- "Microsoft.CSharp/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "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.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.0/Microsoft.CSharp.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {}
- }
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "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/9.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "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.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/Newtonsoft.Json.dll": {}
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography/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.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win7-x64/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x64"
- }
- }
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win7-x86/native/sni.dll": {
- "assetType": "native",
- "rid": "win7-x86"
- }
- }
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.1/_._": {}
- },
- "runtime": {
- "lib/netstandard1.1/System.Buffers.dll": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
- }
- },
- "System.Collections.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.NonGeneric/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- },
- "runtime": {
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
- }
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Console/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Data.Common": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Pipes": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection": "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.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "runtime.native.System.Data.SqlClient.sni": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Data.SqlClient.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/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/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.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.TraceSource/4.0.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.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.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.Dynamic.Runtime/4.0.11": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.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.IO.Pipes/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "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.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Overlapped": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.1.0": {
- "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.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Linq.Queryable.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Linq.Queryable.dll": {}
- }
- },
- "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.NameResolution/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.NetworkInformation/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "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.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "linux"
- },
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {}
- }
- },
- "System.Net.Security/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {}
- }
- },
- "System.ObjectModel/4.0.12": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "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.0.1": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.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.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.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.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/netstandard1.5/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.Loader/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.Loader.dll": {}
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Runtime.Serialization.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.Claims/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.Security.Principal": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Claims.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.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.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Principal/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {}
- }
- },
- "System.Security.Principal.Windows/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "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.Claims": "4.3.0",
- "System.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/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/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/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.Overlapped/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "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.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
- }
- },
- "System.Threading.Thread/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {}
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.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": {}
- }
- },
- "System.Xml.XmlDocument/4.0.1": {
- "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.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.XmlDocument.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
- "type": "package",
- "path": "Microsoft.CSharp/4.0.1",
- "files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
- "Microsoft.CSharp.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.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/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/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/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
- "type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
- "files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
- ]
- },
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
- "type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
- "files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
- "Microsoft.Extensions.DependencyModel.nuspec",
- "lib/net451/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "Microsoft.NETCore.Platforms/1.1.0",
- "files": [
- "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Platforms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "Microsoft.NETCore.Targets/1.1.0",
- "files": [
- "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
- "Microsoft.NETCore.Targets.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.json"
- ]
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "type": "package",
- "path": "Microsoft.Win32.Primitives/4.3.0",
- "files": [
- "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
- "Microsoft.Win32.Primitives.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "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/_._"
- ]
- },
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
- "type": "package",
- "path": "NETStandard.Library/1.6.0",
- "files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
- "NETStandard.Library.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt"
- ]
- },
- "Newtonsoft.Json/9.0.1": {
- "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
- "type": "package",
- "path": "Newtonsoft.Json/9.0.1",
- "files": [
- "Newtonsoft.Json.9.0.1.nupkg.sha512",
- "Newtonsoft.Json.nuspec",
- "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/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
- "tools/install.ps1"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.System/4.3.0",
- "files": [
- "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.3.0": {
- "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
- "type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.native.System.Data.SqlClient.sni.nuspec"
- ]
- },
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
- "type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
- "files": [
- "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.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.System.Net.Http/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Http.nuspec"
- ]
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "type": "package",
- "path": "runtime.native.System.Net.Security/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
- "runtime.native.System.Net.Security.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
- "files": [
- "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.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.Apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "type": "package",
- "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
- "type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x64/native/sni.dll"
- ]
- },
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
- "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
- "type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
- "files": [
- "OpenCoreFxSyncInfo.txt",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
- "runtimes/win7-x86/native/sni.dll"
- ]
- },
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
- "type": "package",
- "path": "System.AppContext/4.1.0",
- "files": [
- "System.AppContext.4.1.0.nupkg.sha512",
- "System.AppContext.nuspec",
- "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.Buffers/4.3.0": {
- "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
- "type": "package",
- "path": "System.Buffers/4.3.0",
- "files": [
- "System.Buffers.4.3.0.nupkg.sha512",
- "System.Buffers.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.1/.xml",
- "lib/netstandard1.1/System.Buffers.dll"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "System.Collections/4.3.0",
- "files": [
- "System.Collections.4.3.0.nupkg.sha512",
- "System.Collections.nuspec",
- "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.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "System.Collections.Concurrent/4.3.0",
- "files": [
- "System.Collections.Concurrent.4.3.0.nupkg.sha512",
- "System.Collections.Concurrent.nuspec",
- "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.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
- "type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
- "files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
- "System.Collections.NonGeneric.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/netstandard1.3/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
- "type": "package",
- "path": "System.Collections.Specialized/4.0.1",
- "files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
- "System.Collections.Specialized.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/netstandard1.3/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.xml",
- "ref/netstandard1.3/de/System.Collections.Specialized.xml",
- "ref/netstandard1.3/es/System.Collections.Specialized.xml",
- "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
- "ref/netstandard1.3/it/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
- "type": "package",
- "path": "System.ComponentModel/4.0.1",
- "files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
- "System.ComponentModel.nuspec",
- "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.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
- "type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
- "files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
- "System.ComponentModel.Annotations.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.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/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/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/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
- "type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
- "files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
- "System.ComponentModel.Primitives.nuspec",
- "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.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
- "type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
- "files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
- "System.ComponentModel.TypeConverter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.ComponentModel.TypeConverter.dll",
- "lib/net462/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.ComponentModel.TypeConverter.dll",
- "ref/net462/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
- "type": "package",
- "path": "System.Console/4.0.0",
- "files": [
- "System.Console.4.0.0.nupkg.sha512",
- "System.Console.nuspec",
- "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.Data.Common/4.3.0": {
- "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
- "type": "package",
- "path": "System.Data.Common/4.3.0",
- "files": [
- "System.Data.Common.4.3.0.nupkg.sha512",
- "System.Data.Common.nuspec",
- "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.SqlClient/4.3.0": {
- "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
- "type": "package",
- "path": "System.Data.SqlClient/4.3.0",
- "files": [
- "System.Data.SqlClient.4.3.0.nupkg.sha512",
- "System.Data.SqlClient.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/System.Data.SqlClient.dll",
- "lib/net46/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/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/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/win/lib/net451/System.Data.SqlClient.dll",
- "runtimes/win/lib/net46/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "System.Diagnostics.Debug/4.3.0",
- "files": [
- "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
- "System.Diagnostics.Debug.nuspec",
- "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.DiagnosticSource/4.3.0": {
- "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
- "type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.3.0",
- "files": [
- "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
- "System.Diagnostics.DiagnosticSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
- ]
- },
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
- "type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
- "files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
- "System.Diagnostics.Tools.nuspec",
- "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.TraceSource/4.0.0": {
- "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
- "type": "package",
- "path": "System.Diagnostics.TraceSource/4.0.0",
- "files": [
- "System.Diagnostics.TraceSource.4.0.0.nupkg.sha512",
- "System.Diagnostics.TraceSource.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.TraceSource.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "System.Diagnostics.Tracing/4.3.0",
- "files": [
- "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
- "System.Diagnostics.Tracing.nuspec",
- "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.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
- "type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
- "files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
- "System.Dynamic.Runtime.nuspec",
- "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.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "System.Globalization/4.3.0",
- "files": [
- "System.Globalization.4.3.0.nupkg.sha512",
- "System.Globalization.nuspec",
- "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.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "System.Globalization.Calendars/4.3.0",
- "files": [
- "System.Globalization.Calendars.4.3.0.nupkg.sha512",
- "System.Globalization.Calendars.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "System.Globalization.Extensions/4.3.0",
- "files": [
- "System.Globalization.Extensions.4.3.0.nupkg.sha512",
- "System.Globalization.Extensions.nuspec",
- "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.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "System.IO/4.3.0",
- "files": [
- "System.IO.4.3.0.nupkg.sha512",
- "System.IO.nuspec",
- "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.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
- "type": "package",
- "path": "System.IO.Compression/4.1.0",
- "files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
- "System.IO.Compression.nuspec",
- "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.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
- "type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
- "files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
- "System.IO.Compression.ZipFile.nuspec",
- "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.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "System.IO.FileSystem/4.3.0",
- "files": [
- "System.IO.FileSystem.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "System.IO.FileSystem.Primitives/4.3.0",
- "files": [
- "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
- "System.IO.FileSystem.Primitives.nuspec",
- "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.Pipes/4.3.0": {
- "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
- "type": "package",
- "path": "System.IO.Pipes/4.3.0",
- "files": [
- "System.IO.Pipes.4.3.0.nupkg.sha512",
- "System.IO.Pipes.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.IO.Pipes.dll",
- "ref/net46/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.dll",
- "ref/netstandard1.3/System.IO.Pipes.xml",
- "ref/netstandard1.3/de/System.IO.Pipes.xml",
- "ref/netstandard1.3/es/System.IO.Pipes.xml",
- "ref/netstandard1.3/fr/System.IO.Pipes.xml",
- "ref/netstandard1.3/it/System.IO.Pipes.xml",
- "ref/netstandard1.3/ja/System.IO.Pipes.xml",
- "ref/netstandard1.3/ko/System.IO.Pipes.xml",
- "ref/netstandard1.3/ru/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml",
- "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win/lib/net46/System.IO.Pipes.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "System.Linq/4.3.0",
- "files": [
- "System.Linq.4.3.0.nupkg.sha512",
- "System.Linq.nuspec",
- "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.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
- "type": "package",
- "path": "System.Linq.Expressions/4.1.0",
- "files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
- "System.Linq.Expressions.nuspec",
- "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.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "type": "package",
- "path": "System.Linq.Queryable/4.0.1",
- "files": [
- "System.Linq.Queryable.4.0.1.nupkg.sha512",
- "System.Linq.Queryable.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/netstandard1.3/System.Linq.Queryable.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.Queryable.dll",
- "ref/netcore50/System.Linq.Queryable.xml",
- "ref/netcore50/de/System.Linq.Queryable.xml",
- "ref/netcore50/es/System.Linq.Queryable.xml",
- "ref/netcore50/fr/System.Linq.Queryable.xml",
- "ref/netcore50/it/System.Linq.Queryable.xml",
- "ref/netcore50/ja/System.Linq.Queryable.xml",
- "ref/netcore50/ko/System.Linq.Queryable.xml",
- "ref/netcore50/ru/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
- "ref/netstandard1.0/System.Linq.Queryable.dll",
- "ref/netstandard1.0/System.Linq.Queryable.xml",
- "ref/netstandard1.0/de/System.Linq.Queryable.xml",
- "ref/netstandard1.0/es/System.Linq.Queryable.xml",
- "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
- "ref/netstandard1.0/it/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
- "type": "package",
- "path": "System.Net.Http/4.1.0",
- "files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
- "System.Net.Http.nuspec",
- "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.NameResolution/4.3.0": {
- "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "type": "package",
- "path": "System.Net.NameResolution/4.3.0",
- "files": [
- "System.Net.NameResolution.4.3.0.nupkg.sha512",
- "System.Net.NameResolution.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.NameResolution.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.xml",
- "ref/netstandard1.3/de/System.Net.NameResolution.xml",
- "ref/netstandard1.3/es/System.Net.NameResolution.xml",
- "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
- "ref/netstandard1.3/it/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
- "runtimes/win/lib/net46/System.Net.NameResolution.dll",
- "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
- ]
- },
- "System.Net.NetworkInformation/4.1.0": {
- "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
- "type": "package",
- "path": "System.Net.NetworkInformation/4.1.0",
- "files": [
- "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
- "System.Net.NetworkInformation.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.NetworkInformation.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.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.dll",
- "ref/netcore50/System.Net.NetworkInformation.xml",
- "ref/netcore50/de/System.Net.NetworkInformation.xml",
- "ref/netcore50/es/System.Net.NetworkInformation.xml",
- "ref/netcore50/fr/System.Net.NetworkInformation.xml",
- "ref/netcore50/it/System.Net.NetworkInformation.xml",
- "ref/netcore50/ja/System.Net.NetworkInformation.xml",
- "ref/netcore50/ko/System.Net.NetworkInformation.xml",
- "ref/netcore50/ru/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/System.Net.NetworkInformation.dll",
- "ref/netstandard1.0/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/System.Net.NetworkInformation.dll",
- "ref/netstandard1.3/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "System.Net.Primitives/4.3.0",
- "files": [
- "System.Net.Primitives.4.3.0.nupkg.sha512",
- "System.Net.Primitives.nuspec",
- "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.Security/4.3.0": {
- "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "type": "package",
- "path": "System.Net.Security/4.3.0",
- "files": [
- "System.Net.Security.4.3.0.nupkg.sha512",
- "System.Net.Security.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Security.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.xml",
- "ref/netstandard1.3/de/System.Net.Security.xml",
- "ref/netstandard1.3/es/System.Net.Security.xml",
- "ref/netstandard1.3/fr/System.Net.Security.xml",
- "ref/netstandard1.3/it/System.Net.Security.xml",
- "ref/netstandard1.3/ja/System.Net.Security.xml",
- "ref/netstandard1.3/ko/System.Net.Security.xml",
- "ref/netstandard1.3/ru/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
- "runtimes/win/lib/net46/System.Net.Security.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
- "runtimes/win7/lib/netcore50/_._"
- ]
- },
- "System.Net.Sockets/4.3.0": {
- "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "type": "package",
- "path": "System.Net.Sockets/4.3.0",
- "files": [
- "System.Net.Sockets.4.3.0.nupkg.sha512",
- "System.Net.Sockets.nuspec",
- "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.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
- "type": "package",
- "path": "System.ObjectModel/4.0.12",
- "files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
- "System.ObjectModel.nuspec",
- "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.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "System.Reflection/4.3.0",
- "files": [
- "System.Reflection.4.3.0.nupkg.sha512",
- "System.Reflection.nuspec",
- "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.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
- "type": "package",
- "path": "System.Reflection.Emit/4.0.1",
- "files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
- "System.Reflection.Emit.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinmac20/_._",
- "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.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.3.0",
- "files": [
- "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.ILGeneration.nuspec",
- "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.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.3.0",
- "files": [
- "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
- "System.Reflection.Emit.Lightweight.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "System.Reflection.Extensions/4.3.0",
- "files": [
- "System.Reflection.Extensions.4.3.0.nupkg.sha512",
- "System.Reflection.Extensions.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "System.Reflection.Primitives/4.3.0",
- "files": [
- "System.Reflection.Primitives.4.3.0.nupkg.sha512",
- "System.Reflection.Primitives.nuspec",
- "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.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "System.Reflection.TypeExtensions/4.3.0",
- "files": [
- "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
- "System.Reflection.TypeExtensions.nuspec",
- "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.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "System.Resources.ResourceManager/4.3.0",
- "files": [
- "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
- "System.Resources.ResourceManager.nuspec",
- "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.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "System.Runtime/4.3.0",
- "files": [
- "System.Runtime.4.3.0.nupkg.sha512",
- "System.Runtime.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "System.Runtime.Extensions/4.3.0",
- "files": [
- "System.Runtime.Extensions.4.3.0.nupkg.sha512",
- "System.Runtime.Extensions.nuspec",
- "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.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "System.Runtime.Handles/4.3.0",
- "files": [
- "System.Runtime.Handles.4.3.0.nupkg.sha512",
- "System.Runtime.Handles.nuspec",
- "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.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "System.Runtime.InteropServices/4.3.0",
- "files": [
- "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.nuspec",
- "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.RuntimeInformation/4.3.0": {
- "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
- "files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
- "System.Runtime.InteropServices.RuntimeInformation.nuspec",
- "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.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
- "type": "package",
- "path": "System.Runtime.Loader/4.0.0",
- "files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
- "System.Runtime.Loader.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net462/_._",
- "lib/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.xml",
- "ref/netstandard1.5/de/System.Runtime.Loader.xml",
- "ref/netstandard1.5/es/System.Runtime.Loader.xml",
- "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
- "ref/netstandard1.5/it/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "System.Runtime.Numerics/4.3.0",
- "files": [
- "System.Runtime.Numerics.4.3.0.nupkg.sha512",
- "System.Runtime.Numerics.nuspec",
- "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.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": [
- "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
- "System.Runtime.Serialization.Primitives.nuspec",
- "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.Security.Claims/4.3.0": {
- "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "type": "package",
- "path": "System.Security.Claims/4.3.0",
- "files": [
- "System.Security.Claims.4.3.0.nupkg.sha512",
- "System.Security.Claims.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Claims.dll",
- "lib/netstandard1.3/System.Security.Claims.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.xml",
- "ref/netstandard1.3/de/System.Security.Claims.xml",
- "ref/netstandard1.3/es/System.Security.Claims.xml",
- "ref/netstandard1.3/fr/System.Security.Claims.xml",
- "ref/netstandard1.3/it/System.Security.Claims.xml",
- "ref/netstandard1.3/ja/System.Security.Claims.xml",
- "ref/netstandard1.3/ko/System.Security.Claims.xml",
- "ref/netstandard1.3/ru/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.3.0",
- "files": [
- "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Algorithms.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "System.Security.Cryptography.Cng/4.3.0",
- "files": [
- "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Cng.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/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"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "System.Security.Cryptography.Csp/4.3.0",
- "files": [
- "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Csp.nuspec",
- "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.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "System.Security.Cryptography.Encoding/4.3.0",
- "files": [
- "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Encoding.nuspec",
- "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.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.3.0",
- "files": [
- "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.OpenSsl.nuspec",
- "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.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "type": "package",
- "path": "System.Security.Cryptography.Primitives/4.3.0",
- "files": [
- "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.Primitives.nuspec",
- "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.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.3.0",
- "files": [
- "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
- "System.Security.Cryptography.X509Certificates.nuspec",
- "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.Principal/4.3.0": {
- "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "type": "package",
- "path": "System.Security.Principal/4.3.0",
- "files": [
- "System.Security.Principal.4.3.0.nupkg.sha512",
- "System.Security.Principal.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Security.Principal.dll",
- "lib/netstandard1.0/System.Security.Principal.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.Security.Principal.dll",
- "ref/netcore50/System.Security.Principal.xml",
- "ref/netcore50/de/System.Security.Principal.xml",
- "ref/netcore50/es/System.Security.Principal.xml",
- "ref/netcore50/fr/System.Security.Principal.xml",
- "ref/netcore50/it/System.Security.Principal.xml",
- "ref/netcore50/ja/System.Security.Principal.xml",
- "ref/netcore50/ko/System.Security.Principal.xml",
- "ref/netcore50/ru/System.Security.Principal.xml",
- "ref/netcore50/zh-hans/System.Security.Principal.xml",
- "ref/netcore50/zh-hant/System.Security.Principal.xml",
- "ref/netstandard1.0/System.Security.Principal.dll",
- "ref/netstandard1.0/System.Security.Principal.xml",
- "ref/netstandard1.0/de/System.Security.Principal.xml",
- "ref/netstandard1.0/es/System.Security.Principal.xml",
- "ref/netstandard1.0/fr/System.Security.Principal.xml",
- "ref/netstandard1.0/it/System.Security.Principal.xml",
- "ref/netstandard1.0/ja/System.Security.Principal.xml",
- "ref/netstandard1.0/ko/System.Security.Principal.xml",
- "ref/netstandard1.0/ru/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Security.Principal.Windows/4.3.0": {
- "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
- "type": "package",
- "path": "System.Security.Principal.Windows/4.3.0",
- "files": [
- "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
- "System.Security.Principal.Windows.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Principal.Windows.dll",
- "ref/net46/System.Security.Principal.Windows.dll",
- "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",
- "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "System.Text.Encoding/4.3.0",
- "files": [
- "System.Text.Encoding.4.3.0.nupkg.sha512",
- "System.Text.Encoding.nuspec",
- "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.CodePages/4.3.0": {
- "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
- "type": "package",
- "path": "System.Text.Encoding.CodePages/4.3.0",
- "files": [
- "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
- "System.Text.Encoding.CodePages.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
- ]
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "type": "package",
- "path": "System.Text.Encoding.Extensions/4.3.0",
- "files": [
- "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
- "System.Text.Encoding.Extensions.nuspec",
- "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.RegularExpressions/4.3.0": {
- "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "type": "package",
- "path": "System.Text.RegularExpressions/4.3.0",
- "files": [
- "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
- "System.Text.RegularExpressions.nuspec",
- "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.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "System.Threading/4.3.0",
- "files": [
- "System.Threading.4.3.0.nupkg.sha512",
- "System.Threading.nuspec",
- "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.Overlapped/4.3.0": {
- "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
- "type": "package",
- "path": "System.Threading.Overlapped/4.3.0",
- "files": [
- "System.Threading.Overlapped.4.3.0.nupkg.sha512",
- "System.Threading.Overlapped.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Threading.Overlapped.dll",
- "ref/net46/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.dll",
- "ref/netstandard1.3/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
- "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
- "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
- "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "System.Threading.Tasks/4.3.0",
- "files": [
- "System.Threading.Tasks.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.nuspec",
- "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.Extensions/4.3.0": {
- "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
- "type": "package",
- "path": "System.Threading.Tasks.Extensions/4.3.0",
- "files": [
- "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
- "System.Threading.Tasks.Extensions.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.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"
- ]
- },
- "System.Threading.Thread/4.3.0": {
- "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "type": "package",
- "path": "System.Threading.Thread/4.3.0",
- "files": [
- "System.Threading.Thread.4.3.0.nupkg.sha512",
- "System.Threading.Thread.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.xml",
- "ref/netstandard1.3/de/System.Threading.Thread.xml",
- "ref/netstandard1.3/es/System.Threading.Thread.xml",
- "ref/netstandard1.3/fr/System.Threading.Thread.xml",
- "ref/netstandard1.3/it/System.Threading.Thread.xml",
- "ref/netstandard1.3/ja/System.Threading.Thread.xml",
- "ref/netstandard1.3/ko/System.Threading.Thread.xml",
- "ref/netstandard1.3/ru/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.ThreadPool/4.3.0": {
- "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "type": "package",
- "path": "System.Threading.ThreadPool/4.3.0",
- "files": [
- "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
- "System.Threading.ThreadPool.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Threading.Timer/4.3.0": {
- "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "type": "package",
- "path": "System.Threading.Timer/4.3.0",
- "files": [
- "System.Threading.Timer.4.3.0.nupkg.sha512",
- "System.Threading.Timer.nuspec",
- "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.Xml.ReaderWriter/4.3.0": {
- "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "type": "package",
- "path": "System.Xml.ReaderWriter/4.3.0",
- "files": [
- "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
- "System.Xml.ReaderWriter.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Xml.ReaderWriter.dll",
- "lib/netcore50/System.Xml.ReaderWriter.dll",
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.xml",
- "ref/netcore50/de/System.Xml.ReaderWriter.xml",
- "ref/netcore50/es/System.Xml.ReaderWriter.xml",
- "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
- "ref/netcore50/it/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
- "type": "package",
- "path": "System.Xml.XDocument/4.0.11",
- "files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
- "System.Xml.XDocument.nuspec",
- "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.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
- "type": "package",
- "path": "System.Xml.XmlDocument/4.0.1",
- "files": [
- "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
- "System.Xml.XmlDocument.nuspec",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/netstandard1.3/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "": [],
- ".NETStandard,Version=v1.6": [
- "Microsoft.CSharp >= 4.0.1",
- "Microsoft.Extensions.DependencyModel >= 1.0.0",
- "NETStandard.Library >= 1.6.0",
- "System.Collections.Specialized >= 4.0.1",
- "System.ComponentModel.Annotations >= 4.1.0",
- "System.ComponentModel.TypeConverter >= 4.1.0",
- "System.Data.Common >= 4.3.0",
- "System.Data.SqlClient >= 4.3.0",
- "System.Diagnostics.TraceSource >= 4.0.0",
- "System.Dynamic.Runtime >= 4.0.11",
- "System.Linq.Queryable >= 4.0.1",
- "System.Net.NetworkInformation >= 4.1.0",
- "System.Reflection.Emit >= 4.0.1",
- "System.Reflection.Emit.Lightweight >= 4.3.0",
- "System.Reflection.TypeExtensions >= 4.3.0",
- "System.Runtime.Loader >= 4.0.0",
- "System.Runtime.Serialization.Primitives >= 4.3.0",
- "System.Threading.Thread >= 4.3.0",
- "System.Xml.XmlDocument >= 4.0.1"
- ]
- },
- "tools": {},
- "projectFileToolGroups": {}
-}
\ No newline at end of file
diff --git a/AntData/AntData.ORM/AntData.ORM.csproj b/AntData/AntData.ORM/AntData.ORM.csproj
index 0b4322b..d3d252e 100644
--- a/AntData/AntData.ORM/AntData.ORM.csproj
+++ b/AntData/AntData.ORM/AntData.ORM.csproj
@@ -1,439 +1,44 @@
-
-
-
+
+
- Debug
- AnyCPU
- {8156E731-ED0A-404E-9A72-FCA6988270DA}
- Library
- Properties
- AntData.ORM
- AntData.ORM
- v4.5
- 512
-
-
- true
- full
- false
- bin\Debug\
- TRACE;DEBUG
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
+ AntData.Orm For Dotnet Core
+ 1.2.9
+ yuzd
+ netstandard2.0
+ $(DefineConstants);NETSTANDARD
+ linq;ORM;database;DB;SQL;SqlServer
+ https://github.com/yuzd/AntData.ORM
+ https://github.com/yuzd/AntData.ORM/blob/master/MIT-LICENSE.txt
+ false
+ false
+ false
+ true
+ 1.5.5
+ AntData.Core
+ 1.5.5.0
+ 1.5.5.0
+
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- Settings.settings
-
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- Resources.resx
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
- PublicResXFileCodeGenerator
- Resources.Designer.cs
- Designer
-
+
+
+
+
-
- README.md
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
+
+
-
-
-
\ No newline at end of file
+
+
diff --git a/AntData/AntData.ORM/AntData.ORM.csproj.migration_in_place_backup b/AntData/AntData.ORM/AntData.ORM.csproj.migration_in_place_backup
new file mode 100644
index 0000000..0b4322b
--- /dev/null
+++ b/AntData/AntData.ORM/AntData.ORM.csproj.migration_in_place_backup
@@ -0,0 +1,439 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {8156E731-ED0A-404E-9A72-FCA6988270DA}
+ Library
+ Properties
+ AntData.ORM
+ AntData.ORM
+ v4.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ TRACE;DEBUG
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ Settings.settings
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PublicResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+
+
+ README.md
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
\ No newline at end of file
diff --git a/AntData/AntData.ORM/AntData.ORM.nuspec.fk b/AntData/AntData.ORM/AntData.ORM.nuspec.fk
new file mode 100644
index 0000000..76ddaa4
--- /dev/null
+++ b/AntData/AntData.ORM/AntData.ORM.nuspec.fk
@@ -0,0 +1,21 @@
+
+
+
+ AntData.ORM
+ 1.2.7
+ AntData.ORM
+ yuzd
+ nainaigu
+ https://github.com/yuzd/AntData.ORM
+ https://github.com/yuzd/AntData.ORM
+ https://github.com/yuzd/AntData.ORM
+ false
+ linq Orm 框架
+ 性能优化
+ Copyright nainaigu 2017
+ linq Orm
+
+
+
+
+
\ No newline at end of file
diff --git a/AntData/AntData.ORM/AntData.core.xproj b/AntData/AntData.ORM/AntData.core.xproj
deleted file mode 100644
index cfa3bca..0000000
--- a/AntData/AntData.ORM/AntData.core.xproj
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
- 68dd9365-bbe4-4d8d-bc65-532d13f0394f
- AntData.core
- .\obj
- .\bin\
- v4.5
-
-
-
- 2.0
-
-
-
-
-
-
-
diff --git a/AntData/AntData.ORM/Common/Configuration.cs b/AntData/AntData.ORM/Common/Configuration.cs
index 09f20cf..ade87d6 100644
--- a/AntData/AntData.ORM/Common/Configuration.cs
+++ b/AntData/AntData.ORM/Common/Configuration.cs
@@ -1,25 +1,63 @@
-using System;
using AntData.ORM.DbEngine.Configuration;
+using Microsoft.Extensions.Configuration;
+using System;
+using System.Collections.Generic;
namespace AntData.ORM.Common
{
public static class Configuration
- {
- public static bool IsStructIsScalarType = true;
- public static bool AvoidSpecificDataProviderAPI;
+ {
+ public static bool IsStructIsScalarType = true;
+ public static bool AvoidSpecificDataProviderAPI;
+
+ ///
+ /// DB ͲConfigļȡ
+ /// ע ֻڳʼʱ ˵ ֧reload
+ ///
+ public static DBSettings DBSettings { get; set; }
+
+
+ ///
+ /// netcore µöȡʽ
+ ///
+ ///
+ public static void UseDBConfig(IConfiguration config)
+ {
+ if (config == null)
+ {
+ throw new ArgumentException("config can not be null");
+ }
+ var dal = config.GetSection("dal");
+ if (dal == null)
+ {
+ throw new ArgumentException("dal section can not be found in config ");
+ }
+
+ var dbSettings = new List();
+
+ var children = dal.GetChildren();
+
+ foreach (IConfigurationSection child in children)
+ {
+ var bind = new DatabaseSettings();
+ child.Bind(bind);
+ dbSettings.Add(bind);
- ///
- /// DB ͲConfigļȡ
- /// ע ֻڳʼʱ ˵ ֧reload
- ///
- public static DBSettings DBSettings { get; set; }
+ if (bind.ConnectionItemList == null || bind.ConnectionItemList.Count < 1)
+ {
+ throw new ArgumentException("ConnectionItemList section can not be found in config ");
+ }
+ }
+
+ DBSettings = new DBSettings{DatabaseSettings = dbSettings};
+ }
public static class Linq
- {
- public static bool PreloadGroups;
- public static bool IgnoreEmptyUpdate;
- public static bool AllowMultipleQuery;
- public static bool GenerateExpressionTest;
+ {
+ public static bool PreloadGroups;
+ public static bool IgnoreEmptyUpdate;
+ public static bool AllowMultipleQuery = true;
+ public static bool GenerateExpressionTest;
public static bool OptimizeJoins = true;
///
/// If set to true unllable fields would be checked for IS NULL when comparasion type is NotEqual
@@ -36,7 +74,7 @@ public static class Linq
/// SELECT Value FROM MyEntity WHERE Value IS NULL OR Value != 10
///
///
- public static bool CheckNullForNotEquals = false;
+ public static bool CompareNullsAsValues = false;
///
/// ȫ Ƿnullֶ
///
@@ -61,13 +99,15 @@ public static class Linq
///
public static bool UseNoLock = false;
-
- }
+ public static bool DisableQueryCache =false;
+
- public static class LinqService
- {
- public static bool SerializeAssemblyQualifiedName;
- public static bool ThrowUnresolvedTypeException;
}
- }
+
+ public static class LinqService
+ {
+ public static bool SerializeAssemblyQualifiedName;
+ public static bool ThrowUnresolvedTypeException;
+ }
+ }
}
diff --git a/AntData/AntData.ORM/Common/ConvertInfo.cs b/AntData/AntData.ORM/Common/ConvertInfo.cs
index fd1a6d0..ab820d8 100644
--- a/AntData/AntData.ORM/Common/ConvertInfo.cs
+++ b/AntData/AntData.ORM/Common/ConvertInfo.cs
@@ -1,12 +1,13 @@
-using System;
+using AntData.ORM.Data;
+using System;
using System.Collections.Concurrent;
using System.Linq.Expressions;
namespace AntData.ORM.Common
{
- using Mapping;
+ using Mapping;
- class ConvertInfo
+ class ConvertInfo
{
public static ConvertInfo Default = new ConvertInfo();
@@ -28,7 +29,26 @@ public LambdaInfo(
public LambdaExpression CheckNullLambda;
public Delegate Delegate;
public bool IsSchemaSpecific;
- }
+
+ private Func