Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
bd847fff
Commit
bd847fff
authored
Nov 02, 2015
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the refs to make CoreCLR build/test/etc
parent
5576a3ed
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1949 additions
and
748 deletions
+1949
-748
Dapper.DNX.Tests.xproj
Dapper.DNX.Tests/Dapper.DNX.Tests.xproj
+3
-6
launchSettings.json
Dapper.DNX.Tests/Properties/launchSettings.json
+0
-3
project.json
Dapper.DNX.Tests/project.json
+21
-17
project.lock.json
Dapper.DNX.Tests/project.lock.json
+1321
-304
Dapper.DNX.sln
Dapper.DNX.sln
+12
-6
global.json
Dapper/global.json
+5
-0
project.json
Dapper/project.json
+72
-56
project.lock.json
Dapper/project.lock.json
+513
-354
Program.cs
Tests/Program.cs
+2
-2
No files found.
Dapper.DNX.Tests/Dapper.DNX.Tests.xproj
View file @
bd847fff
...
...
@@ -4,21 +4,18 @@
<VisualStudioVersion
Condition=
"'$(VisualStudioVersion)' == ''"
>
14.0
</VisualStudioVersion>
<VSToolsPath
Condition=
"'$(VSToolsPath)' == ''"
>
$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
</VSToolsPath>
</PropertyGroup>
<Import
Project=
"$(VSToolsPath)\
AspNet\Microsoft.Web.AspNet
.Props"
Condition=
"'$(VSToolsPath)' != ''"
/>
<Import
Project=
"$(VSToolsPath)\
DNX\Microsoft.DNX
.Props"
Condition=
"'$(VSToolsPath)' != ''"
/>
<PropertyGroup
Label=
"Globals"
>
<ProjectGuid>
b6eae030-3119-49c0-adb5-39e25ba60c4c
</ProjectGuid>
<ProjectGuid>
2ad7e470-9ac1-4f0a-a8c6-f19eea00593f
</ProjectGuid>
<RootNamespace>
Dapper.DNX.Tests
</RootNamespace>
<BaseIntermediateOutputPath
Condition=
"'$(BaseIntermediateOutputPath)'=='' "
>
..\artifacts\obj\$(MSBuildProjectName)
</BaseIntermediateOutputPath>
<OutputPath
Condition=
"'$(OutputPath)'=='' "
>
..\artifacts\bin\$(MSBuildProjectName)\
</OutputPath>
</PropertyGroup>
<PropertyGroup
Label=
"Configuration"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"
>
<AssemblyName>
Dapper.DNX.Tests
</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>
2.0
</SchemaVersion>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"
>
<ProduceOutputsOnBuild>
True
</ProduceOutputsOnBuild>
</PropertyGroup>
<Import
Project=
"$(VSToolsPath)\
AspNet\Microsoft.Web.AspNet
.targets"
Condition=
"'$(VSToolsPath)' != ''"
/>
<Import
Project=
"$(VSToolsPath)\
DNX\Microsoft.DNX
.targets"
Condition=
"'$(VSToolsPath)' != ''"
/>
</Project>
\ No newline at end of file
Dapper.DNX.Tests/Properties/launchSettings.json
deleted
100644 → 0
View file @
5576a3ed
{
"profiles"
:
{}
}
\ No newline at end of file
Dapper.DNX.Tests/project.json
View file @
bd847fff
{
"version"
:
"1.0.0-*"
,
"description"
:
"Dapper.DNX.Tests Console Application"
,
"authors"
:
[
"marc gravell"
],
"tags"
:
[
""
],
"projectUrl"
:
""
,
"licenseUrl"
:
""
,
"compile"
:
[
"../Tests/Tests.cs"
,
"../Tests/Program.cs"
,
"../Tests/Assert.cs"
,
"../DapperTests NET45/Tests.cs"
],
"dependencies"
:
{
"Dapper"
:
"1.43-*"
},
"commands"
:
{
"Dapper.DNX.Tests"
:
"Dapper.DNX.Tests"
},
"compile"
:
[
"../Tests/Tests.cs"
,
"../Tests/Program.cs"
,
"../Tests/Assert.cs"
,
"../DapperTests NET45/Tests.cs"
],
"compilationOptions"
:
{
"define"
:
[
"NOEXTERNALS"
]
},
"frameworks"
:
{
"net45"
:
{
"net45"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
,
"System.Xml"
:
"4.0.0.0"
}
},
"net40"
:
{
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
,
"System.Xml"
:
"4.0.0.0"
...
...
@@ -32,19 +39,16 @@
"System.Data"
:
"4.0.0.0"
,
"System.Xml"
:
"4.0.0.0"
}
},
"dnxcore50"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
]
,
"warningsAsErrors"
:
true
},
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
]
},
"dependencies"
:
{
"System.Console"
:
"4.0.0-beta-*"
,
"System.Reflection"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Data.Common"
:
"4.0.0"
,
"System.Data.SqlClient"
:
"4.0.0-beta-*"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Thread"
:
"4.0.0-beta-*"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
"Microsoft.CSharp"
:
"4.0.1-beta-23225"
,
"System.Collections"
:
"4.0.11-beta-23225"
,
"System.Console"
:
"4.0.0-beta-23225"
,
"System.Linq"
:
"4.0.1-beta-23225"
,
"System.Threading"
:
"4.0.11-beta-23225"
,
"System.Data.SqlClient"
:
"4.0.0-beta-23225"
}
}
}
...
...
Dapper.DNX.Tests/project.lock.json
View file @
bd847fff
{
"locked"
:
false
,
"version"
:
-9996
,
"version"
:
1
,
"targets"
:
{
".NETFramework,Version=v4.5"
:
{},
".NETFramework,Version=v4.0"
:
{},
"DNX,Version=v4.5.1"
:
{},
".NETFramework,Version=v4.5"
:
{
"Dapper/1.43-beta1"
:
{
"type"
:
"project"
,
"frameworkAssemblies"
:
[
"System.Data"
]
}
},
".NETFramework,Version=v4.0"
:
{
"Dapper/1.43-beta1"
:
{
"type"
:
"project"
,
"frameworkAssemblies"
:
[
"System.Data"
]
}
},
"DNX,Version=v4.5.1"
:
{
"Dapper/1.43-beta1"
:
{
"type"
:
"project"
,
"frameworkAssemblies"
:
[
"System.Data"
]
}
},
"DNXCore,Version=v5.0"
:
{
"Microsoft.CSharp/4.0.0"
:
{
"Dapper/1.43-beta1"
:
{
"type"
:
"project"
,
"dependencies"
:
{
"Microsoft.CSharp"
:
"4.0.1-beta"
,
"System.Collections"
:
"4.0.11-beta"
,
"System.Collections.Concurrent"
:
"4.0.11-beta"
,
"System.Console"
:
"4.0.0-beta"
,
"System.Data.SqlClient"
:
"4.0.0"
,
"System.Linq"
:
"4.0.1-beta"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.1-beta"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.1-beta"
,
"System.Reflection.TypeExtensions"
:
"4.0.1-beta"
,
"System.Text.RegularExpressions"
:
"4.0.11-beta"
,
"System.Threading"
:
"4.0.11-beta"
}
},
"Microsoft.CSharp/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Dynamic.Runtime"
:
"4.0.0"
,
"System.Linq.Expressions"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Linq"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Reflection.Extensions"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Dynamic.Runtime"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Linq.Expressions"
:
"4.0.0"
,
"System.ObjectModel"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Reflection.Extensions"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.ObjectModel"
:
"4.0.10"
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/Microsoft.CSharp.dll"
:
{}
...
...
@@ -32,9 +70,23 @@
"lib/dotnet/Microsoft.CSharp.dll"
:
{}
}
},
"System.Collections/4.0.10"
:
{
"Microsoft.Win32.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.InteropServices"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/Microsoft.Win32.Primitives.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/Microsoft.Win32.Primitives.dll"
:
{}
}
},
"System.Collections/4.0.11-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.21-beta-23225"
},
"compile"
:
{
"ref/dotnet/System.Collections.dll"
:
{}
...
...
@@ -43,17 +95,18 @@
"lib/DNXCore50/System.Collections.dll"
:
{}
}
},
"System.Collections.Concurrent/4.0.10"
:
{
"System.Collections.Concurrent/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Threading.Tasks
"
:
"4.0.10"
,
"System.
Collections"
:
"4.0.1
0"
,
"System.
Diagnostics.Debug
"
:
"4.0.10"
,
"System.Diagnostics.Tracing"
:
"4.0.20"
,
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
"System.Threading"
:
"4.0.10"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Collections.Concurrent.dll"
:
{}
...
...
@@ -63,13 +116,14 @@
}
},
"System.Collections.NonGeneric/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Diagnostics.Debug"
:
"4.0.1
0"
,
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.
Diagnostics.Debug"
:
"4.0.1
0"
,
"System.
Threading
"
:
"4.0.10"
,
"System.
Runtime.Extensions
"
:
"4.0.10"
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Runtime.Extensions
"
:
"4.0.10"
,
"System.
Threading
"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Collections.NonGeneric.dll"
:
{}
...
...
@@ -78,26 +132,53 @@
"lib/dotnet/System.Collections.NonGeneric.dll"
:
{}
}
},
"System.Console/4.0.0-beta-23409"
:
{
"System.ComponentModel.EventBasedAsync/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.IO"
:
"4.0.0"
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll"
:
{}
}
},
"System.Console/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.10"
,
"System.IO.FileSystem.Primitives"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Text.Encoding.Extensions"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Console.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Console.dll"
:
{}
}
},
"System.Data.Common/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Threading.Tasks"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Collections.NonGeneric"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
,
"System.IO"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Text.RegularExpressions"
:
"4.0.0"
,
"System.Collections.NonGeneric"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
"System.Text.RegularExpressions"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Data.Common.dll"
:
{}
...
...
@@ -106,20 +187,49 @@
"lib/dotnet/System.Data.Common.dll"
:
{}
}
},
"System.Data.SqlClient/4.0.0-beta-23409"
:
{
"System.Data.SqlClient/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"
System.Runtime
"
:
"4.0.0"
,
"System.
IO"
:
"4.0.
0"
,
"System.
Globalization
"
:
"4.0.0"
,
"System.
Xml.ReaderWriter
"
:
"4.0.0"
,
"
Microsoft.Win32.Primitives
"
:
"4.0.0"
,
"System.
Collections"
:
"4.0.1
0"
,
"System.
Collections.Concurrent
"
:
"4.0.0"
,
"System.
Collections.NonGeneric
"
:
"4.0.0"
,
"System.Data.Common"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.IO"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Net.Primitives"
:
"4.0.10"
,
"System.Net.Security"
:
"4.0.0-beta-23225"
,
"System.Net.Sockets"
:
"4.0.10-beta-23225"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Security.Cryptography.X509Certificates"
:
"4.0.0-beta-23225"
,
"System.Security.Principal.Windows"
:
"4.0.0-beta-23225"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Text.Encoding.CodePages"
:
"4.0.0"
,
"System.Text.RegularExpressions"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Tasks"
:
"4.0.10"
,
"System.Threading.Thread"
:
"4.0.0-beta-23225"
,
"System.Threading.ThreadPool"
:
"4.0.0-beta-23225"
,
"System.Threading.Timer"
:
"4.0.0"
,
"System.Xml.ReaderWriter"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Data.SqlClient.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Data.SqlClient.dll"
:
{}
}
},
"System.Diagnostics.Debug/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -131,6 +241,7 @@
}
},
"System.Diagnostics.Tracing/4.0.20"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -142,6 +253,7 @@
}
},
"System.Dynamic.Runtime/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Linq.Expressions"
:
"4.0.0"
,
"System.ObjectModel"
:
"4.0.0"
,
...
...
@@ -153,6 +265,7 @@
}
},
"System.Globalization/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -163,7 +276,21 @@
"lib/DNXCore50/System.Globalization.dll"
:
{}
}
},
"System.Globalization.Calendars/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Globalization"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Globalization.Calendars.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Globalization.Calendars.dll"
:
{}
}
},
"System.IO/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.0"
,
...
...
@@ -176,12 +303,49 @@
"lib/DNXCore50/System.IO.dll"
:
{}
}
},
"System.Linq/4.0.0"
:
{
"System.IO.FileSystem/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Collections"
:
"4.0.10"
,
"System.IO"
:
"4.0.10"
,
"System.IO.FileSystem.Primitives"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Text.Encoding.Extensions"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Overlapped"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.IO.FileSystem.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.IO.FileSystem.dll"
:
{}
}
},
"System.IO.FileSystem.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/System.IO.FileSystem.Primitives.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.IO.FileSystem.Primitives.dll"
:
{}
}
},
"System.Linq/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
},
"compile"
:
{
...
...
@@ -192,6 +356,7 @@
}
},
"System.Linq.Expressions/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Reflection"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
...
...
@@ -200,12 +365,50 @@
"ref/dotnet/System.Linq.Expressions.dll"
:
{}
}
},
"System.Net.Primitives/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Private.Networking"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Net.Primitives.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Net.Primitives.dll"
:
{}
}
},
"System.Net.Security/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Private.Networking"
:
"4.0.1-beta-23225"
},
"compile"
:
{
"ref/dotnet/System.Net.Security.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Net.Security.dll"
:
{}
}
},
"System.Net.Sockets/4.1.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Private.Networking"
:
"4.0.1-beta-23225"
,
"System.Runtime"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/System.Net.Sockets.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Net.Sockets.dll"
:
{}
}
},
"System.ObjectModel/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
...
...
@@ -215,44 +418,66 @@
"lib/dotnet/System.ObjectModel.dll"
:
{}
}
},
"System.Private.Uri/4.0.0"
:
{
"runtime"
:
{
"lib/DNXCore50/System.Private.Uri.dll"
:
{}
}
},
"System.Reflection/4.0.10"
:
{
"System.Private.Networking/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"Microsoft.Win32.Primitives"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Collections.Concurrent"
:
"4.0.0"
,
"System.Collections.NonGeneric"
:
"4.0.0"
,
"System.ComponentModel.EventBasedAsync"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Diagnostics.Tracing"
:
"4.0.20"
,
"System.Globalization"
:
"4.0.10"
,
"System.IO"
:
"4.0.10"
,
"System.IO.FileSystem"
:
"4.0.0"
,
"System.IO.FileSystem.Primitives"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.IO"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Security.Cryptography.Primitives"
:
"4.0.0-beta-23225"
,
"System.Threading"
:
"4.0.10"
,
"System.Threading.Overlapped"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/d
otnet/System.Reflection.dll
"
:
{}
"ref/d
nxcore50/_._
"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Reflection.dll"
:
{}
"lib/DNXCore50/System.Private.Networking.dll"
:
{}
}
},
"System.Private.Uri/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"compile"
:
{
"ref/dnxcore50/_._"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Private.Uri.dll"
:
{}
}
},
"System.Reflection.Emit/4.0.0"
:
{
"System.Reflection/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.IO"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/System.Reflection.
Emit.
dll"
:
{}
"ref/dotnet/System.Reflection.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Reflection.
Emit.
dll"
:
{}
"lib/DNXCore50/System.Reflection.dll"
:
{}
}
},
"System.Reflection.Emit.ILGeneration/4.0.0"
:
{
"System.Reflection.Emit.ILGeneration/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Emit.ILGeneration.dll"
:
{}
...
...
@@ -261,12 +486,13 @@
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll"
:
{}
}
},
"System.Reflection.Emit.Lightweight/4.0.0"
:
{
"System.Reflection.Emit.Lightweight/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Emit.Lightweight.dll"
:
{}
...
...
@@ -276,9 +502,10 @@
}
},
"System.Reflection.Extensions/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.R
untime
"
:
"4.0.0"
,
"System.R
eflection
"
:
"4.0.0"
"System.R
eflection
"
:
"4.0.0"
,
"System.R
untime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Extensions.dll"
:
{}
...
...
@@ -288,6 +515,7 @@
}
},
"System.Reflection.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -298,10 +526,11 @@
"lib/DNXCore50/System.Reflection.Primitives.dll"
:
{}
}
},
"System.Reflection.TypeExtensions/4.0.0"
:
{
"System.Reflection.TypeExtensions/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.R
untime
"
:
"4.0.0"
,
"System.R
eflection
"
:
"4.0.0"
"System.R
eflection
"
:
"4.0.0"
,
"System.R
untime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.TypeExtensions.dll"
:
{}
...
...
@@ -311,10 +540,11 @@
}
},
"System.Resources.ResourceManager/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime
"
:
"4.0.0"
,
"System.
Globalization
"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.
Globalization
"
:
"4.0.0"
"System.
Runtime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Resources.ResourceManager.dll"
:
{}
...
...
@@ -323,9 +553,10 @@
"lib/DNXCore50/System.Resources.ResourceManager.dll"
:
{}
}
},
"System.Runtime/4.0.20"
:
{
"System.Runtime/4.0.21-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Private.Uri"
:
"4.0.
0
"
"System.Private.Uri"
:
"4.0.
1-beta-23225
"
},
"compile"
:
{
"ref/dotnet/System.Runtime.dll"
:
{}
...
...
@@ -335,6 +566,7 @@
}
},
"System.Runtime.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
},
...
...
@@ -346,6 +578,7 @@
}
},
"System.Runtime.Handles/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -357,10 +590,11 @@
}
},
"System.Runtime.InteropServices/4.0.20"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Runtime.Handles"
:
"4.0.0"
},
"compile"
:
{
...
...
@@ -370,44 +604,229 @@
"lib/DNXCore50/System.Runtime.InteropServices.dll"
:
{}
}
},
"System.Text.Encoding/4.0.10"
:
{
"System.Runtime.Numerics/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.
Text.Encoding
.dll"
:
{}
"ref/dotnet/System.
Runtime.Numerics
.dll"
:
{}
},
"runtime"
:
{
"lib/
DNXCore50/System.Text.Encoding
.dll"
:
{}
"lib/
dotnet/System.Runtime.Numerics
.dll"
:
{}
}
},
"System.Text.Encoding.CodePages/4.0.0"
:
{
"System.Security.Claims/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.0"
,
"System.IO"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.0"
,
"System.Security.Principal"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Security.Claims.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.Security.Claims.dll"
:
{}
}
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Security.Cryptography.Primitives"
:
"4.0.0-beta-23225"
,
"System.Text.Encoding"
:
"4.0.0"
,
"System.Text.Encoding.Extensions"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Security.Cryptography.Algorithms.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Security.Cryptography.Algorithms.dll"
:
{}
}
},
"System.Security.Cryptography.Csp/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Security.Cryptography.Algorithms"
:
"4.0.0-beta-23225"
,
"System.Security.Cryptography.Encoding"
:
"4.0.0-beta-23225"
,
"System.Security.Cryptography.Primitives"
:
"4.0.0-beta-23225"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Security.Cryptography.Csp.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Security.Cryptography.Csp.dll"
:
{}
}
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Security.Cryptography.Primitives"
:
"4.0.0-beta-23225"
},
"compile"
:
{
"ref/dotnet/System.Security.Cryptography.Encoding.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Security.Cryptography.Encoding.dll"
:
{}
}
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Globalization"
:
"4.0.0"
,
"System.IO"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/System.Security.Cryptography.Primitives.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Security.Cryptography.Primitives.dll"
:
{}
}
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.Runtime.Extensions"
:
"4.0.10"
"System.Globalization.Calendars"
:
"4.0.0"
,
"System.IO"
:
"4.0.10"
,
"System.IO.FileSystem"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Runtime.Numerics"
:
"4.0.0"
,
"System.Security.Cryptography.Algorithms"
:
"4.0.0-beta-23225"
,
"System.Security.Cryptography.Csp"
:
"4.0.0-beta-23225"
,
"System.Security.Cryptography.Encoding"
:
"4.0.0-beta-23225"
,
"System.Security.Cryptography.Primitives"
:
"4.0.0-beta-23225"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.
Text.Encoding.CodePag
es.dll"
:
{}
"ref/dotnet/System.
Security.Cryptography.X509Certificat
es.dll"
:
{}
},
"runtime"
:
{
"lib/
dotnet/System.Text.Encoding.CodePag
es.dll"
:
{}
"lib/
DNXCore50/System.Security.Cryptography.X509Certificat
es.dll"
:
{}
}
},
"System.Text.RegularExpressions/4.0.10"
:
{
"System.Security.Principal/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Security.Principal.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.Security.Principal.dll"
:
{}
}
},
"System.Security.Principal.Windows/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.0"
,
"System.Security.Claims"
:
"4.0.0"
,
"System.Security.Principal"
:
"4.0.0"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Security.Principal.Windows.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Security.Principal.Windows.dll"
:
{}
}
},
"System.Text.Encoding/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Text.Encoding.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Text.Encoding.dll"
:
{}
}
},
"System.Text.Encoding.CodePages/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.IO"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Text.Encoding.CodePages.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.Text.Encoding.CodePages.dll"
:
{}
}
},
"System.Text.Encoding.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Text.Encoding"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Text.Encoding.Extensions.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Text.Encoding.Extensions.dll"
:
{}
}
},
"System.Text.RegularExpressions/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Collections"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
},
...
...
@@ -418,7 +837,8 @@
"lib/dotnet/System.Text.RegularExpressions.dll"
:
{}
}
},
"System.Threading/4.0.10"
:
{
"System.Threading/4.0.11-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
...
...
@@ -430,29 +850,70 @@
"lib/DNXCore50/System.Threading.dll"
:
{}
}
},
"System.Threading.Tasks/4.0.10"
:
{
"System.Threading.Overlapped/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Runtime.Handles"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Threading.Overlapped.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Threading.Overlapped.dll"
:
{}
}
},
"System.Threading.Tasks/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Threading.Tasks.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Threading.Tasks.dll"
:
{}
}
},
"System.Threading.Thread/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Threading.Thread.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Threading.Thread.dll"
:
{}
}
},
"System.Threading.ThreadPool/4.0.10-beta-22231"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
"System.Runtime"
:
"4.0.0-beta-22231"
,
"System.Runtime.InteropServices"
:
"4.0.0-beta-22231"
},
"compile"
:
{
"
ref/dotnet/System.Threading.Tasks
.dll"
:
{}
"
lib/contract/System.Threading.ThreadPool
.dll"
:
{}
},
"runtime"
:
{
"lib/
DNXCore50/System.Threading.Tasks
.dll"
:
{}
"lib/
aspnetcore50/System.Threading.ThreadPool
.dll"
:
{}
}
},
"System.Threading.Thread/4.0.0-beta-23409"
:
{
"System.Threading.Timer/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Threading.T
hread
.dll"
:
{}
"ref/dotnet/System.Threading.T
imer
.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Threading.T
hread
.dll"
:
{}
"lib/DNXCore50/System.Threading.T
imer
.dll"
:
{}
}
},
"System.Xml.ReaderWriter/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
...
...
@@ -466,9 +927,14 @@
}
},
"libraries"
:
{
"Microsoft.CSharp/4.0.0"
:
{
"Dapper/1.43-beta1"
:
{
"type"
:
"project"
,
"path"
:
"../Dapper/project.json"
},
"Microsoft.CSharp/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A
=="
,
"sha512"
:
"
q7jNvFpp94FaQnsucNv5BTXEXAKN1p84YUOHHVRMxNhgNjDxiTMqqk2XMAHjNBCbJmGIoeVrNjdfI1+JAOcS5w
=="
,
"files"
:
[
"lib/dotnet/Microsoft.CSharp.dll"
,
"lib/MonoAndroid10/_._"
,
...
...
@@ -480,25 +946,14 @@
"lib/wpa81/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"Microsoft.CSharp.4.0.
0
.nupkg"
,
"Microsoft.CSharp.4.0.
0
.nupkg.sha512"
,
"Microsoft.CSharp.4.0.
1-beta-23225
.nupkg"
,
"Microsoft.CSharp.4.0.
1-beta-23225
.nupkg.sha512"
,
"Microsoft.CSharp.nuspec"
,
"ref/dotnet/de/Microsoft.CSharp.xml"
,
"ref/dotnet/es/Microsoft.CSharp.xml"
,
"ref/dotnet/fr/Microsoft.CSharp.xml"
,
"ref/dotnet/it/Microsoft.CSharp.xml"
,
"ref/dotnet/ja/Microsoft.CSharp.xml"
,
"ref/dotnet/ko/Microsoft.CSharp.xml"
,
"ref/dotnet/Microsoft.CSharp.dll"
,
"ref/dotnet/Microsoft.CSharp.xml"
,
"ref/dotnet/ru/Microsoft.CSharp.xml"
,
"ref/dotnet/zh-hans/Microsoft.CSharp.xml"
,
"ref/dotnet/zh-hant/Microsoft.CSharp.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net45/_._"
,
"ref/netcore50/Microsoft.CSharp.dll"
,
"ref/netcore50/Microsoft.CSharp.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
...
...
@@ -506,9 +961,42 @@
"ref/xamarinmac20/_._"
]
},
"System.Collections/4.0.10"
:
{
"Microsoft.Win32.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg=="
,
"files"
:
[
"lib/dotnet/Microsoft.Win32.Primitives.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/Microsoft.Win32.Primitives.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"Microsoft.Win32.Primitives.4.0.0.nupkg"
,
"Microsoft.Win32.Primitives.4.0.0.nupkg.sha512"
,
"Microsoft.Win32.Primitives.nuspec"
,
"ref/dotnet/de/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/es/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/fr/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/it/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/ja/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/ko/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/Microsoft.Win32.Primitives.dll"
,
"ref/dotnet/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/ru/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml"
,
"ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/Microsoft.Win32.Primitives.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
]
},
"System.Collections/4.0.11-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw
=="
,
"sha512"
:
"
a0TAXwml5Up4s0Wn/l6OTaLgyj+AtqWjDCCnuJAE/UXwe0VY7oXLaPmBb08NQ2Q2PnJTnElTZeXB0i9faMsezQ
=="
,
"files"
:
[
"lib/DNXCore50/System.Collections.dll"
,
"lib/MonoAndroid10/_._"
,
...
...
@@ -517,60 +1005,52 @@
"lib/netcore50/System.Collections.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Collections.xml"
,
"ref/dotnet/es/System.Collections.xml"
,
"ref/dotnet/fr/System.Collections.xml"
,
"ref/dotnet/it/System.Collections.xml"
,
"ref/dotnet/ja/System.Collections.xml"
,
"ref/dotnet/ko/System.Collections.xml"
,
"ref/dotnet/ru/System.Collections.xml"
,
"ref/dotnet/System.Collections.dll"
,
"ref/dotnet/System.Collections.xml"
,
"ref/dotnet/zh-hans/System.Collections.xml"
,
"ref/dotnet/zh-hant/System.Collections.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Collections.dll"
,
"System.Collections.4.0.1
0
.nupkg"
,
"System.Collections.4.0.1
0
.nupkg.sha512"
,
"System.Collections.4.0.1
1-beta-23225
.nupkg"
,
"System.Collections.4.0.1
1-beta-23225
.nupkg.sha512"
,
"System.Collections.nuspec"
]
},
"System.Collections.Concurrent/4.0.10"
:
{
"System.Collections.Concurrent/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw
=="
,
"sha512"
:
"
TgSZK3wQJBbv9jK5sdGyEle1YSslFgRLwXY67CWJWOKwVo/ueEyqeItQ2oZId8Rus8px/sdnXPotbMXC78ZMQQ
=="
,
"files"
:
[
"lib/dotnet/de/System.Collections.Concurrent.xml"
,
"lib/dotnet/es/System.Collections.Concurrent.xml"
,
"lib/dotnet/fr/System.Collections.Concurrent.xml"
,
"lib/dotnet/it/System.Collections.Concurrent.xml"
,
"lib/dotnet/ja/System.Collections.Concurrent.xml"
,
"lib/dotnet/ko/System.Collections.Concurrent.xml"
,
"lib/dotnet/ru/System.Collections.Concurrent.xml"
,
"lib/dotnet/System.Collections.Concurrent.dll"
,
"lib/dotnet/System.Collections.Concurrent.xml"
,
"lib/dotnet/zh-hans/System.Collections.Concurrent.xml"
,
"lib/dotnet/zh-hant/System.Collections.Concurrent.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Collections.Concurrent.xml"
,
"ref/dotnet/es/System.Collections.Concurrent.xml"
,
"ref/dotnet/fr/System.Collections.Concurrent.xml"
,
"ref/dotnet/it/System.Collections.Concurrent.xml"
,
"ref/dotnet/ja/System.Collections.Concurrent.xml"
,
"ref/dotnet/ko/System.Collections.Concurrent.xml"
,
"ref/dotnet/ru/System.Collections.Concurrent.xml"
,
"ref/dotnet/System.Collections.Concurrent.dll"
,
"ref/dotnet/System.Collections.Concurrent.xml"
,
"ref/dotnet/zh-hans/System.Collections.Concurrent.xml"
,
"ref/dotnet/zh-hant/System.Collections.Concurrent.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Collections.Concurrent.4.0.1
0
.nupkg"
,
"System.Collections.Concurrent.4.0.1
0
.nupkg.sha512"
,
"System.Collections.Concurrent.4.0.1
1-beta-23409
.nupkg"
,
"System.Collections.Concurrent.4.0.1
1-beta-23409
.nupkg.sha512"
,
"System.Collections.Concurrent.nuspec"
]
},
"System.Collections.NonGeneric/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA=="
,
"files"
:
[
...
...
@@ -601,14 +1081,44 @@
"System.Collections.NonGeneric.nuspec"
]
},
"System.Console/4.0.0-beta-23409"
:
{
"System.ComponentModel.EventBasedAsync/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
vVstiHq9NKm6jfqm2OQGYgEinU4Zrwbcjtfxq61v0xHXVhx8p3igw9XQCdCOILf1ZWsZtKcvdbcazNP7tL+u+g
=="
,
"sha512"
:
"
d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw
=="
,
"files"
:
[
"runtime.json"
,
"System.Console.4.0.0-beta-23409.nupkg"
,
"System.Console.4.0.0-beta-23409.nupkg.sha512"
,
"System.Console.nuspec"
,
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll"
,
"ref/dotnet/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml"
,
"ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.ComponentModel.EventBasedAsync.4.0.10.nupkg"
,
"System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512"
,
"System.ComponentModel.EventBasedAsync.nuspec"
]
},
"System.Console/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"zjjI63CYWqCUAzSCei5oz/A7FASxw4T3noBOMc+N5HaXYX6HoDp8E9Mhk7xLFoV4eflQnezkvmLaIReTR70Ydg=="
,
"files"
:
[
"lib/DNXCore50/System.Console.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Console.dll"
,
...
...
@@ -619,10 +1129,14 @@
"ref/MonoTouch10/_._"
,
"ref/net46/System.Console.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
"ref/xamarinmac20/_._"
,
"System.Console.4.0.0-beta-23225.nupkg"
,
"System.Console.4.0.0-beta-23225.nupkg.sha512"
,
"System.Console.nuspec"
]
},
"System.Data.Common/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg=="
,
"files"
:
[
...
...
@@ -653,14 +1167,12 @@
"System.Data.Common.nuspec"
]
},
"System.Data.SqlClient/4.0.0-beta-23409"
:
{
"System.Data.SqlClient/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
4nXlamQPqLGhdLzMoBgJb619MtpiEvjjJEphD6V0cj7uj9DJs4Gqw4JkSj7rf95QX6DJhI4Zc3lUsu2MkqHrIg
=="
,
"sha512"
:
"
Gja/sCVUzqXsk0R3efmK6vgEitbzb2vpG4+5ivjdiPbPivMKHs5ufQyko7/Naz8xEEK439sHcIJQQjvJa7D+Jw
=="
,
"files"
:
[
"runtime.json"
,
"System.Data.SqlClient.4.0.0-beta-23409.nupkg"
,
"System.Data.SqlClient.4.0.0-beta-23409.nupkg.sha512"
,
"System.Data.SqlClient.nuspec"
,
"lib/DNXCore50/System.Data.SqlClient.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Data.SqlClient.dll"
,
...
...
@@ -671,10 +1183,15 @@
"ref/MonoTouch10/_._"
,
"ref/net46/System.Data.SqlClient.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
"ref/xamarinmac20/_._"
,
"runtime.json"
,
"System.Data.SqlClient.4.0.0-beta-23225.nupkg"
,
"System.Data.SqlClient.4.0.0-beta-23225.nupkg.sha512"
,
"System.Data.SqlClient.nuspec"
]
},
"System.Diagnostics.Debug/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g=="
,
"files"
:
[
...
...
@@ -708,6 +1225,7 @@
]
},
"System.Diagnostics.Tracing/4.0.20"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw=="
,
"files"
:
[
...
...
@@ -741,6 +1259,7 @@
]
},
"System.Dynamic.Runtime/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"33os71rQUCLjM5pbhQqCopq9/YcqBHPBQ8WylrzNk3oJmfAR0SFwzZIKJRN2JcrkBYdzC/NtWrYVU8oroyZieA=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
...
...
@@ -788,6 +1307,7 @@
]
},
"System.Globalization/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw=="
,
"files"
:
[
"lib/DNXCore50/System.Globalization.dll"
,
...
...
@@ -819,7 +1339,41 @@
"System.Globalization.nuspec"
]
},
"System.Globalization.Calendars/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA=="
,
"files"
:
[
"lib/DNXCore50/System.Globalization.Calendars.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Globalization.Calendars.dll"
,
"lib/netcore50/System.Globalization.Calendars.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Globalization.Calendars.xml"
,
"ref/dotnet/es/System.Globalization.Calendars.xml"
,
"ref/dotnet/fr/System.Globalization.Calendars.xml"
,
"ref/dotnet/it/System.Globalization.Calendars.xml"
,
"ref/dotnet/ja/System.Globalization.Calendars.xml"
,
"ref/dotnet/ko/System.Globalization.Calendars.xml"
,
"ref/dotnet/ru/System.Globalization.Calendars.xml"
,
"ref/dotnet/System.Globalization.Calendars.dll"
,
"ref/dotnet/System.Globalization.Calendars.xml"
,
"ref/dotnet/zh-hans/System.Globalization.Calendars.xml"
,
"ref/dotnet/zh-hant/System.Globalization.Calendars.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Globalization.Calendars.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll"
,
"System.Globalization.Calendars.4.0.0.nupkg"
,
"System.Globalization.Calendars.4.0.0.nupkg.sha512"
,
"System.Globalization.Calendars.nuspec"
]
},
"System.IO/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ=="
,
"files"
:
[
...
...
@@ -852,9 +1406,75 @@
"System.IO.nuspec"
]
},
"System.Linq/4.0.0"
:
{
"System.IO.FileSystem/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ=="
,
"files"
:
[
"lib/DNXCore50/System.IO.FileSystem.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.IO.FileSystem.dll"
,
"lib/netcore50/System.IO.FileSystem.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.IO.FileSystem.xml"
,
"ref/dotnet/es/System.IO.FileSystem.xml"
,
"ref/dotnet/fr/System.IO.FileSystem.xml"
,
"ref/dotnet/it/System.IO.FileSystem.xml"
,
"ref/dotnet/ja/System.IO.FileSystem.xml"
,
"ref/dotnet/ko/System.IO.FileSystem.xml"
,
"ref/dotnet/ru/System.IO.FileSystem.xml"
,
"ref/dotnet/System.IO.FileSystem.dll"
,
"ref/dotnet/System.IO.FileSystem.xml"
,
"ref/dotnet/zh-hans/System.IO.FileSystem.xml"
,
"ref/dotnet/zh-hant/System.IO.FileSystem.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.IO.FileSystem.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.IO.FileSystem.4.0.0.nupkg"
,
"System.IO.FileSystem.4.0.0.nupkg.sha512"
,
"System.IO.FileSystem.nuspec"
]
},
"System.IO.FileSystem.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA=="
,
"files"
:
[
"lib/dotnet/System.IO.FileSystem.Primitives.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.IO.FileSystem.Primitives.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/es/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/fr/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/it/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/ja/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/ko/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/ru/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/System.IO.FileSystem.Primitives.dll"
,
"ref/dotnet/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml"
,
"ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.IO.FileSystem.Primitives.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.IO.FileSystem.Primitives.4.0.0.nupkg"
,
"System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512"
,
"System.IO.FileSystem.Primitives.nuspec"
]
},
"System.Linq/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg
=="
,
"sha512"
:
"
7wKcd3jtQrVSKshlyOJ3X43AU5rwArScYMYgtbyZmzBViJogfFiJfnSzBfzm5XsmJaUOfbCoVj+jdrMOJtdpgQ
=="
,
"files"
:
[
"lib/dotnet/System.Linq.dll"
,
"lib/net45/_._"
,
...
...
@@ -862,29 +1482,19 @@
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"ref/dotnet/de/System.Linq.xml"
,
"ref/dotnet/es/System.Linq.xml"
,
"ref/dotnet/fr/System.Linq.xml"
,
"ref/dotnet/it/System.Linq.xml"
,
"ref/dotnet/ja/System.Linq.xml"
,
"ref/dotnet/ko/System.Linq.xml"
,
"ref/dotnet/ru/System.Linq.xml"
,
"ref/dotnet/System.Linq.dll"
,
"ref/dotnet/System.Linq.xml"
,
"ref/dotnet/zh-hans/System.Linq.xml"
,
"ref/dotnet/zh-hant/System.Linq.xml"
,
"ref/net45/_._"
,
"ref/netcore50/System.Linq.dll"
,
"ref/netcore50/System.Linq.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"System.Linq.4.0.
0
.nupkg"
,
"System.Linq.4.0.
0
.nupkg.sha512"
,
"System.Linq.4.0.
1-beta-23225
.nupkg"
,
"System.Linq.4.0.
1-beta-23225
.nupkg.sha512"
,
"System.Linq.nuspec"
]
},
"System.Linq.Expressions/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"wlfVllrKi+evu4Hi8yoJP1dSOVXbvsy7Hs1+oz4Cykfdf6MQTPlD3LI4WKWhprn8FpU5MS3spPSbcMX5sAoJSw=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
...
...
@@ -931,7 +1541,85 @@
"System.Linq.Expressions.nuspec"
]
},
"System.Net.Primitives/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg=="
,
"files"
:
[
"lib/DNXCore50/System.Net.Primitives.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/System.Net.Primitives.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Net.Primitives.xml"
,
"ref/dotnet/es/System.Net.Primitives.xml"
,
"ref/dotnet/fr/System.Net.Primitives.xml"
,
"ref/dotnet/it/System.Net.Primitives.xml"
,
"ref/dotnet/ja/System.Net.Primitives.xml"
,
"ref/dotnet/ko/System.Net.Primitives.xml"
,
"ref/dotnet/ru/System.Net.Primitives.xml"
,
"ref/dotnet/System.Net.Primitives.dll"
,
"ref/dotnet/System.Net.Primitives.xml"
,
"ref/dotnet/zh-hans/System.Net.Primitives.xml"
,
"ref/dotnet/zh-hant/System.Net.Primitives.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Net.Primitives.4.0.10.nupkg"
,
"System.Net.Primitives.4.0.10.nupkg.sha512"
,
"System.Net.Primitives.nuspec"
]
},
"System.Net.Security/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"L1KaeuRgF2ncTb5Z49nI8qyESWgDfqlHTuVrCiFiKjDjhsKaNSNkS2hcToQ1dYR7jvHfOb3r3OcMkdZMDKYIOA=="
,
"files"
:
[
"lib/DNXCore50/System.Net.Security.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Net.Security.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Net.Security.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Net.Security.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Net.Security.4.0.0-beta-23225.nupkg"
,
"System.Net.Security.4.0.0-beta-23225.nupkg.sha512"
,
"System.Net.Security.nuspec"
]
},
"System.Net.Sockets/4.1.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"9wupz6i8AONzdzaLglcYImU25ivdcKmBXnf9GxE0eS1QqRGWQcWkKyv4dyxMc9E0gt4UuTIktn2FLjrz8ir6sw=="
,
"files"
:
[
"lib/DNXCore50/System.Net.Sockets.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Net.Sockets.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Net.Sockets.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Net.Sockets.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Net.Sockets.4.1.0-beta-23225.nupkg"
,
"System.Net.Sockets.4.1.0-beta-23225.nupkg.sha512"
,
"System.Net.Sockets.nuspec"
]
},
"System.ObjectModel/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA=="
,
"files"
:
[
...
...
@@ -962,21 +1650,37 @@
"System.ObjectModel.nuspec"
]
},
"System.Private.Uri/4.0.0"
:
{
"System.Private.Networking/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"PcMdwhnkodbZmOj2RGGH/I5LvsIIdC+GJHORHnvdRFLUZNqIJE/0mEfA2BhWj5wiEbp8TlLyj/vEX6CXE8IKPQ=="
,
"files"
:
[
"lib/DNXCore50/System.Private.Networking.dll"
,
"lib/netcore50/System.Private.Networking.dll"
,
"ref/dnxcore50/_._"
,
"ref/netcore50/_._"
,
"System.Private.Networking.4.0.1-beta-23225.nupkg"
,
"System.Private.Networking.4.0.1-beta-23225.nupkg.sha512"
,
"System.Private.Networking.nuspec"
]
},
"System.Private.Uri/4.0.1-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA
=="
,
"sha512"
:
"
tdISJm43+PN5cC3iLGrbmsWGjlOo2Ot3ZKxNYkKD9iUtj458iotJLftK4LkV02xvGGV4xM2Ef04AhwWB6FnQBw
=="
,
"files"
:
[
"lib/DNXCore50/System.Private.Uri.dll"
,
"lib/netcore50/System.Private.Uri.dll"
,
"ref/dnxcore50/_._"
,
"ref/netcore50/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
,
"System.Private.Uri.4.0.
0
.nupkg"
,
"System.Private.Uri.4.0.
0
.nupkg.sha512"
,
"System.Private.Uri.4.0.
1-beta-23225
.nupkg"
,
"System.Private.Uri.4.0.
1-beta-23225
.nupkg.sha512"
,
"System.Private.Uri.nuspec"
]
},
"System.Reflection/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.dll"
,
...
...
@@ -1008,84 +1712,44 @@
"System.Reflection.nuspec"
]
},
"System.Reflection.Emit/4.0.0"
:
{
"sha512"
:
"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.dll"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Reflection.Emit.xml"
,
"ref/dotnet/es/System.Reflection.Emit.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.xml"
,
"ref/dotnet/it/System.Reflection.Emit.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.xml"
,
"ref/dotnet/System.Reflection.Emit.dll"
,
"ref/dotnet/System.Reflection.Emit.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/net45/_._"
,
"ref/xamarinmac20/_._"
,
"System.Reflection.Emit.4.0.0.nupkg"
,
"System.Reflection.Emit.4.0.0.nupkg.sha512"
,
"System.Reflection.Emit.nuspec"
]
},
"System.Reflection.Emit.ILGeneration/4.0.0"
:
{
"sha512"
:
"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg=="
,
"System.Reflection.Emit.ILGeneration/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"MmfC6qiOdLW/H/hJu7itUFmVlcIzZPK4lVkqCnIHNAPf9UAp3NgUFDHYKNfeLsh4lItNd60uootUlNJyRuYqqQ=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll"
,
"lib/wp80/_._"
,
"ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/System.Reflection.Emit.ILGeneration.dll"
,
"ref/dotnet/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml"
,
"ref/net45/_._"
,
"ref/wp80/_._"
,
"System.Reflection.Emit.ILGeneration.4.0.0.nupkg"
,
"System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512"
,
"runtimes/aot/lib/netcore50/_._"
,
"System.Reflection.Emit.ILGeneration.4.0.1-beta-23409.nupkg"
,
"System.Reflection.Emit.ILGeneration.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.Emit.ILGeneration.nuspec"
]
},
"System.Reflection.Emit.Lightweight/4.0.0"
:
{
"sha512"
:
"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w=="
,
"System.Reflection.Emit.Lightweight/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"zPOBoLvq4h++S1AC1+CR6f8mMQZMsZbyxFf7pXka+qYJ3uInt8Zc4e12bwttt0xwX5Qr8VpZ0IB5pqvPMuUz3A=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.Lightweight.dll"
,
"lib/wp80/_._"
,
"ref/dotnet/de/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/es/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/it/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/System.Reflection.Emit.Lightweight.dll"
,
"ref/dotnet/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml"
,
"ref/net45/_._"
,
"ref/wp80/_._"
,
"System.Reflection.Emit.Lightweight.4.0.0.nupkg"
,
"System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512"
,
"runtimes/aot/lib/netcore50/_._"
,
"System.Reflection.Emit.Lightweight.4.0.1-beta-23409.nupkg"
,
"System.Reflection.Emit.Lightweight.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.Emit.Lightweight.nuspec"
]
},
"System.Reflection.Extensions/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A=="
,
"files"
:
[
...
...
@@ -1119,6 +1783,7 @@
]
},
"System.Reflection.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA=="
,
"files"
:
[
...
...
@@ -1151,40 +1816,82 @@
"System.Reflection.Primitives.nuspec"
]
},
"System.Reflection.TypeExtensions/4.0.0"
:
{
"System.Reflection.TypeExtensions/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew
=="
,
"sha512"
:
"
n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA
=="
,
"files"
:
[
"lib/DNXCore50/de/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/es/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/it/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/System.Reflection.TypeExtensions.dll"
,
"lib/DNXCore50/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/de/System.Reflection.TypeExtensions.xml"
,
"lib/net46/es/System.Reflection.TypeExtensions.xml"
,
"lib/net46/fr/System.Reflection.TypeExtensions.xml"
,
"lib/net46/it/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ja/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ko/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ru/System.Reflection.TypeExtensions.xml"
,
"lib/net46/System.Reflection.TypeExtensions.dll"
,
"lib/net46/System.Reflection.TypeExtensions.xml"
,
"lib/net46/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/net46/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/de/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/es/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/fr/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/it/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ja/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ko/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ru/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/System.Reflection.TypeExtensions.dll"
,
"lib/netcore50/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/es/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/fr/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/it/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ja/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ko/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ru/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/System.Reflection.TypeExtensions.dll"
,
"ref/dotnet/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/de/System.Reflection.TypeExtensions.xml"
,
"ref/net46/es/System.Reflection.TypeExtensions.xml"
,
"ref/net46/fr/System.Reflection.TypeExtensions.xml"
,
"ref/net46/it/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ja/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ko/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ru/System.Reflection.TypeExtensions.xml"
,
"ref/net46/System.Reflection.TypeExtensions.dll"
,
"ref/net46/System.Reflection.TypeExtensions.xml"
,
"ref/net46/zh-hans/System.Reflection.TypeExtensions.xml"
,
"ref/net46/zh-hant/System.Reflection.TypeExtensions.xml"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
,
"System.Reflection.TypeExtensions.4.0.0.nupkg"
,
"System.Reflection.TypeExtensions.4.0.0.nupkg.sha512"
,
"runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg"
,
"System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.TypeExtensions.nuspec"
]
},
"System.Resources.ResourceManager/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw=="
,
"files"
:
[
...
...
@@ -1217,9 +1924,10 @@
"System.Resources.ResourceManager.nuspec"
]
},
"System.Runtime/4.0.20"
:
{
"System.Runtime/4.0.21-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg
=="
,
"sha512"
:
"
00RlFeePaBvEcnrd+FC9GPMbTPmrfwD6vM2dmGRIGsGjP01Xe9b9ZZYKGC/AudCIzyBvtLEVneYeLl+5hSnIZA
=="
,
"files"
:
[
"lib/DNXCore50/System.Runtime.dll"
,
"lib/MonoAndroid10/_._"
,
...
...
@@ -1228,29 +1936,20 @@
"lib/netcore50/System.Runtime.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Runtime.xml"
,
"ref/dotnet/es/System.Runtime.xml"
,
"ref/dotnet/fr/System.Runtime.xml"
,
"ref/dotnet/it/System.Runtime.xml"
,
"ref/dotnet/ja/System.Runtime.xml"
,
"ref/dotnet/ko/System.Runtime.xml"
,
"ref/dotnet/ru/System.Runtime.xml"
,
"ref/dotnet/System.Runtime.dll"
,
"ref/dotnet/System.Runtime.xml"
,
"ref/dotnet/zh-hans/System.Runtime.xml"
,
"ref/dotnet/zh-hant/System.Runtime.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
,
"System.Runtime.4.0.2
0
.nupkg"
,
"System.Runtime.4.0.2
0
.nupkg.sha512"
,
"System.Runtime.4.0.2
1-beta-23225
.nupkg"
,
"System.Runtime.4.0.2
1-beta-23225
.nupkg.sha512"
,
"System.Runtime.nuspec"
]
},
"System.Runtime.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A=="
,
"files"
:
[
...
...
@@ -1284,6 +1983,7 @@
]
},
"System.Runtime.Handles/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ=="
,
"files"
:
[
...
...
@@ -1317,6 +2017,7 @@
]
},
"System.Runtime.InteropServices/4.0.20"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig=="
,
"files"
:
[
...
...
@@ -1349,7 +2050,228 @@
"System.Runtime.InteropServices.nuspec"
]
},
"System.Runtime.Numerics/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw=="
,
"files"
:
[
"lib/dotnet/System.Runtime.Numerics.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Runtime.Numerics.dll"
,
"lib/win8/_._"
,
"lib/wpa81/_._"
,
"ref/dotnet/de/System.Runtime.Numerics.xml"
,
"ref/dotnet/es/System.Runtime.Numerics.xml"
,
"ref/dotnet/fr/System.Runtime.Numerics.xml"
,
"ref/dotnet/it/System.Runtime.Numerics.xml"
,
"ref/dotnet/ja/System.Runtime.Numerics.xml"
,
"ref/dotnet/ko/System.Runtime.Numerics.xml"
,
"ref/dotnet/ru/System.Runtime.Numerics.xml"
,
"ref/dotnet/System.Runtime.Numerics.dll"
,
"ref/dotnet/System.Runtime.Numerics.xml"
,
"ref/dotnet/zh-hans/System.Runtime.Numerics.xml"
,
"ref/dotnet/zh-hant/System.Runtime.Numerics.xml"
,
"ref/net45/_._"
,
"ref/netcore50/System.Runtime.Numerics.dll"
,
"ref/netcore50/System.Runtime.Numerics.xml"
,
"ref/win8/_._"
,
"ref/wpa81/_._"
,
"System.Runtime.Numerics.4.0.0.nupkg"
,
"System.Runtime.Numerics.4.0.0.nupkg.sha512"
,
"System.Runtime.Numerics.nuspec"
]
},
"System.Security.Claims/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg=="
,
"files"
:
[
"lib/dotnet/System.Security.Claims.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Claims.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Security.Claims.xml"
,
"ref/dotnet/es/System.Security.Claims.xml"
,
"ref/dotnet/fr/System.Security.Claims.xml"
,
"ref/dotnet/it/System.Security.Claims.xml"
,
"ref/dotnet/ja/System.Security.Claims.xml"
,
"ref/dotnet/ko/System.Security.Claims.xml"
,
"ref/dotnet/ru/System.Security.Claims.xml"
,
"ref/dotnet/System.Security.Claims.dll"
,
"ref/dotnet/System.Security.Claims.xml"
,
"ref/dotnet/zh-hans/System.Security.Claims.xml"
,
"ref/dotnet/zh-hant/System.Security.Claims.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Claims.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Claims.4.0.0.nupkg"
,
"System.Security.Claims.4.0.0.nupkg.sha512"
,
"System.Security.Claims.nuspec"
]
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"BvUX0qHC9DKP6kjhS6EvHFKSXiiTxPlNvni44x+QAKWsBPWZQLUJVNyiORdRZEqg1zKKV4UI3fo0WTgBIHAPhw=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Cryptography.Algorithms.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Cryptography.Algorithms.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Security.Cryptography.Algorithms.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Cryptography.Algorithms.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg"
,
"System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Cryptography.Algorithms.nuspec"
]
},
"System.Security.Cryptography.Csp/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"0DJq6Ju6Bo77cMRi8S94uNhkUtpRG6OKUA7EL7qR+Vls31eMtHzG7b8AumxvUDn2dDZLAOyTnIK9Dr+/O5gJFw=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Cryptography.Csp.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Cryptography.Csp.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Security.Cryptography.Csp.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Cryptography.Csp.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg"
,
"System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Cryptography.Csp.nuspec"
]
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"enH7FuDRTkGo8SN2uZRs3y54zPC80WMtFpmeBA3/lD6FfSz07B7Pm2fihm0vPSxKCkv5szj/WivwpxS1LqN9LQ=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Cryptography.Encoding.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Cryptography.Encoding.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Security.Cryptography.Encoding.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Cryptography.Encoding.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg"
,
"System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Cryptography.Encoding.nuspec"
]
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"+d/qgU+N70qzg5oE5x/7NC4Y6LPwGVFbcQRl4MggXJrjWtO/dbybLTpMr3hj07nl17Fj7GxGjpwRZaIGnpux/w=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Cryptography.Primitives.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Cryptography.Primitives.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Security.Cryptography.Primitives.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Cryptography.Primitives.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg"
,
"System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Cryptography.Primitives.nuspec"
]
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"SsMAR1PZq3JfGX8IsSdK2sc6pxRp0u/m5EPqo6y5j6Z08hEWsD/U9keQhSKBEG/4Ny1RyQ7yB7xMgDuB/MPd4Q=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Security.Cryptography.X509Certificates.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Security.Cryptography.X509Certificates.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Security.Cryptography.X509Certificates.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg"
,
"System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Cryptography.X509Certificates.nuspec"
]
},
"System.Security.Principal/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ=="
,
"files"
:
[
"lib/dotnet/System.Security.Principal.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Security.Principal.dll"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"ref/dotnet/de/System.Security.Principal.xml"
,
"ref/dotnet/es/System.Security.Principal.xml"
,
"ref/dotnet/fr/System.Security.Principal.xml"
,
"ref/dotnet/it/System.Security.Principal.xml"
,
"ref/dotnet/ja/System.Security.Principal.xml"
,
"ref/dotnet/ko/System.Security.Principal.xml"
,
"ref/dotnet/ru/System.Security.Principal.xml"
,
"ref/dotnet/System.Security.Principal.dll"
,
"ref/dotnet/System.Security.Principal.xml"
,
"ref/dotnet/zh-hans/System.Security.Principal.xml"
,
"ref/dotnet/zh-hant/System.Security.Principal.xml"
,
"ref/net45/_._"
,
"ref/netcore50/System.Security.Principal.dll"
,
"ref/netcore50/System.Security.Principal.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"System.Security.Principal.4.0.0.nupkg"
,
"System.Security.Principal.4.0.0.nupkg.sha512"
,
"System.Security.Principal.nuspec"
]
},
"System.Security.Principal.Windows/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"EPUMw2utJKSo9PW+P8X9Ci9791xHN2zD2rnp8L1878KRwB2sIheVX9fhR6VE9xx4goQWQiIX21GfKS1pgdmgSA=="
,
"files"
:
[
"lib/DNXCore50/System.Security.Principal.Windows.dll"
,
"lib/net46/System.Security.Principal.Windows.dll"
,
"ref/dotnet/System.Security.Principal.Windows.dll"
,
"ref/net46/System.Security.Principal.Windows.dll"
,
"System.Security.Principal.Windows.4.0.0-beta-23225.nupkg"
,
"System.Security.Principal.Windows.4.0.0-beta-23225.nupkg.sha512"
,
"System.Security.Principal.Windows.nuspec"
]
},
"System.Text.Encoding/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw=="
,
"files"
:
[
"lib/DNXCore50/System.Text.Encoding.dll"
,
...
...
@@ -1382,6 +2304,7 @@
]
},
"System.Text.Encoding.CodePages/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ=="
,
"files"
:
[
...
...
@@ -1410,40 +2333,75 @@
"System.Text.Encoding.CodePages.nuspec"
]
},
"System.Text.RegularExpressions/4.0.10"
:
{
"System.Text.Encoding.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg=="
,
"files"
:
[
"lib/DNXCore50/System.Text.Encoding.Extensions.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/System.Text.Encoding.Extensions.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/es/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/fr/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/it/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/ja/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/ko/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/ru/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/System.Text.Encoding.Extensions.dll"
,
"ref/dotnet/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml"
,
"ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
,
"System.Text.Encoding.Extensions.4.0.10.nupkg"
,
"System.Text.Encoding.Extensions.4.0.10.nupkg.sha512"
,
"System.Text.Encoding.Extensions.nuspec"
]
},
"System.Text.RegularExpressions/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA
=="
,
"sha512"
:
"
Bp80XEvjed3pklTkyz6vla7coDXrTU5ijizcAwhfb3eTrtyJ79NboOpCn4DHhOcAWi3zXCkhpQT+3R7glmyHdQ
=="
,
"files"
:
[
"lib/dotnet/de/System.Text.RegularExpressions.xml"
,
"lib/dotnet/es/System.Text.RegularExpressions.xml"
,
"lib/dotnet/fr/System.Text.RegularExpressions.xml"
,
"lib/dotnet/it/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ja/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ko/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ru/System.Text.RegularExpressions.xml"
,
"lib/dotnet/System.Text.RegularExpressions.dll"
,
"lib/dotnet/System.Text.RegularExpressions.xml"
,
"lib/dotnet/zh-hans/System.Text.RegularExpressions.xml"
,
"lib/dotnet/zh-hant/System.Text.RegularExpressions.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Text.RegularExpressions.xml"
,
"ref/dotnet/es/System.Text.RegularExpressions.xml"
,
"ref/dotnet/fr/System.Text.RegularExpressions.xml"
,
"ref/dotnet/it/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ja/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ko/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ru/System.Text.RegularExpressions.xml"
,
"ref/dotnet/System.Text.RegularExpressions.dll"
,
"ref/dotnet/System.Text.RegularExpressions.xml"
,
"ref/dotnet/zh-hans/System.Text.RegularExpressions.xml"
,
"ref/dotnet/zh-hant/System.Text.RegularExpressions.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Text.RegularExpressions.4.0.1
0
.nupkg"
,
"System.Text.RegularExpressions.4.0.1
0
.nupkg.sha512"
,
"System.Text.RegularExpressions.4.0.1
1-beta-23409
.nupkg"
,
"System.Text.RegularExpressions.4.0.1
1-beta-23409
.nupkg.sha512"
,
"System.Text.RegularExpressions.nuspec"
]
},
"System.Threading/4.0.10"
:
{
"System.Threading/4.0.11-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA
=="
,
"sha512"
:
"
W0tZYWumMM2IoJJzv4e3CbtJLqmsOuo/H8uva4bO7relUPhkZL9c0sXWI3sIv6BJwXbrVM2W2JJGk9PyEi3sJg
=="
,
"files"
:
[
"lib/DNXCore50/System.Threading.dll"
,
"lib/MonoAndroid10/_._"
,
...
...
@@ -1452,29 +2410,45 @@
"lib/netcore50/System.Threading.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Threading.xml"
,
"ref/dotnet/es/System.Threading.xml"
,
"ref/dotnet/fr/System.Threading.xml"
,
"ref/dotnet/it/System.Threading.xml"
,
"ref/dotnet/ja/System.Threading.xml"
,
"ref/dotnet/ko/System.Threading.xml"
,
"ref/dotnet/ru/System.Threading.xml"
,
"ref/dotnet/System.Threading.dll"
,
"ref/dotnet/System.Threading.xml"
,
"ref/dotnet/zh-hans/System.Threading.xml"
,
"ref/dotnet/zh-hant/System.Threading.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Threading.dll"
,
"System.Threading.4.0.1
0
.nupkg"
,
"System.Threading.4.0.1
0
.nupkg.sha512"
,
"System.Threading.4.0.1
1-beta-23225
.nupkg"
,
"System.Threading.4.0.1
1-beta-23225
.nupkg.sha512"
,
"System.Threading.nuspec"
]
},
"System.Threading.Overlapped/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A=="
,
"files"
:
[
"lib/DNXCore50/System.Threading.Overlapped.dll"
,
"lib/net46/System.Threading.Overlapped.dll"
,
"lib/netcore50/System.Threading.Overlapped.dll"
,
"ref/dotnet/de/System.Threading.Overlapped.xml"
,
"ref/dotnet/es/System.Threading.Overlapped.xml"
,
"ref/dotnet/fr/System.Threading.Overlapped.xml"
,
"ref/dotnet/it/System.Threading.Overlapped.xml"
,
"ref/dotnet/ja/System.Threading.Overlapped.xml"
,
"ref/dotnet/ko/System.Threading.Overlapped.xml"
,
"ref/dotnet/ru/System.Threading.Overlapped.xml"
,
"ref/dotnet/System.Threading.Overlapped.dll"
,
"ref/dotnet/System.Threading.Overlapped.xml"
,
"ref/dotnet/zh-hans/System.Threading.Overlapped.xml"
,
"ref/dotnet/zh-hant/System.Threading.Overlapped.xml"
,
"ref/net46/System.Threading.Overlapped.dll"
,
"System.Threading.Overlapped.4.0.0.nupkg"
,
"System.Threading.Overlapped.4.0.0.nupkg.sha512"
,
"System.Threading.Overlapped.nuspec"
]
},
"System.Threading.Tasks/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ=="
,
"files"
:
[
...
...
@@ -1507,13 +2481,11 @@
"System.Threading.Tasks.nuspec"
]
},
"System.Threading.Thread/4.0.0-beta-23409"
:
{
"System.Threading.Thread/4.0.0-beta-23225"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
P69kQVO3f9z2f7/vpSukvncQ8PJmxrNXl6w5mNb1FiS+HZES1MqKhDXz2yAiykqSPo+ND1qWISL6qD/hOrWeLw
=="
,
"sha512"
:
"
ZRcBjGWWC/KBJkobKqs2VLh6WBm1hMwQnY502FYl/2lR2XexzIzkWw1vC5bhNKVJ8jMEK82nSVt775q0i8k1rg
=="
,
"files"
:
[
"System.Threading.Thread.4.0.0-beta-23409.nupkg"
,
"System.Threading.Thread.4.0.0-beta-23409.nupkg.sha512"
,
"System.Threading.Thread.nuspec"
,
"lib/DNXCore50/System.Threading.Thread.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
...
...
@@ -1525,10 +2497,57 @@
"ref/MonoTouch10/_._"
,
"ref/net46/System.Threading.Thread.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
"ref/xamarinmac20/_._"
,
"System.Threading.Thread.4.0.0-beta-23225.nupkg"
,
"System.Threading.Thread.4.0.0-beta-23225.nupkg.sha512"
,
"System.Threading.Thread.nuspec"
]
},
"System.Threading.ThreadPool/4.0.10-beta-22231"
:
{
"type"
:
"package"
,
"sha512"
:
"zYgXCszwAYovpJu6m+BX4xayCtL0sLy1mFIvjIRmur0zPc2Luv1jVVTY4GTTeXO5OSvN5UIjt50l6Nk4jnzsHw=="
,
"files"
:
[
"lib/aspnetcore50/System.Threading.ThreadPool.dll"
,
"lib/contract/System.Threading.ThreadPool.dll"
,
"License.rtf"
,
"System.Threading.ThreadPool.4.0.10-beta-22231.nupkg"
,
"System.Threading.ThreadPool.4.0.10-beta-22231.nupkg.sha512"
,
"System.Threading.ThreadPool.nuspec"
]
},
"System.Threading.Timer/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g=="
,
"files"
:
[
"lib/DNXCore50/System.Threading.Timer.dll"
,
"lib/net451/_._"
,
"lib/netcore50/System.Threading.Timer.dll"
,
"lib/win81/_._"
,
"lib/wpa81/_._"
,
"ref/dotnet/de/System.Threading.Timer.xml"
,
"ref/dotnet/es/System.Threading.Timer.xml"
,
"ref/dotnet/fr/System.Threading.Timer.xml"
,
"ref/dotnet/it/System.Threading.Timer.xml"
,
"ref/dotnet/ja/System.Threading.Timer.xml"
,
"ref/dotnet/ko/System.Threading.Timer.xml"
,
"ref/dotnet/ru/System.Threading.Timer.xml"
,
"ref/dotnet/System.Threading.Timer.dll"
,
"ref/dotnet/System.Threading.Timer.xml"
,
"ref/dotnet/zh-hans/System.Threading.Timer.xml"
,
"ref/dotnet/zh-hant/System.Threading.Timer.xml"
,
"ref/net451/_._"
,
"ref/netcore50/System.Threading.Timer.dll"
,
"ref/netcore50/System.Threading.Timer.xml"
,
"ref/win81/_._"
,
"ref/wpa81/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll"
,
"System.Threading.Timer.4.0.0.nupkg"
,
"System.Threading.Timer.4.0.0.nupkg.sha512"
,
"System.Threading.Timer.nuspec"
]
},
"System.Xml.ReaderWriter/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"9KB7w15EyBUXSXiRVegaO8tivjK405gjDB1tGXkPNvj6fN7qi/sfQCQ4QbUmRbGTrOwJdrISAtGL8bXoa1x0ow=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
...
...
@@ -1593,14 +2612,12 @@
"fx/System.Xml >= 4.0.0.0"
],
"DNXCore,Version=v5.0"
:
[
"System.Console >= 4.0.0-beta-*"
,
"System.Reflection >= 4.0.10"
,
"System.Linq >= 4.0.0"
,
"System.Data.Common >= 4.0.0"
,
"System.Data.SqlClient >= 4.0.0-beta-*"
,
"System.Threading >= 4.0.10"
,
"System.Threading.Thread >= 4.0.0-beta-*"
,
"System.Reflection.TypeExtensions >= 4.0.0"
"Microsoft.CSharp >= 4.0.1-beta-23225"
,
"System.Collections >= 4.0.11-beta-23225"
,
"System.Console >= 4.0.0-beta-23225"
,
"System.Linq >= 4.0.1-beta-23225"
,
"System.Threading >= 4.0.11-beta-23225"
,
"System.Data.SqlClient >= 4.0.0-beta-23225"
]
}
}
\ No newline at end of file
Dapper.DNX.sln
View file @
bd847fff
...
...
@@ -5,8 +5,6 @@ VisualStudioVersion = 14.0.24606.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dapper", "Dapper\Dapper.xproj", "{088D8CC4-E71E-44B6-9B87-4060B043983D}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dapper.DNX.Tests", "Dapper.DNX.Tests\Dapper.DNX.Tests.xproj", "{B6EAE030-3119-49C0-ADB5-39E25BA60C4C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{03340C6E-4176-4C42-9C76-D5DFC79D1A22}"
ProjectSection(SolutionItems) = preProject
Tests\Assert.cs = Tests\Assert.cs
...
...
@@ -17,6 +15,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{03340C6E
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{ECD7C7BC-176D-49E7-8DB2-FCF248702F87}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{48B0D0A6-D527-457F-AFDB-9D7DBF277E04}"
ProjectSection(SolutionItems) = preProject
Dapper.DNX.Tests\global.json = Dapper.DNX.Tests\global.json
Dapper\global.json = Dapper\global.json
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dapper.DNX.Tests", "Dapper.DNX.Tests\Dapper.DNX.Tests.xproj", "{2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
...
...
@@ -27,10 +33,10 @@ Global
{088D8CC4-E71E-44B6-9B87-4060B043983D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{088D8CC4-E71E-44B6-9B87-4060B043983D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{088D8CC4-E71E-44B6-9B87-4060B043983D}.Release|Any CPU.Build.0 = Release|Any CPU
{
B6EAE030-3119-49C0-ADB5-39E25BA60C4C
}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{
B6EAE030-3119-49C0-ADB5-39E25BA60C4C
}.Debug|Any CPU.Build.0 = Debug|Any CPU
{
B6EAE030-3119-49C0-ADB5-39E25BA60C4C
}.Release|Any CPU.ActiveCfg = Release|Any CPU
{
B6EAE030-3119-49C0-ADB5-39E25BA60C4C
}.Release|Any CPU.Build.0 = Release|Any CPU
{
2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F
}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{
2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F
}.Debug|Any CPU.Build.0 = Debug|Any CPU
{
2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F
}.Release|Any CPU.ActiveCfg = Release|Any CPU
{
2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F
}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
Dapper/global.json
0 → 100644
View file @
bd847fff
{
"sdk"
:
{
"version"
:
"1.0.0-beta7"
}
}
Dapper/project.json
View file @
bd847fff
{
"authors"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"owners"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"projectUrl"
:
"https://github.com/StackExchange/dapper-dot-net"
,
"licenseUrl"
:
"http://www.apache.org/licenses/LICENSE-2.0"
,
"summary"
:
"A high performance Micro-ORM"
,
"description"
:
"A high performance Micro-ORM supporting Sql Server, MySQL, Sqlite, SqlCE, Firebird etc.."
,
"version"
:
"1.43-beta1"
,
"compile"
:
[
"../Dapper NET40/*.cs"
,
"../Dapper NET45/*.cs"
],
"title"
:
"Dapper dot net"
,
"tags"
:
[
"orm"
,
"sql"
,
"micro-orm"
],
"frameworks"
:
{
"net45"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"net40"
:
{
"compilationOptions"
:
{
"warningsAsErrors"
:
true
},
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"dnx451"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"dnxcore50"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
"System.Text.RegularExpressions"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Collections.Concurrent"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Threading"
:
"4.0.10"
,
"Microsoft.CSharp"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.10"
,
"System.Reflection.Emit"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Data.Common"
:
"4.0.0"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Text.Encoding.CodePages"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
}
}
"authors"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"owners"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"projectUrl"
:
"https://github.com/StackExchange/dapper-dot-net"
,
"licenseUrl"
:
"http://www.apache.org/licenses/LICENSE-2.0"
,
"summary"
:
"A high performance Micro-ORM"
,
"description"
:
"A high performance Micro-ORM supporting Sql Server, MySQL, Sqlite, SqlCE, Firebird etc.."
,
"version"
:
"1.43-beta1"
,
"compile"
:
[
"../Dapper NET40/*.cs"
,
"../Dapper NET45/*.cs"
],
"title"
:
"Dapper dot net"
,
"tags"
:
[
"orm"
,
"sql"
,
"micro-orm"
],
"dependencies"
:
{
},
"frameworks"
:
{
"net45"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"net40"
:
{
"compilationOptions"
:
{
"warningsAsErrors"
:
true
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"dnx451"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
},
"dnxcore50"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
"Microsoft.CSharp"
:
"4.0.1-beta-*"
,
"System.Collections"
:
"4.0.11-beta-*"
,
"System.Collections.Concurrent"
:
"4.0.11-beta-*"
,
"System.Console"
:
"4.0.0-beta-*"
,
"System.Linq"
:
"4.0.1-beta-*"
,
"System.Threading"
:
"4.0.11-beta-*"
,
"System.Data.SqlClient"
:
"4.0.0-*"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.1-beta-*"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.1-beta-*"
,
"System.Reflection.TypeExtensions"
:
"4.0.1-beta-*"
,
"System.Text.RegularExpressions"
:
"4.0.11-beta-*"
},
"dependencies2"
:
{
"System.Text.RegularExpressions"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Collections.Concurrent"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Threading"
:
"4.0.10"
,
"Microsoft.CSharp"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.10"
,
"System.Reflection.Emit"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.Reflection.Emit.Lightweight"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Data.Common"
:
"4.0.0"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Text.Encoding.CodePages"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
}
}
}
}
Dapper/project.lock.json
View file @
bd847fff
{
"locked"
:
false
,
"version"
:
-9996
,
"version"
:
1
,
"targets"
:
{
".NETFramework,Version=v4.5"
:
{},
".NETFramework,Version=v4.0"
:
{},
"DNX,Version=v4.5.1"
:
{},
"DNXCore,Version=v5.0"
:
{
"Microsoft.CSharp/4.0.0"
:
{
"Microsoft.CSharp/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Dynamic.Runtime"
:
"4.0.0"
,
"System.Linq.Expressions"
:
"4.0.0"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Linq"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Reflection.Extensions"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Dynamic.Runtime"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
,
"System.Linq"
:
"4.0.0"
,
"System.Linq.Expressions"
:
"4.0.0"
,
"System.ObjectModel"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Reflection.Extensions"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Reflection.TypeExtensions"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.ObjectModel"
:
"4.0.10"
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/Microsoft.CSharp.dll"
:
{}
...
...
@@ -32,9 +33,10 @@
"lib/dotnet/Microsoft.CSharp.dll"
:
{}
}
},
"System.Collections/4.0.10"
:
{
"System.Collections/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.2
0
"
"System.Runtime"
:
"4.0.2
1-beta-23409
"
},
"compile"
:
{
"ref/dotnet/System.Collections.dll"
:
{}
...
...
@@ -43,17 +45,18 @@
"lib/DNXCore50/System.Collections.dll"
:
{}
}
},
"System.Collections.Concurrent/4.0.10"
:
{
"System.Collections.Concurrent/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Threading.Tasks
"
:
"4.0.10"
,
"System.
Collections"
:
"4.0.1
0"
,
"System.
Diagnostics.Debug
"
:
"4.0.10"
,
"System.Diagnostics.Tracing"
:
"4.0.20"
,
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
"System.Threading"
:
"4.0.10"
,
"System.Threading.Tasks"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Collections.Concurrent.dll"
:
{}
...
...
@@ -63,13 +66,14 @@
}
},
"System.Collections.NonGeneric/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Diagnostics.Debug"
:
"4.0.1
0"
,
"System.Globalization"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.
Diagnostics.Debug"
:
"4.0.1
0"
,
"System.
Threading
"
:
"4.0.10"
,
"System.
Runtime.Extensions
"
:
"4.0.10"
"System.
Runtime"
:
"4.0.2
0"
,
"System.
Runtime.Extensions
"
:
"4.0.10"
,
"System.
Threading
"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Collections.NonGeneric.dll"
:
{}
...
...
@@ -78,17 +82,28 @@
"lib/dotnet/System.Collections.NonGeneric.dll"
:
{}
}
},
"System.Console/4.0.0-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Console.dll"
:
{}
}
},
"System.Data.Common/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Threading.Tasks"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Collections.NonGeneric"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.10"
,
"System.IO"
:
"4.0.0"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Text.RegularExpressions"
:
"4.0.0"
,
"System.Collections.NonGeneric"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
"System.Text.RegularExpressions"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Data.Common.dll"
:
{}
...
...
@@ -97,7 +112,22 @@
"lib/dotnet/System.Data.Common.dll"
:
{}
}
},
"System.Data.SqlClient/4.0.0-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Data.Common"
:
"4.0.0"
,
"System.Globalization"
:
"4.0.0"
,
"System.IO"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
,
"System.Xml.ReaderWriter"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Data.SqlClient.dll"
:
{}
}
},
"System.Diagnostics.Debug/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -109,6 +139,7 @@
}
},
"System.Diagnostics.Tracing/4.0.20"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -120,6 +151,7 @@
}
},
"System.Dynamic.Runtime/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Linq.Expressions"
:
"4.0.0"
,
"System.ObjectModel"
:
"4.0.0"
,
...
...
@@ -131,6 +163,7 @@
}
},
"System.Globalization/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -141,25 +174,24 @@
"lib/DNXCore50/System.Globalization.dll"
:
{}
}
},
"System.IO/4.0.10"
:
{
"System.IO/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.
2
0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Text.Encoding"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.IO.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.IO.dll"
:
{}
}
},
"System.Linq/4.0.0"
:
{
"System.Linq/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Collections"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
},
"compile"
:
{
...
...
@@ -170,6 +202,7 @@
}
},
"System.Linq.Expressions/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Reflection"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
...
...
@@ -179,11 +212,12 @@
}
},
"System.ObjectModel/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Diagnostics.Debug"
:
"4.0.10"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
,
"System.Threading"
:
"4.0.10"
},
"compile"
:
{
...
...
@@ -193,16 +227,18 @@
"lib/dotnet/System.ObjectModel.dll"
:
{}
}
},
"System.Private.Uri/4.0.0"
:
{
"runtime"
:
{
"lib/DNXCore50/System.Private.Uri.dll"
:
{}
"System.Private.Uri/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"compile"
:
{
"ref/dnxcore50/_._"
:
{}
}
},
"System.Reflection/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.IO"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.20"
},
"compile"
:
{
"ref/dotnet/System.Reflection.dll"
:
{}
...
...
@@ -211,26 +247,12 @@
"lib/DNXCore50/System.Reflection.dll"
:
{}
}
},
"System.Reflection.Emit/4.0.0"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.IO"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Emit.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Reflection.Emit.dll"
:
{}
}
},
"System.Reflection.Emit.ILGeneration/4.0.0"
:
{
"System.Reflection.Emit.ILGeneration/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Emit.ILGeneration.dll"
:
{}
...
...
@@ -239,12 +261,13 @@
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll"
:
{}
}
},
"System.Reflection.Emit.Lightweight/4.0.0"
:
{
"System.Reflection.Emit.Lightweight/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Reflection.Emit.ILGeneration"
:
"4.0.0"
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Emit.Lightweight.dll"
:
{}
...
...
@@ -254,9 +277,10 @@
}
},
"System.Reflection.Extensions/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.R
untime
"
:
"4.0.0"
,
"System.R
eflection
"
:
"4.0.0"
"System.R
eflection
"
:
"4.0.0"
,
"System.R
untime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.Extensions.dll"
:
{}
...
...
@@ -266,6 +290,7 @@
}
},
"System.Reflection.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -276,10 +301,11 @@
"lib/DNXCore50/System.Reflection.Primitives.dll"
:
{}
}
},
"System.Reflection.TypeExtensions/4.0.0"
:
{
"System.Reflection.TypeExtensions/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.R
untime
"
:
"4.0.0"
,
"System.R
eflection
"
:
"4.0.0"
"System.R
eflection
"
:
"4.0.0"
,
"System.R
untime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Reflection.TypeExtensions.dll"
:
{}
...
...
@@ -289,10 +315,11 @@
}
},
"System.Resources.ResourceManager/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.
Runtime
"
:
"4.0.0"
,
"System.
Globalization
"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.
Globalization
"
:
"4.0.0"
"System.
Runtime
"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Resources.ResourceManager.dll"
:
{}
...
...
@@ -301,9 +328,10 @@
"lib/DNXCore50/System.Resources.ResourceManager.dll"
:
{}
}
},
"System.Runtime/4.0.20"
:
{
"System.Runtime/4.0.21-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Private.Uri"
:
"4.0.
0
"
"System.Private.Uri"
:
"4.0.
1-beta-23409
"
},
"compile"
:
{
"ref/dotnet/System.Runtime.dll"
:
{}
...
...
@@ -313,6 +341,7 @@
}
},
"System.Runtime.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
},
...
...
@@ -324,6 +353,7 @@
}
},
"System.Runtime.Handles/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -335,10 +365,11 @@
}
},
"System.Runtime.InteropServices/4.0.20"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Reflection"
:
"4.0.0"
,
"System.Reflection.Primitives"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Runtime.Handles"
:
"4.0.0"
},
"compile"
:
{
...
...
@@ -348,44 +379,22 @@
"lib/DNXCore50/System.Runtime.InteropServices.dll"
:
{}
}
},
"System.Text.Encoding/4.0.10"
:
{
"System.Text.Encoding/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Text.Encoding.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Text.Encoding.dll"
:
{}
}
},
"System.Text.Encoding.CodePages/4.0.0"
:
{
"System.Text.RegularExpressions/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Text.Encoding"
:
"4.0.10"
,
"System.Runtime.InteropServices"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Runtime.Handles"
:
"4.0.0"
,
"System.IO"
:
"4.0.10"
,
"System.Collections"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
,
"System.Reflection"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.Runtime.Extensions"
:
"4.0.10"
},
"compile"
:
{
"ref/dotnet/System.Text.Encoding.CodePages.dll"
:
{}
},
"runtime"
:
{
"lib/dotnet/System.Text.Encoding.CodePages.dll"
:
{}
}
},
"System.Text.RegularExpressions/4.0.10"
:
{
"dependencies"
:
{
"System.Runtime"
:
"4.0.20"
,
"System.Resources.ResourceManager"
:
"4.0.0"
,
"System.Collections"
:
"4.0.10"
,
"System.Globalization"
:
"4.0.10"
,
"System.Runtime"
:
"4.0.20"
,
"System.Runtime.Extensions"
:
"4.0.10"
,
"System.Threading"
:
"4.0.10"
},
...
...
@@ -396,19 +405,18 @@
"lib/dotnet/System.Text.RegularExpressions.dll"
:
{}
}
},
"System.Threading/4.0.10"
:
{
"System.Threading/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Threading.dll"
:
{}
},
"runtime"
:
{
"lib/DNXCore50/System.Threading.dll"
:
{}
}
},
"System.Threading.Tasks/4.0.10"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.Runtime"
:
"4.0.0"
},
...
...
@@ -418,43 +426,56 @@
"runtime"
:
{
"lib/DNXCore50/System.Threading.Tasks.dll"
:
{}
}
},
"System.Xml.ReaderWriter/4.0.0"
:
{
"type"
:
"package"
,
"dependencies"
:
{
"System.IO"
:
"4.0.0"
,
"System.Runtime"
:
"4.0.0"
,
"System.Text.Encoding"
:
"4.0.0"
,
"System.Threading.Tasks"
:
"4.0.0"
},
"compile"
:
{
"ref/dotnet/System.Xml.ReaderWriter.dll"
:
{}
}
}
}
},
"libraries"
:
{
"Microsoft.CSharp/4.0.0"
:
{
"Microsoft.CSharp/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A
=="
,
"sha512"
:
"
I1jsSsyK89VfNebrnx2eiBD5YT6zp+DcX2v6AxZ/IosS38QYmA9YKVmssMd5yhRkXwr1f8MfgZTxF1Cli90JEQ
=="
,
"files"
:
[
"lib/dotnet/de/Microsoft.CSharp.xml"
,
"lib/dotnet/es/Microsoft.CSharp.xml"
,
"lib/dotnet/fr/Microsoft.CSharp.xml"
,
"lib/dotnet/it/Microsoft.CSharp.xml"
,
"lib/dotnet/ja/Microsoft.CSharp.xml"
,
"lib/dotnet/ko/Microsoft.CSharp.xml"
,
"lib/dotnet/Microsoft.CSharp.dll"
,
"lib/dotnet/Microsoft.CSharp.xml"
,
"lib/dotnet/ru/Microsoft.CSharp.xml"
,
"lib/dotnet/zh-hans/Microsoft.CSharp.xml"
,
"lib/dotnet/zh-hant/Microsoft.CSharp.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net45/_._"
,
"lib/netcore50/Microsoft.CSharp.dll"
,
"lib/netcore50/Microsoft.CSharp.xml"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"Microsoft.CSharp.4.0.
0
.nupkg"
,
"Microsoft.CSharp.4.0.
0
.nupkg.sha512"
,
"Microsoft.CSharp.4.0.
1-beta-23409
.nupkg"
,
"Microsoft.CSharp.4.0.
1-beta-23409
.nupkg.sha512"
,
"Microsoft.CSharp.nuspec"
,
"ref/dotnet/de/Microsoft.CSharp.xml"
,
"ref/dotnet/es/Microsoft.CSharp.xml"
,
"ref/dotnet/fr/Microsoft.CSharp.xml"
,
"ref/dotnet/it/Microsoft.CSharp.xml"
,
"ref/dotnet/ja/Microsoft.CSharp.xml"
,
"ref/dotnet/ko/Microsoft.CSharp.xml"
,
"ref/dotnet/Microsoft.CSharp.dll"
,
"ref/dotnet/Microsoft.CSharp.xml"
,
"ref/dotnet/ru/Microsoft.CSharp.xml"
,
"ref/dotnet/zh-hans/Microsoft.CSharp.xml"
,
"ref/dotnet/zh-hant/Microsoft.CSharp.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net45/_._"
,
"ref/netcore50/Microsoft.CSharp.dll"
,
"ref/netcore50/Microsoft.CSharp.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
...
...
@@ -462,71 +483,94 @@
"ref/xamarinmac20/_._"
]
},
"System.Collections/4.0.10"
:
{
"System.Collections/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw
=="
,
"sha512"
:
"
m0DkCw77atHTUmQH/hzHRed/f0tAniyl4S8MQUoF8okdg99VA24lWGtgh+ZouC3n9pJA4FXt9GQvcmvDMtTWCg
=="
,
"files"
:
[
"lib/DNXCore50/de/System.Collections.xml"
,
"lib/DNXCore50/es/System.Collections.xml"
,
"lib/DNXCore50/fr/System.Collections.xml"
,
"lib/DNXCore50/it/System.Collections.xml"
,
"lib/DNXCore50/ja/System.Collections.xml"
,
"lib/DNXCore50/ko/System.Collections.xml"
,
"lib/DNXCore50/ru/System.Collections.xml"
,
"lib/DNXCore50/System.Collections.dll"
,
"lib/DNXCore50/System.Collections.xml"
,
"lib/DNXCore50/zh-hans/System.Collections.xml"
,
"lib/DNXCore50/zh-hant/System.Collections.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/de/System.Collections.xml"
,
"lib/netcore50/es/System.Collections.xml"
,
"lib/netcore50/fr/System.Collections.xml"
,
"lib/netcore50/it/System.Collections.xml"
,
"lib/netcore50/ja/System.Collections.xml"
,
"lib/netcore50/ko/System.Collections.xml"
,
"lib/netcore50/ru/System.Collections.xml"
,
"lib/netcore50/System.Collections.dll"
,
"lib/netcore50/System.Collections.xml"
,
"lib/netcore50/zh-hans/System.Collections.xml"
,
"lib/netcore50/zh-hant/System.Collections.xml"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Collections.xml"
,
"ref/dotnet/es/System.Collections.xml"
,
"ref/dotnet/fr/System.Collections.xml"
,
"ref/dotnet/it/System.Collections.xml"
,
"ref/dotnet/ja/System.Collections.xml"
,
"ref/dotnet/ko/System.Collections.xml"
,
"ref/dotnet/ru/System.Collections.xml"
,
"ref/dotnet/System.Collections.dll"
,
"ref/dotnet/System.Collections.xml"
,
"ref/dotnet/zh-hans/System.Collections.xml"
,
"ref/dotnet/zh-hant/System.Collections.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/de/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/es/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/fr/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/it/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/ja/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/ko/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/ru/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/System.Collections.dll"
,
"System.Collections.4.0.10.nupkg"
,
"System.Collections.4.0.10.nupkg.sha512"
,
"runtimes/win8-aot/lib/netcore50/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hans/System.Collections.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hant/System.Collections.xml"
,
"System.Collections.4.0.11-beta-23409.nupkg"
,
"System.Collections.4.0.11-beta-23409.nupkg.sha512"
,
"System.Collections.nuspec"
]
},
"System.Collections.Concurrent/4.0.10"
:
{
"System.Collections.Concurrent/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw
=="
,
"sha512"
:
"
TgSZK3wQJBbv9jK5sdGyEle1YSslFgRLwXY67CWJWOKwVo/ueEyqeItQ2oZId8Rus8px/sdnXPotbMXC78ZMQQ
=="
,
"files"
:
[
"lib/dotnet/de/System.Collections.Concurrent.xml"
,
"lib/dotnet/es/System.Collections.Concurrent.xml"
,
"lib/dotnet/fr/System.Collections.Concurrent.xml"
,
"lib/dotnet/it/System.Collections.Concurrent.xml"
,
"lib/dotnet/ja/System.Collections.Concurrent.xml"
,
"lib/dotnet/ko/System.Collections.Concurrent.xml"
,
"lib/dotnet/ru/System.Collections.Concurrent.xml"
,
"lib/dotnet/System.Collections.Concurrent.dll"
,
"lib/dotnet/System.Collections.Concurrent.xml"
,
"lib/dotnet/zh-hans/System.Collections.Concurrent.xml"
,
"lib/dotnet/zh-hant/System.Collections.Concurrent.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Collections.Concurrent.xml"
,
"ref/dotnet/es/System.Collections.Concurrent.xml"
,
"ref/dotnet/fr/System.Collections.Concurrent.xml"
,
"ref/dotnet/it/System.Collections.Concurrent.xml"
,
"ref/dotnet/ja/System.Collections.Concurrent.xml"
,
"ref/dotnet/ko/System.Collections.Concurrent.xml"
,
"ref/dotnet/ru/System.Collections.Concurrent.xml"
,
"ref/dotnet/System.Collections.Concurrent.dll"
,
"ref/dotnet/System.Collections.Concurrent.xml"
,
"ref/dotnet/zh-hans/System.Collections.Concurrent.xml"
,
"ref/dotnet/zh-hant/System.Collections.Concurrent.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Collections.Concurrent.4.0.1
0
.nupkg"
,
"System.Collections.Concurrent.4.0.1
0
.nupkg.sha512"
,
"System.Collections.Concurrent.4.0.1
1-beta-23409
.nupkg"
,
"System.Collections.Concurrent.4.0.1
1-beta-23409
.nupkg.sha512"
,
"System.Collections.Concurrent.nuspec"
]
},
"System.Collections.NonGeneric/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA=="
,
"files"
:
[
...
...
@@ -557,7 +601,30 @@
"System.Collections.NonGeneric.nuspec"
]
},
"System.Console/4.0.0-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"vVstiHq9NKm6jfqm2OQGYgEinU4Zrwbcjtfxq61v0xHXVhx8p3igw9XQCdCOILf1ZWsZtKcvdbcazNP7tL+u+g=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Console.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Console.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Console.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtime.json"
,
"System.Console.4.0.0-beta-23409.nupkg"
,
"System.Console.4.0.0-beta-23409.nupkg.sha512"
,
"System.Console.nuspec"
]
},
"System.Data.Common/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg=="
,
"files"
:
[
...
...
@@ -588,7 +655,30 @@
"System.Data.Common.nuspec"
]
},
"System.Data.SqlClient/4.0.0-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"4nXlamQPqLGhdLzMoBgJb619MtpiEvjjJEphD6V0cj7uj9DJs4Gqw4JkSj7rf95QX6DJhI4Zc3lUsu2MkqHrIg=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/System.Data.SqlClient.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/System.Data.SqlClient.dll"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/System.Data.SqlClient.dll"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtime.json"
,
"System.Data.SqlClient.4.0.0-beta-23409.nupkg"
,
"System.Data.SqlClient.4.0.0-beta-23409.nupkg.sha512"
,
"System.Data.SqlClient.nuspec"
]
},
"System.Diagnostics.Debug/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g=="
,
"files"
:
[
...
...
@@ -622,6 +712,7 @@
]
},
"System.Diagnostics.Tracing/4.0.20"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw=="
,
"files"
:
[
...
...
@@ -655,6 +746,7 @@
]
},
"System.Dynamic.Runtime/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"33os71rQUCLjM5pbhQqCopq9/YcqBHPBQ8WylrzNk3oJmfAR0SFwzZIKJRN2JcrkBYdzC/NtWrYVU8oroyZieA=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
...
...
@@ -702,6 +794,7 @@
]
},
"System.Globalization/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw=="
,
"files"
:
[
"lib/DNXCore50/System.Globalization.dll"
,
...
...
@@ -733,17 +826,19 @@
"System.Globalization.nuspec"
]
},
"System.IO/4.0.
1
0"
:
{
"
serviceable"
:
true
,
"sha512"
:
"
kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ
=="
,
"System.IO/4.0.0"
:
{
"
type"
:
"package"
,
"sha512"
:
"
MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg
=="
,
"files"
:
[
"lib/DNXCore50/System.IO.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/System.IO.dll"
,
"lib/net45/_._"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"License.rtf"
,
"ref/dotnet/de/System.IO.xml"
,
"ref/dotnet/es/System.IO.xml"
,
"ref/dotnet/fr/System.IO.xml"
,
...
...
@@ -757,48 +852,63 @@
"ref/dotnet/zh-hant/System.IO.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/net45/_._"
,
"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/System.IO.dll"
,
"ref/netcore50/System.IO.xml"
,
"ref/netcore50/zh-hans/System.IO.xml"
,
"ref/netcore50/zh-hant/System.IO.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.IO.dll"
,
"System.IO.4.0.10.nupkg"
,
"System.IO.4.0.10.nupkg.sha512"
,
"System.IO.4.0.0.nupkg"
,
"System.IO.4.0.0.nupkg.sha512"
,
"System.IO.nuspec"
]
},
"System.Linq/4.0.0"
:
{
"System.Linq/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg
=="
,
"sha512"
:
"
VqrieHGgjmtYEPqqVQyw1jOFDVQuo5KvAEXaAavvpefiBBs+n6x3K3GG1qqDCYlA2GOz/8Snh6CSNZ8pl+O2bw
=="
,
"files"
:
[
"lib/dotnet/de/System.Linq.xml"
,
"lib/dotnet/es/System.Linq.xml"
,
"lib/dotnet/fr/System.Linq.xml"
,
"lib/dotnet/it/System.Linq.xml"
,
"lib/dotnet/ja/System.Linq.xml"
,
"lib/dotnet/ko/System.Linq.xml"
,
"lib/dotnet/ru/System.Linq.xml"
,
"lib/dotnet/System.Linq.dll"
,
"lib/dotnet/System.Linq.xml"
,
"lib/dotnet/zh-hans/System.Linq.xml"
,
"lib/dotnet/zh-hant/System.Linq.xml"
,
"lib/net45/_._"
,
"lib/netcore50/System.Linq.dll"
,
"lib/netcore50/System.Linq.xml"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"ref/dotnet/de/System.Linq.xml"
,
"ref/dotnet/es/System.Linq.xml"
,
"ref/dotnet/fr/System.Linq.xml"
,
"ref/dotnet/it/System.Linq.xml"
,
"ref/dotnet/ja/System.Linq.xml"
,
"ref/dotnet/ko/System.Linq.xml"
,
"ref/dotnet/ru/System.Linq.xml"
,
"ref/dotnet/System.Linq.dll"
,
"ref/dotnet/System.Linq.xml"
,
"ref/dotnet/zh-hans/System.Linq.xml"
,
"ref/dotnet/zh-hant/System.Linq.xml"
,
"ref/net45/_._"
,
"ref/netcore50/System.Linq.dll"
,
"ref/netcore50/System.Linq.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"System.Linq.4.0.
0
.nupkg"
,
"System.Linq.4.0.
0
.nupkg.sha512"
,
"System.Linq.4.0.
1-beta-23409
.nupkg"
,
"System.Linq.4.0.
1-beta-23409
.nupkg.sha512"
,
"System.Linq.nuspec"
]
},
"System.Linq.Expressions/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"wlfVllrKi+evu4Hi8yoJP1dSOVXbvsy7Hs1+oz4Cykfdf6MQTPlD3LI4WKWhprn8FpU5MS3spPSbcMX5sAoJSw=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
...
...
@@ -846,6 +956,7 @@
]
},
"System.ObjectModel/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA=="
,
"files"
:
[
...
...
@@ -876,21 +987,20 @@
"System.ObjectModel.nuspec"
]
},
"System.Private.Uri/4.0.
0
"
:
{
"
serviceable"
:
true
,
"sha512"
:
"
CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA
=="
,
"System.Private.Uri/4.0.
1-beta-23409
"
:
{
"
type"
:
"package"
,
"sha512"
:
"
AFcABskTE3SUyh75bTI3EcmQsqdH9LsEkEE39yeG83bBeu3FQhIcTkJjrmAkgncxP0YYyJohQ1ti/iO8JXtjFg
=="
,
"files"
:
[
"lib/DNXCore50/System.Private.Uri.dll"
,
"lib/netcore50/System.Private.Uri.dll"
,
"ref/dnxcore50/_._"
,
"ref/netcore50/_._"
,
"runtime
s/win8-aot/lib/netcore50/System.Private.Uri.dll
"
,
"System.Private.Uri.4.0.
0
.nupkg"
,
"System.Private.Uri.4.0.
0
.nupkg.sha512"
,
"runtime
.json
"
,
"System.Private.Uri.4.0.
1-beta-23409
.nupkg"
,
"System.Private.Uri.4.0.
1-beta-23409
.nupkg.sha512"
,
"System.Private.Uri.nuspec"
]
},
"System.Reflection/4.0.10"
:
{
"type"
:
"package"
,
"sha512"
:
"WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.dll"
,
...
...
@@ -922,84 +1032,44 @@
"System.Reflection.nuspec"
]
},
"System.Reflection.Emit/4.0.0"
:
{
"sha512"
:
"CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.dll"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Reflection.Emit.xml"
,
"ref/dotnet/es/System.Reflection.Emit.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.xml"
,
"ref/dotnet/it/System.Reflection.Emit.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.xml"
,
"ref/dotnet/System.Reflection.Emit.dll"
,
"ref/dotnet/System.Reflection.Emit.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/net45/_._"
,
"ref/xamarinmac20/_._"
,
"System.Reflection.Emit.4.0.0.nupkg"
,
"System.Reflection.Emit.4.0.0.nupkg.sha512"
,
"System.Reflection.Emit.nuspec"
]
},
"System.Reflection.Emit.ILGeneration/4.0.0"
:
{
"sha512"
:
"02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg=="
,
"System.Reflection.Emit.ILGeneration/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"MmfC6qiOdLW/H/hJu7itUFmVlcIzZPK4lVkqCnIHNAPf9UAp3NgUFDHYKNfeLsh4lItNd60uootUlNJyRuYqqQ=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll"
,
"lib/wp80/_._"
,
"ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/System.Reflection.Emit.ILGeneration.dll"
,
"ref/dotnet/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml"
,
"ref/net45/_._"
,
"ref/wp80/_._"
,
"System.Reflection.Emit.ILGeneration.4.0.0.nupkg"
,
"System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512"
,
"runtimes/aot/lib/netcore50/_._"
,
"System.Reflection.Emit.ILGeneration.4.0.1-beta-23409.nupkg"
,
"System.Reflection.Emit.ILGeneration.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.Emit.ILGeneration.nuspec"
]
},
"System.Reflection.Emit.Lightweight/4.0.0"
:
{
"sha512"
:
"DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w=="
,
"System.Reflection.Emit.Lightweight/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"zPOBoLvq4h++S1AC1+CR6f8mMQZMsZbyxFf7pXka+qYJ3uInt8Zc4e12bwttt0xwX5Qr8VpZ0IB5pqvPMuUz3A=="
,
"files"
:
[
"lib/DNXCore50/System.Reflection.Emit.Lightweight.dll"
,
"lib/net45/_._"
,
"lib/netcore50/System.Reflection.Emit.Lightweight.dll"
,
"lib/wp80/_._"
,
"ref/dotnet/de/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/es/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/it/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/System.Reflection.Emit.Lightweight.dll"
,
"ref/dotnet/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml"
,
"ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml"
,
"ref/net45/_._"
,
"ref/wp80/_._"
,
"System.Reflection.Emit.Lightweight.4.0.0.nupkg"
,
"System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512"
,
"runtimes/aot/lib/netcore50/_._"
,
"System.Reflection.Emit.Lightweight.4.0.1-beta-23409.nupkg"
,
"System.Reflection.Emit.Lightweight.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.Emit.Lightweight.nuspec"
]
},
"System.Reflection.Extensions/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A=="
,
"files"
:
[
...
...
@@ -1033,6 +1103,7 @@
]
},
"System.Reflection.Primitives/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA=="
,
"files"
:
[
...
...
@@ -1065,40 +1136,82 @@
"System.Reflection.Primitives.nuspec"
]
},
"System.Reflection.TypeExtensions/4.0.0"
:
{
"System.Reflection.TypeExtensions/4.0.1-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew
=="
,
"sha512"
:
"
n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA
=="
,
"files"
:
[
"lib/DNXCore50/de/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/es/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/it/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/System.Reflection.TypeExtensions.dll"
,
"lib/DNXCore50/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/de/System.Reflection.TypeExtensions.xml"
,
"lib/net46/es/System.Reflection.TypeExtensions.xml"
,
"lib/net46/fr/System.Reflection.TypeExtensions.xml"
,
"lib/net46/it/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ja/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ko/System.Reflection.TypeExtensions.xml"
,
"lib/net46/ru/System.Reflection.TypeExtensions.xml"
,
"lib/net46/System.Reflection.TypeExtensions.dll"
,
"lib/net46/System.Reflection.TypeExtensions.xml"
,
"lib/net46/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/net46/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/de/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/es/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/fr/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/it/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ja/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ko/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/ru/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/System.Reflection.TypeExtensions.dll"
,
"lib/netcore50/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/es/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/fr/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/it/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ja/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ko/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/ru/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/System.Reflection.TypeExtensions.dll"
,
"ref/dotnet/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml"
,
"ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/de/System.Reflection.TypeExtensions.xml"
,
"ref/net46/es/System.Reflection.TypeExtensions.xml"
,
"ref/net46/fr/System.Reflection.TypeExtensions.xml"
,
"ref/net46/it/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ja/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ko/System.Reflection.TypeExtensions.xml"
,
"ref/net46/ru/System.Reflection.TypeExtensions.xml"
,
"ref/net46/System.Reflection.TypeExtensions.dll"
,
"ref/net46/System.Reflection.TypeExtensions.xml"
,
"ref/net46/zh-hans/System.Reflection.TypeExtensions.xml"
,
"ref/net46/zh-hant/System.Reflection.TypeExtensions.xml"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
,
"System.Reflection.TypeExtensions.4.0.0.nupkg"
,
"System.Reflection.TypeExtensions.4.0.0.nupkg.sha512"
,
"runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml"
,
"System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg"
,
"System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512"
,
"System.Reflection.TypeExtensions.nuspec"
]
},
"System.Resources.ResourceManager/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw=="
,
"files"
:
[
...
...
@@ -1131,40 +1244,62 @@
"System.Resources.ResourceManager.nuspec"
]
},
"System.Runtime/4.0.20"
:
{
"System.Runtime/4.0.21-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg
=="
,
"sha512"
:
"
RMY5vXDu2cCelJmXP5un1HZSzbgRVpT5sgQPvFL2T7cLVinSY4vMWIgnlkh1visiQiy+nUlzeWP0uoMPDDRRJw
=="
,
"files"
:
[
"lib/DNXCore50/de/System.Runtime.xml"
,
"lib/DNXCore50/es/System.Runtime.xml"
,
"lib/DNXCore50/fr/System.Runtime.xml"
,
"lib/DNXCore50/it/System.Runtime.xml"
,
"lib/DNXCore50/ja/System.Runtime.xml"
,
"lib/DNXCore50/ko/System.Runtime.xml"
,
"lib/DNXCore50/ru/System.Runtime.xml"
,
"lib/DNXCore50/System.Runtime.dll"
,
"lib/DNXCore50/System.Runtime.xml"
,
"lib/DNXCore50/zh-hans/System.Runtime.xml"
,
"lib/DNXCore50/zh-hant/System.Runtime.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/de/System.Runtime.xml"
,
"lib/netcore50/es/System.Runtime.xml"
,
"lib/netcore50/fr/System.Runtime.xml"
,
"lib/netcore50/it/System.Runtime.xml"
,
"lib/netcore50/ja/System.Runtime.xml"
,
"lib/netcore50/ko/System.Runtime.xml"
,
"lib/netcore50/ru/System.Runtime.xml"
,
"lib/netcore50/System.Runtime.dll"
,
"lib/netcore50/System.Runtime.xml"
,
"lib/netcore50/zh-hans/System.Runtime.xml"
,
"lib/netcore50/zh-hant/System.Runtime.xml"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Runtime.xml"
,
"ref/dotnet/es/System.Runtime.xml"
,
"ref/dotnet/fr/System.Runtime.xml"
,
"ref/dotnet/it/System.Runtime.xml"
,
"ref/dotnet/ja/System.Runtime.xml"
,
"ref/dotnet/ko/System.Runtime.xml"
,
"ref/dotnet/ru/System.Runtime.xml"
,
"ref/dotnet/System.Runtime.dll"
,
"ref/dotnet/System.Runtime.xml"
,
"ref/dotnet/zh-hans/System.Runtime.xml"
,
"ref/dotnet/zh-hant/System.Runtime.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/de/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/es/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/fr/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/it/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/ja/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/ko/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/ru/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
,
"System.Runtime.4.0.20.nupkg"
,
"System.Runtime.4.0.20.nupkg.sha512"
,
"runtimes/win8-aot/lib/netcore50/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hans/System.Runtime.xml"
,
"runtimes/win8-aot/lib/netcore50/zh-hant/System.Runtime.xml"
,
"System.Runtime.4.0.21-beta-23409.nupkg"
,
"System.Runtime.4.0.21-beta-23409.nupkg.sha512"
,
"System.Runtime.nuspec"
]
},
"System.Runtime.Extensions/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A=="
,
"files"
:
[
...
...
@@ -1198,6 +1333,7 @@
]
},
"System.Runtime.Handles/4.0.0"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ=="
,
"files"
:
[
...
...
@@ -1231,6 +1367,7 @@
]
},
"System.Runtime.InteropServices/4.0.20"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig=="
,
"files"
:
[
...
...
@@ -1263,16 +1400,19 @@
"System.Runtime.InteropServices.nuspec"
]
},
"System.Text.Encoding/4.0.10"
:
{
"sha512"
:
"fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw=="
,
"System.Text.Encoding/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"AMxFNOXpA6Ab8swULbXuJmoT2K5w6TnV3ObF5wsmEcIHQUJghoZtDVfVHb08O2wW15mOSI1i9Wg0Dx0pY13o8g=="
,
"files"
:
[
"lib/DNXCore50/System.Text.Encoding.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/System.Text.Encoding.dll"
,
"lib/net45/_._"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"License.rtf"
,
"ref/dotnet/de/System.Text.Encoding.xml"
,
"ref/dotnet/es/System.Text.Encoding.xml"
,
"ref/dotnet/fr/System.Text.Encoding.xml"
,
...
...
@@ -1286,109 +1426,84 @@
"ref/dotnet/zh-hant/System.Text.Encoding.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/net45/_._"
,
"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/System.Text.Encoding.dll"
,
"ref/netcore50/System.Text.Encoding.xml"
,
"ref/netcore50/zh-hans/System.Text.Encoding.xml"
,
"ref/netcore50/zh-hant/System.Text.Encoding.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
,
"System.Text.Encoding.4.0.10.nupkg"
,
"System.Text.Encoding.4.0.10.nupkg.sha512"
,
"System.Text.Encoding.4.0.0.nupkg"
,
"System.Text.Encoding.4.0.0.nupkg.sha512"
,
"System.Text.Encoding.nuspec"
]
},
"System.Text.Encoding.CodePages/4.0.0"
:
{
"serviceable"
:
true
,
"sha512"
:
"ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ=="
,
"files"
:
[
"lib/dotnet/System.Text.Encoding.CodePages.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/es/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/fr/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/it/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/ja/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/ko/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/ru/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/System.Text.Encoding.CodePages.dll"
,
"ref/dotnet/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml"
,
"ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Text.Encoding.CodePages.4.0.0.nupkg"
,
"System.Text.Encoding.CodePages.4.0.0.nupkg.sha512"
,
"System.Text.Encoding.CodePages.nuspec"
]
},
"System.Text.RegularExpressions/4.0.10"
:
{
"System.Text.RegularExpressions/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA
=="
,
"sha512"
:
"
Bp80XEvjed3pklTkyz6vla7coDXrTU5ijizcAwhfb3eTrtyJ79NboOpCn4DHhOcAWi3zXCkhpQT+3R7glmyHdQ
=="
,
"files"
:
[
"lib/dotnet/de/System.Text.RegularExpressions.xml"
,
"lib/dotnet/es/System.Text.RegularExpressions.xml"
,
"lib/dotnet/fr/System.Text.RegularExpressions.xml"
,
"lib/dotnet/it/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ja/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ko/System.Text.RegularExpressions.xml"
,
"lib/dotnet/ru/System.Text.RegularExpressions.xml"
,
"lib/dotnet/System.Text.RegularExpressions.dll"
,
"lib/dotnet/System.Text.RegularExpressions.xml"
,
"lib/dotnet/zh-hans/System.Text.RegularExpressions.xml"
,
"lib/dotnet/zh-hant/System.Text.RegularExpressions.xml"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Text.RegularExpressions.xml"
,
"ref/dotnet/es/System.Text.RegularExpressions.xml"
,
"ref/dotnet/fr/System.Text.RegularExpressions.xml"
,
"ref/dotnet/it/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ja/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ko/System.Text.RegularExpressions.xml"
,
"ref/dotnet/ru/System.Text.RegularExpressions.xml"
,
"ref/dotnet/System.Text.RegularExpressions.dll"
,
"ref/dotnet/System.Text.RegularExpressions.xml"
,
"ref/dotnet/zh-hans/System.Text.RegularExpressions.xml"
,
"ref/dotnet/zh-hant/System.Text.RegularExpressions.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Text.RegularExpressions.4.0.1
0
.nupkg"
,
"System.Text.RegularExpressions.4.0.1
0
.nupkg.sha512"
,
"System.Text.RegularExpressions.4.0.1
1-beta-23409
.nupkg"
,
"System.Text.RegularExpressions.4.0.1
1-beta-23409
.nupkg.sha512"
,
"System.Text.RegularExpressions.nuspec"
]
},
"System.Threading/4.0.10"
:
{
"System.Threading/4.0.11-beta-23409"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"
0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIU
A=="
,
"sha512"
:
"
8jaof2HzSCHh1xcB4BQW5Z4mVaC66g71ewBSWKCGerqae4ffwthAoEbvfYIl68YH3MZ0dQvd0OxRkO9+ib4ZO
A=="
,
"files"
:
[
"lib/DNXCore50/System.Threading.dll"
,
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net46/_._"
,
"lib/netcore50/System.Threading.dll"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"ref/dotnet/de/System.Threading.xml"
,
"ref/dotnet/es/System.Threading.xml"
,
"ref/dotnet/fr/System.Threading.xml"
,
"ref/dotnet/it/System.Threading.xml"
,
"ref/dotnet/ja/System.Threading.xml"
,
"ref/dotnet/ko/System.Threading.xml"
,
"ref/dotnet/ru/System.Threading.xml"
,
"ref/dotnet/System.Threading.dll"
,
"ref/dotnet/System.Threading.xml"
,
"ref/dotnet/zh-hans/System.Threading.xml"
,
"ref/dotnet/zh-hant/System.Threading.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net46/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"runtime
s/win8-aot/lib/netcore50/System.Threading.dll
"
,
"System.Threading.4.0.1
0
.nupkg"
,
"System.Threading.4.0.1
0
.nupkg.sha512"
,
"runtime
.json
"
,
"System.Threading.4.0.1
1-beta-23409
.nupkg"
,
"System.Threading.4.0.1
1-beta-23409
.nupkg.sha512"
,
"System.Threading.nuspec"
]
},
"System.Threading.Tasks/4.0.10"
:
{
"type"
:
"package"
,
"serviceable"
:
true
,
"sha512"
:
"NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ=="
,
"files"
:
[
...
...
@@ -1420,6 +1535,54 @@
"System.Threading.Tasks.4.0.10.nupkg.sha512"
,
"System.Threading.Tasks.nuspec"
]
},
"System.Xml.ReaderWriter/4.0.0"
:
{
"type"
:
"package"
,
"sha512"
:
"9KB7w15EyBUXSXiRVegaO8tivjK405gjDB1tGXkPNvj6fN7qi/sfQCQ4QbUmRbGTrOwJdrISAtGL8bXoa1x0ow=="
,
"files"
:
[
"lib/MonoAndroid10/_._"
,
"lib/MonoTouch10/_._"
,
"lib/net45/_._"
,
"lib/win8/_._"
,
"lib/wp80/_._"
,
"lib/wpa81/_._"
,
"lib/xamarinios10/_._"
,
"lib/xamarinmac20/_._"
,
"License.rtf"
,
"ref/dotnet/de/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/es/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/fr/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/it/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/ja/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/ko/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/ru/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/System.Xml.ReaderWriter.dll"
,
"ref/dotnet/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml"
,
"ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml"
,
"ref/MonoAndroid10/_._"
,
"ref/MonoTouch10/_._"
,
"ref/net45/_._"
,
"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/System.Xml.ReaderWriter.dll"
,
"ref/netcore50/System.Xml.ReaderWriter.xml"
,
"ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml"
,
"ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml"
,
"ref/win8/_._"
,
"ref/wp80/_._"
,
"ref/wpa81/_._"
,
"ref/xamarinios10/_._"
,
"ref/xamarinmac20/_._"
,
"System.Xml.ReaderWriter.4.0.0.nupkg"
,
"System.Xml.ReaderWriter.4.0.0.nupkg.sha512"
,
"System.Xml.ReaderWriter.nuspec"
]
}
},
"projectFileDependencyGroups"
:
{
...
...
@@ -1434,21 +1597,17 @@
"fx/System.Data >= 4.0.0.0"
],
"DNXCore,Version=v5.0"
:
[
"System.Text.RegularExpressions >= 4.0.10"
,
"System.Collections >= 4.0.10"
,
"System.Collections.Concurrent >= 4.0.10"
,
"System.Linq >= 4.0.0"
,
"System.Threading >= 4.0.10"
,
"Microsoft.CSharp >= 4.0.0"
,
"System.Reflection >= 4.0.10"
,
"System.Reflection.Emit >= 4.0.0"
,
"System.Reflection.Emit.ILGeneration >= 4.0.0"
,
"System.Reflection.Emit.Lightweight >= 4.0.0"
,
"System.Reflection.TypeExtensions >= 4.0.0"
,
"System.Data.Common >= 4.0.0"
,
"System.Runtime.Extensions >= 4.0.10"
,
"System.Text.Encoding.CodePages >= 4.0.0"
,
"System.Globalization >= 4.0.10"
"Microsoft.CSharp >= 4.0.1-beta-*"
,
"System.Collections >= 4.0.11-beta-*"
,
"System.Collections.Concurrent >= 4.0.11-beta-*"
,
"System.Console >= 4.0.0-beta-*"
,
"System.Linq >= 4.0.1-beta-*"
,
"System.Threading >= 4.0.11-beta-*"
,
"System.Data.SqlClient >= 4.0.0-*"
,
"System.Reflection.Emit.ILGeneration >= 4.0.1-beta-*"
,
"System.Reflection.Emit.Lightweight >= 4.0.1-beta-*"
,
"System.Reflection.TypeExtensions >= 4.0.1-beta-*"
,
"System.Text.RegularExpressions >= 4.0.11-beta-*"
]
}
}
\ No newline at end of file
Tests/Program.cs
View file @
bd847fff
...
...
@@ -70,9 +70,9 @@ static void RunPerformanceTests()
static
void
Main
()
{
#if DNXCORE50
Console
.
WriteLine
(
"CoreCLR"
);
Console
.
WriteLine
(
"CoreCLR"
);
#else
Console
.
WriteLine
(
Environment
.
Version
);
Console
.
WriteLine
(
".NET: "
+
Environment
.
Version
);
#endif
#if DEBUG
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment