diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/CommandLineParser.sln b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/CommandLineParser.sln
index b20546a..0d911bb 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/CommandLineParser.sln
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/CommandLineParser.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
-VisualStudioVersion = 14.0.22609.0
+VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{73FCE9C7-48AB-4261-998D-12CB868B0E12}"
EndProject
@@ -10,11 +10,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
global.json = global.json
EndProjectSection
EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "CommandLineParser", "src\CommandLineParser\CommandLineParser.kproj", "{B2ABAB5C-24EF-4A0F-8F2E-51C3FE868229}"
+Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "CommandLineParser", "src\CommandLineParser\CommandLineParser.xproj", "{B2ABAB5C-24EF-4A0F-8F2E-51C3FE868229}"
EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ParserTest", "src\ParserTest\ParserTest.kproj", "{E1B36B40-0134-46C4-922B-7EC1FF6CD90F}"
+Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ParserTest", "src\ParserTest\ParserTest.xproj", "{E1B36B40-0134-46C4-922B-7EC1FF6CD90F}"
EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Tests", "src\Tests\Tests.kproj", "{0B8343A5-3DC9-41C5-8FED-9D832127D15B}"
+Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Tests", "src\Tests\Tests.xproj", "{0B8343A5-3DC9-41C5-8FED-9D832127D15B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -43,22 +43,4 @@ Global
{E1B36B40-0134-46C4-922B-7EC1FF6CD90F} = {73FCE9C7-48AB-4261-998D-12CB868B0E12}
{0B8343A5-3DC9-41C5-8FED-9D832127D15B} = {73FCE9C7-48AB-4261-998D-12CB868B0E12}
EndGlobalSection
- GlobalSection(TeamFoundationVersionControl) = preSolution
- SccNumberOfProjects = 4
- SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
- SccTeamFoundationServer = https://tfs.codeplex.com/tfs/tfs10
- SccLocalPath0 = .
- SccProjectUniqueName1 = src\\CommandLineParser\\CommandLineParser.kproj
- SccProjectTopLevelParentUniqueName1 = CommandLineParser.sln
- SccProjectName1 = src/CommandLineParser
- SccLocalPath1 = src\\CommandLineParser
- SccProjectUniqueName2 = src\\ParserTest\\ParserTest.kproj
- SccProjectTopLevelParentUniqueName2 = CommandLineParser.sln
- SccProjectName2 = src/ParserTest
- SccLocalPath2 = src\\ParserTest
- SccProjectUniqueName3 = src\\Tests\\Tests.kproj
- SccProjectTopLevelParentUniqueName3 = CommandLineParser.sln
- SccProjectName3 = src/Tests
- SccLocalPath3 = src\\Tests
- EndGlobalSection
EndGlobal
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/global.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/global.json
index 674ab52..ed4dca2 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/global.json
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/global.json
@@ -1,6 +1,6 @@
-{
+{
"sources": [ "src", "test" ],
"sdk": {
- "version": "1.0.0-beta3"
+ "version": "1.0.0-rc1-update1"
}
}
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.cs
index 7f09c0c..112bd09 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.cs
@@ -7,7 +7,7 @@
using CommandLineParser.Exceptions;
using CommandLineParser.Validation;
-#if ASPNETCORE50
+#if DNXCORE50
using ReflectionBridge.Extensions;
#endif
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.xproj b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.xproj
new file mode 100644
index 0000000..63018cd
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.xproj
@@ -0,0 +1,31 @@
+
+
+
+ 14.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+ b2abab5c-24ef-4a0f-8f2e-51c3fe868229
+ CommandLineParser
+ ..\..\artifacts\obj\$(MSBuildProjectName)
+ ..\..\artifacts\bin\$(MSBuildProjectName)\
+ SAK
+ SAK
+ SAK
+ SAK
+
+
+ CommandLineParser
+
+
+ 2.0
+
+
+ True
+
+
+ True
+
+
+
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/frameworks.txt b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/frameworks.txt
new file mode 100644
index 0000000..ef48e34
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/frameworks.txt
@@ -0,0 +1,60 @@
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Name | Abbr | Description |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| .NET Framework | net | Standard .NET BCL on Windows Desktop and Server. |
+| | net11 | |
+| | net20 | |
+| | net35 | |
+| | net40 | |
+| | net403 | |
+| | net45 | |
+| | net451 | |
+| | net452 | |
+| | net46 | |
+| | net461 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| .NET Core | netcore | .NET Core Framework used in Windows Store Development |
+| | netcore (equivalent to netcore45) | |
+| | netcore45 (equivalent to win8) | |
+| | netcore451 (equivalent to win81) | |
+| | netcore50 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| .NET MicroFramework | netmf | Support for [.NET MicroFramework](http://netmf.github.io/) projects |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Windows | win | Frameworks to support Windows Store Development |
+| | win (equivalent to win8) | |
+| | win8 (equivalent to netcore45) | |
+| | win81 (equivalent to netcore451) | |
+| | win10 -- not supported by Windows 10 Platform | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Silverlight | sl | Support for the Silverlight frameworks |
+| | sl4 | |
+| | sl5 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Windows Phone | wp | Windows Phone application support |
+| | wp (equivalent to wp7) | |
+| | wp7 | |
+| | wp75 | |
+| | wp8 | |
+| | wp81 | |
+| | wpa81 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| DNX | dnx | ASP.NET server-side framework support (Windows only) |
+| | dnx (equivalent to dnx45) | |
+| | dnx45 | |
+| | dnx451 | |
+| | dnx452 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| DNX Core | dnxcore | Core CLR framework support |
+| | dnxcore (equivalent to dnxcore50) | |
+| | dnxcore50 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Universal Windows Platform | uap | Support for Windows 10 Universal Application Platform |
+| | uap (equivalent to uap10) | |
+| | uap10 | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
+| Deprecated Frameworks | aspnet50 | |
+| aspnetcore50 | | |
+| winrt | | |
+| | | |
++-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.json
index 22c022a..c666842 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.json
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.json
@@ -1,17 +1,18 @@
{
- // NuGet settings
"version": "2.7.0.0-*",
"authors": [ "Trupik", "NTTAKR", "Stef Heyenrath" ],
"owners": [ "Stef Heyenrath" ],
"description": "CommandLine Parser Library lets you easily define strongly typed command line arguments, allows automatic parsing of command line arguments and mapping the values to properites of your objects.",
"summary": "CommandLine Parser Library lets you easily define strongly typed command line arguments, allows automatic parsing of command line arguments and mapping the values to properites of your objects.",
"tags": [ "commandline", "parse", "validate", "args", "arguments" ],
- "projectUrl": "https://commandlineparser.codeplex.com",
+ "projectUrl": "https://github.com/j-maly/CommandLineParser/",
+ "tooling": {
+ "defaultNamespace": "CommandLineParser"
+ },
"releasenotes": "AspNet v5",
- // NuGet settings
"dependencies": {
- "ReflectionBridge": "0.0.3"
+ "ReflectionBridge": "0.0.6"
},
"compilationOptions": {
@@ -19,37 +20,40 @@
},
"frameworks": {
+ "net20": {
+ },
+ "net35": {
+ },
"net40": {
- "frameworkAssemblies": {
- "System.Data": "4.0.0.0",
- "System.Xml": "4.0.0.0"
- }
},
"net45": {
- "frameworkAssemblies": {
- "System.Data": "4.0.0.0",
- "System.Xml": "4.0.0.0",
- "System.IO": "4.0.0.0"
- }
},
- "aspnet50": {
+ "net451": {
},
- "aspnetcore50": {
+ "net452": {
+ },
+ "dnx451": {
+ },
+ "dnx452": {
+ },
+ "dnxcore5": {
"dependencies": {
- "System.Runtime": "4.0.20-beta-22523",
- "System.Runtime.Extensions": "4.0.10-beta-22605",
- "System.Runtime.Serialization.Primitives": "4.0.0-beta-22605",
+ "Microsoft.CSharp": "4.0.1-beta-*",
+
+ "System.Runtime": "4.0.21-beta-*",
+ "System.Runtime.Extensions": "4.0.11-beta-*",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta-*",
- "System.Console": "4.0.0-beta-22605",
+ "System.Console": "4.0.0-beta-*",
- "System.IO": "4.0.10-beta-22605",
- "System.IO.FileSystem": "4.0.0-beta-22605",
+ "System.IO": "4.0.11-beta-*",
+ "System.IO.FileSystem": "4.0.1-beta-*",
- "System.Globalization": "4.0.10-beta-22605",
+ "System.Globalization": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0-beta-22605",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
- "System.Text.RegularExpressions": "4.0.10-beta-22605"
+ "System.Text.RegularExpressions": "4.0.11-beta-*"
}
}
}
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.lock.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.lock.json
new file mode 100644
index 0000000..76d0e09
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.lock.json
@@ -0,0 +1,3254 @@
+{
+ "locked": false,
+ "version": 2,
+ "targets": {
+ ".NETFramework,Version=v2.0": {
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0": {
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v2.0/win7-x86": {
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v2.0/win7-x64": {
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x86": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x64": {
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x86": {
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x64": {
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "sha512": "7FC8xcUJEZF2bHlWIeMwpHLKY7nZsZ2yj6Of4zXxL/3qW4mewtk2IAq3e2soxD3t2JP3WuKv6GsnsO9rgHzGJw==",
+ "files": [
+ "COPYING.txt",
+ "lib/net20/LinqBridge.dll",
+ "LINQBridge.1.3.0.nupkg",
+ "LINQBridge.1.3.0.nupkg.sha512",
+ "LINQBridge.nuspec"
+ ]
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.CSharp.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg.sha512",
+ "Microsoft.CSharp.nuspec",
+ "ref/dotnet5.1/de/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/es/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/fr/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/it/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ja/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ko/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/Microsoft.CSharp.dll",
+ "ref/dotnet5.1/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ru/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hant/Microsoft.CSharp.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._"
+ ]
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "sha512": "y70yKhBaIQJsfX9Zn/Ah6gl29xOiWzYOYfavZpeTWUp/eX3t6r/u2AYuc2pW2Cp88eMT+6EM7T6Pz+JExAB8+Q==",
+ "files": [
+ "lib/dnx452/ReflectionBridge.dll",
+ "lib/dnx452/ReflectionBridge.xml",
+ "lib/dnxcore50/ReflectionBridge.dll",
+ "lib/dnxcore50/ReflectionBridge.xml",
+ "lib/net20/ReflectionBridge.dll",
+ "lib/net20/ReflectionBridge.xml",
+ "lib/net35/ReflectionBridge.dll",
+ "lib/net35/ReflectionBridge.xml",
+ "lib/net40/ReflectionBridge.dll",
+ "lib/net40/ReflectionBridge.xml",
+ "lib/net45/ReflectionBridge.dll",
+ "lib/net45/ReflectionBridge.xml",
+ "lib/net451/ReflectionBridge.dll",
+ "lib/net451/ReflectionBridge.xml",
+ "lib/net452/ReflectionBridge.dll",
+ "lib/net452/ReflectionBridge.xml",
+ "lib/net46/ReflectionBridge.dll",
+ "lib/net46/ReflectionBridge.xml",
+ "lib/net461/ReflectionBridge.dll",
+ "lib/net461/ReflectionBridge.xml",
+ "lib/netcore50/ReflectionBridge.dll",
+ "lib/netcore50/ReflectionBridge.xml",
+ "lib/win/ReflectionBridge.dll",
+ "lib/win/ReflectionBridge.xml",
+ "lib/win81/ReflectionBridge.dll",
+ "lib/win81/ReflectionBridge.xml",
+ "ReflectionBridge.0.0.6.nupkg",
+ "ReflectionBridge.0.0.6.nupkg.sha512",
+ "ReflectionBridge.nuspec"
+ ]
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "pfQrTtnYcWOtI3RrpqjAzwT3I55ivTVZFpbKYG59dYTTvaLFGbs2njc/mrXHij6GylyJ2YjekS/9r6I8X3LV1A==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Console.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll",
+ "runtimes/win7/lib/net/_._"
+ ]
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "UOHEVg3jQwsvy3b+8zhDk7BQ9GhHY1KcjHSuqArzIl7oemcM/+D7OfS5iOA96ydjEv9FmIKV3knkXMge+cUD0Q==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.IO.FileSystem.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/net/_._",
+ "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/win8/_._",
+ "runtimes/win7/lib/wp8/_._",
+ "runtimes/win7/lib/wpa81/_._"
+ ]
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HphDhue34J/4+1rIMtInY1FWK1oLEMpxIpxGeNnhIlQf7hv5QDf05aWEC6180qbgkPBCFwyGnwWRBnONApwbBQ==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Private.Uri.nuspec",
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll",
+ "runtimes/win7/lib/netcore50/System.Private.Uri.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
+ ]
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Jm+LAzN7CZl1BZSxz4TsMBNy1rHNqyY/1+jxZf3BpF7vkPlWRXa/vSfY0lZJZdy4Doxa893bmcCf9pZNsJU16Q==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/dotnet/_._",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Runtime.Extensions.nuspec",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
+ ]
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
+ "files": [
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Collections.xml",
+ "ref/dotnet5.1/es/System.Collections.xml",
+ "ref/dotnet5.1/fr/System.Collections.xml",
+ "ref/dotnet5.1/it/System.Collections.xml",
+ "ref/dotnet5.1/ja/System.Collections.xml",
+ "ref/dotnet5.1/ko/System.Collections.xml",
+ "ref/dotnet5.1/ru/System.Collections.xml",
+ "ref/dotnet5.1/System.Collections.dll",
+ "ref/dotnet5.1/System.Collections.xml",
+ "ref/dotnet5.1/zh-hans/System.Collections.xml",
+ "ref/dotnet5.1/zh-hant/System.Collections.xml",
+ "ref/dotnet5.4/de/System.Collections.xml",
+ "ref/dotnet5.4/es/System.Collections.xml",
+ "ref/dotnet5.4/fr/System.Collections.xml",
+ "ref/dotnet5.4/it/System.Collections.xml",
+ "ref/dotnet5.4/ja/System.Collections.xml",
+ "ref/dotnet5.4/ko/System.Collections.xml",
+ "ref/dotnet5.4/ru/System.Collections.xml",
+ "ref/dotnet5.4/System.Collections.dll",
+ "ref/dotnet5.4/System.Collections.xml",
+ "ref/dotnet5.4/zh-hans/System.Collections.xml",
+ "ref/dotnet5.4/zh-hant/System.Collections.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "System.Collections.4.0.11-beta-23516.nupkg",
+ "System.Collections.4.0.11-beta-23516.nupkg.sha512",
+ "System.Collections.nuspec"
+ ]
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "tzF4Dbbv+5bcbQ7GHuuKafkaDZThiUiwxqCc1ngewnMWZ5YmIgjQZjs+E1DNhoMVAvkH0tSmLJvsDlx9dFg+Aw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Console.xml",
+ "ref/dotnet5.1/es/System.Console.xml",
+ "ref/dotnet5.1/fr/System.Console.xml",
+ "ref/dotnet5.1/it/System.Console.xml",
+ "ref/dotnet5.1/ja/System.Console.xml",
+ "ref/dotnet5.1/ko/System.Console.xml",
+ "ref/dotnet5.1/ru/System.Console.xml",
+ "ref/dotnet5.1/System.Console.dll",
+ "ref/dotnet5.1/System.Console.xml",
+ "ref/dotnet5.1/zh-hans/System.Console.xml",
+ "ref/dotnet5.1/zh-hant/System.Console.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Console.4.0.0-beta-23516.nupkg",
+ "System.Console.4.0.0-beta-23516.nupkg.sha512",
+ "System.Console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==",
+ "files": [
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet/es/System.Diagnostics.Debug.xml",
+ "ref/dotnet/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "System.Diagnostics.Debug.4.0.10.nupkg",
+ "System.Diagnostics.Debug.4.0.10.nupkg.sha512",
+ "System.Diagnostics.Debug.nuspec"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "sha512": "33os71rQUCLjM5pbhQqCopq9/YcqBHPBQ8WylrzNk3oJmfAR0SFwzZIKJRN2JcrkBYdzC/NtWrYVU8oroyZieA==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Dynamic.Runtime.xml",
+ "ref/netcore50/es/System.Dynamic.Runtime.xml",
+ "ref/netcore50/fr/System.Dynamic.Runtime.xml",
+ "ref/netcore50/it/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ja/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ko/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ru/System.Dynamic.Runtime.xml",
+ "ref/netcore50/System.Dynamic.Runtime.dll",
+ "ref/netcore50/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Dynamic.Runtime.4.0.0.nupkg",
+ "System.Dynamic.Runtime.4.0.0.nupkg.sha512",
+ "System.Dynamic.Runtime.nuspec"
+ ]
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==",
+ "files": [
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Globalization.xml",
+ "ref/dotnet/es/System.Globalization.xml",
+ "ref/dotnet/fr/System.Globalization.xml",
+ "ref/dotnet/it/System.Globalization.xml",
+ "ref/dotnet/ja/System.Globalization.xml",
+ "ref/dotnet/ko/System.Globalization.xml",
+ "ref/dotnet/ru/System.Globalization.xml",
+ "ref/dotnet/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.xml",
+ "ref/dotnet/zh-hans/System.Globalization.xml",
+ "ref/dotnet/zh-hant/System.Globalization.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "System.Globalization.4.0.10.nupkg",
+ "System.Globalization.4.0.10.nupkg.sha512",
+ "System.Globalization.nuspec"
+ ]
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "dR1DaWrF0zsV2z/GVs8xVvMds6xu0ykuwv+VPou8wbpJ1XxGBK9g6v5F84DWL8Q1qi+6Kyb56wbZYdYQO8OMew==",
+ "files": [
+ "lib/DNXCore50/System.IO.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.IO.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.IO.xml",
+ "ref/dotnet5.1/es/System.IO.xml",
+ "ref/dotnet5.1/fr/System.IO.xml",
+ "ref/dotnet5.1/it/System.IO.xml",
+ "ref/dotnet5.1/ja/System.IO.xml",
+ "ref/dotnet5.1/ko/System.IO.xml",
+ "ref/dotnet5.1/ru/System.IO.xml",
+ "ref/dotnet5.1/System.IO.dll",
+ "ref/dotnet5.1/System.IO.xml",
+ "ref/dotnet5.1/zh-hans/System.IO.xml",
+ "ref/dotnet5.1/zh-hant/System.IO.xml",
+ "ref/dotnet5.4/de/System.IO.xml",
+ "ref/dotnet5.4/es/System.IO.xml",
+ "ref/dotnet5.4/fr/System.IO.xml",
+ "ref/dotnet5.4/it/System.IO.xml",
+ "ref/dotnet5.4/ja/System.IO.xml",
+ "ref/dotnet5.4/ko/System.IO.xml",
+ "ref/dotnet5.4/ru/System.IO.xml",
+ "ref/dotnet5.4/System.IO.dll",
+ "ref/dotnet5.4/System.IO.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "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.11-beta-23516.nupkg",
+ "System.IO.4.0.11-beta-23516.nupkg.sha512",
+ "System.IO.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "KOYNQ6FeLQh0HdHVlp6IRjRGPCjyFvZRKfhYSDFi7DR0EHY3cC2rvfVj5HWJEW5KlSaa01Ct25m06yVnqSxwOQ==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/es/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/fr/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/it/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ja/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ko/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ru/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/System.IO.FileSystem.dll",
+ "ref/dotnet5.4/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.IO.FileSystem.4.0.1-beta-23516.nupkg",
+ "System.IO.FileSystem.4.0.1-beta-23516.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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AJaoyeAHLpurbTWnmvOhK/QC2sswKJrIA5RlPea+UdfXpHOw3srPNEPpseZDMV/EviVqAwUfFNkc5QxpGZtsLA==",
+ "files": [
+ "lib/dotnet5.4/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Linq.xml",
+ "ref/dotnet5.1/es/System.Linq.xml",
+ "ref/dotnet5.1/fr/System.Linq.xml",
+ "ref/dotnet5.1/it/System.Linq.xml",
+ "ref/dotnet5.1/ja/System.Linq.xml",
+ "ref/dotnet5.1/ko/System.Linq.xml",
+ "ref/dotnet5.1/ru/System.Linq.xml",
+ "ref/dotnet5.1/System.Linq.dll",
+ "ref/dotnet5.1/System.Linq.xml",
+ "ref/dotnet5.1/zh-hans/System.Linq.xml",
+ "ref/dotnet5.1/zh-hant/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "System.Linq.4.0.1-beta-23516.nupkg",
+ "System.Linq.4.0.1-beta-23516.nupkg.sha512",
+ "System.Linq.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "sha512": "wlfVllrKi+evu4Hi8yoJP1dSOVXbvsy7Hs1+oz4Cykfdf6MQTPlD3LI4WKWhprn8FpU5MS3spPSbcMX5sAoJSw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Linq.Expressions.xml",
+ "ref/dotnet/es/System.Linq.Expressions.xml",
+ "ref/dotnet/fr/System.Linq.Expressions.xml",
+ "ref/dotnet/it/System.Linq.Expressions.xml",
+ "ref/dotnet/ja/System.Linq.Expressions.xml",
+ "ref/dotnet/ko/System.Linq.Expressions.xml",
+ "ref/dotnet/ru/System.Linq.Expressions.xml",
+ "ref/dotnet/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Linq.Expressions.4.0.0.nupkg",
+ "System.Linq.Expressions.4.0.0.nupkg.sha512",
+ "System.Linq.Expressions.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
+ "files": [
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.ObjectModel.4.0.10.nupkg",
+ "System.ObjectModel.4.0.10.nupkg.sha512",
+ "System.ObjectModel.nuspec"
+ ]
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "sha512": "MG79ArOc8KhfAkjrimI5GFH4tML7XFo+Z1sEQGLPxrBlwfbITwrrNfYb3YoH6CpAlJHc4pcs/gZrUas/pEkTdg==",
+ "files": [
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtime.json",
+ "System.Private.Uri.4.0.1-beta-23516.nupkg",
+ "System.Private.Uri.4.0.1-beta-23516.nupkg.sha512",
+ "System.Private.Uri.nuspec"
+ ]
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Reflection.xml",
+ "ref/dotnet/es/System.Reflection.xml",
+ "ref/dotnet/fr/System.Reflection.xml",
+ "ref/dotnet/it/System.Reflection.xml",
+ "ref/dotnet/ja/System.Reflection.xml",
+ "ref/dotnet/ko/System.Reflection.xml",
+ "ref/dotnet/ru/System.Reflection.xml",
+ "ref/dotnet/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.xml",
+ "ref/dotnet/zh-hans/System.Reflection.xml",
+ "ref/dotnet/zh-hant/System.Reflection.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "System.Reflection.4.0.10.nupkg",
+ "System.Reflection.4.0.10.nupkg.sha512",
+ "System.Reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Ph0ELqqqz218bGEtnfQ1xegANVQ3v0S/hU12AHpb4HEw8SESssbNCKWEVjeI3y2xDYaVx1aVjM4hZ1QXa4IonQ==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/es/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/it/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/System.Reflection.Extensions.dll",
+ "ref/dotnet5.1/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "eR73/9y4Z8IGZjxpaGwJn9V5O/bZB3zwizo/S4qSnS0wDJDmdJ+KlsktE7N9rKGtBVlj+rpXKMe/I7s9RTCXpA==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/es/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/it/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/System.Reflection.Primitives.dll",
+ "ref/dotnet5.1/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Primitives.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "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/System.Reflection.TypeExtensions.dll",
+ "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",
+ "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.1-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "WfQwSR/xhY2slMGaFeu6+psuGJrbqXZY5PQ/QJVqxck1cp1LMTiFXgUXvkYlIGWfbyPNDNjPy6P0bCBXT0suyQ==",
+ "files": [
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/de/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/es/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/fr/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/it/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ja/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ko/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ru/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg",
+ "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg.sha512",
+ "System.Resources.ResourceManager.nuspec"
+ ]
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.xml",
+ "ref/dotnet5.1/es/System.Runtime.xml",
+ "ref/dotnet5.1/fr/System.Runtime.xml",
+ "ref/dotnet5.1/it/System.Runtime.xml",
+ "ref/dotnet5.1/ja/System.Runtime.xml",
+ "ref/dotnet5.1/ko/System.Runtime.xml",
+ "ref/dotnet5.1/ru/System.Runtime.xml",
+ "ref/dotnet5.1/System.Runtime.dll",
+ "ref/dotnet5.1/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.3/de/System.Runtime.xml",
+ "ref/dotnet5.3/es/System.Runtime.xml",
+ "ref/dotnet5.3/fr/System.Runtime.xml",
+ "ref/dotnet5.3/it/System.Runtime.xml",
+ "ref/dotnet5.3/ja/System.Runtime.xml",
+ "ref/dotnet5.3/ko/System.Runtime.xml",
+ "ref/dotnet5.3/ru/System.Runtime.xml",
+ "ref/dotnet5.3/System.Runtime.dll",
+ "ref/dotnet5.3/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.4/de/System.Runtime.xml",
+ "ref/dotnet5.4/es/System.Runtime.xml",
+ "ref/dotnet5.4/fr/System.Runtime.xml",
+ "ref/dotnet5.4/it/System.Runtime.xml",
+ "ref/dotnet5.4/ja/System.Runtime.xml",
+ "ref/dotnet5.4/ko/System.Runtime.xml",
+ "ref/dotnet5.4/ru/System.Runtime.xml",
+ "ref/dotnet5.4/System.Runtime.dll",
+ "ref/dotnet5.4/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "System.Runtime.4.0.21-beta-23516.nupkg",
+ "System.Runtime.4.0.21-beta-23516.nupkg.sha512",
+ "System.Runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HX4wNPrcCV9D+jpbsJCRPuVJbcDM+JobSotQWKq40lCq0WJbJi+0lNQ/T1zHEdWcf4W2PmtMkug1rW7yKW9PiQ==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/System.Runtime.Extensions.dll",
+ "ref/dotnet5.1/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/System.Runtime.Extensions.dll",
+ "ref/dotnet5.4/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Runtime.Extensions.4.0.11-beta-23516.nupkg",
+ "System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512",
+ "System.Runtime.Extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "System.Runtime.Handles.4.0.0.nupkg",
+ "System.Runtime.Handles.4.0.0.nupkg.sha512",
+ "System.Runtime.Handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "System.Runtime.InteropServices.4.0.20.nupkg",
+ "System.Runtime.InteropServices.4.0.20.nupkg.sha512",
+ "System.Runtime.InteropServices.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AQywM01eG8EgYde/RRrJDVdHmOOI3KkgK9GEjLQqvTLsrWsamNHN/j7Pxwa3XX7klSSrfDpvTNfUl40855idVg==",
+ "files": [
+ "lib/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.0.0": {
+ "type": "package",
+ "sha512": "AMxFNOXpA6Ab8swULbXuJmoT2K5w6TnV3ObF5wsmEcIHQUJghoZtDVfVHb08O2wW15mOSI1i9Wg0Dx0pY13o8g==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "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",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "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/_._",
+ "System.Text.Encoding.4.0.0.nupkg",
+ "System.Text.Encoding.4.0.0.nupkg.sha512",
+ "System.Text.Encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.0.10": {
+ "type": "package",
+ "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
+ "files": [
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "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.nuspec"
+ ]
+ },
+ "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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==",
+ "files": [
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.1/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.4/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg.sha512",
+ "System.Text.RegularExpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
+ "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/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "System.Threading.4.0.10.nupkg",
+ "System.Threading.4.0.10.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.0": {
+ "type": "package",
+ "sha512": "dA3y1B6Pc8mNt9obhEWWGGpvEakS51+nafXpmM/Z8IF847GErLXGTjdfA+AYEKszfFbH7SVLWUklXhYeeSQ1lw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Threading.Tasks.4.0.0.nupkg",
+ "System.Threading.Tasks.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==",
+ "files": [
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "System.Threading.Tasks.4.0.10.nupkg",
+ "System.Threading.Tasks.4.0.10.nupkg.sha512",
+ "System.Threading.Tasks.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "ReflectionBridge >= 0.0.6"
+ ],
+ ".NETFramework,Version=v2.0": [],
+ ".NETFramework,Version=v3.5": [],
+ ".NETFramework,Version=v4.0": [],
+ ".NETFramework,Version=v4.5": [],
+ ".NETFramework,Version=v4.5.1": [],
+ ".NETFramework,Version=v4.5.2": [],
+ "DNX,Version=v4.5.1": [],
+ "DNX,Version=v4.5.2": [],
+ "DNXCore,Version=v5.0": [
+ "Microsoft.CSharp >= 4.0.1-beta-*",
+ "System.Runtime >= 4.0.21-beta-*",
+ "System.Runtime.Extensions >= 4.0.11-beta-*",
+ "System.Runtime.Serialization.Primitives >= 4.0.11-beta-*",
+ "System.Console >= 4.0.0-beta-*",
+ "System.IO >= 4.0.11-beta-*",
+ "System.IO.FileSystem >= 4.0.1-beta-*",
+ "System.Globalization >= 4.0.10",
+ "System.Resources.ResourceManager >= 4.0.1-beta-23409",
+ "System.Text.RegularExpressions >= 4.0.11-beta-*"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/.settings/tasks.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/.settings/tasks.json
new file mode 100644
index 0000000..aac10fe
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/.settings/tasks.json
@@ -0,0 +1,223 @@
+// Available variables which can be used inside of strings.
+// ${workspaceRoot}: the root folder of the team
+// ${file}: the current opened file
+// ${fileBasename}: the current opened file's basename
+// ${fileDirname}: the current opened file's dirname
+// ${fileExtname}: the current opened file's extension
+// ${cwd}: the current working directory of the spawned process
+
+// A task runner that calls the Typescript compiler (tsc) and
+// Compiles a HelloWorld.ts program
+{
+ "version": "0.1.0",
+
+ // The command is tsc. Assumes that tsc has been installed using npm install -g typescript
+ "command": "tsc",
+
+ // The command is a shell script
+ "isShellCommand": true,
+
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+
+ // args is the HelloWorld program to compile.
+ "args": ["HelloWorld.ts"],
+
+ // use the standard tsc problem matcher to find compile problems
+ // in the output.
+ "problemMatcher": "$tsc"
+}
+
+// A task runner that calls the Typescript compiler (tsc) and
+// compiles based on a tsconfig.json file that is present in
+// the root of the folder open in VSCode
+/*
+{
+ "version": "0.1.0",
+
+ // The command is tsc. Assumes that tsc has been installed using npm install -g typescript
+ "command": "tsc",
+
+ // The command is a shell script
+ "isShellCommand": true,
+
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+
+ // Tell the tsc compiler to use the tsconfig.json from the open folder.
+ "args": ["-p", "."],
+
+ // use the standard tsc problem matcher to find compile problems
+ // in the output.
+ "problemMatcher": "$tsc"
+}
+*/
+
+// A task runner configuration for gulp. Gulp provides a less task
+// which compiles less to css.
+/*
+{
+ "version": "0.1.0",
+ "command": "gulp",
+ "isShellCommand": true,
+ "tasks": [
+ {
+ "taskName": "less",
+ // Make this the default build command.
+ "isBuildCommand": true,
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+ // Use the standard less compilation problem matcher.
+ "problemMatcher": "$lessCompile"
+ }
+ ]
+}
+*/
+
+// Uncomment the following section to use gulp in a watching mode that compiles a
+// less file. The gulp task prints "[hh:mm:ss] Starting 'clean-styles'" to the console
+// when existing css files get deleted and "[hh:mm:ss] Finished 'styles'" when the
+// overall less compilation has finished. When the clean pattern is detect internal less
+// problems are cleaned. When the finshed pattern is detected in the output less
+// problems are published.
+/*
+{
+ "version": "0.1.0",
+ "command": "gulp",
+ "isShellCommand": true,
+ "tasks": [
+ {
+ "taskName": "watch-less",
+ // Make this the default build command.
+ "isBuildCommand": true,
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+ // Task is running in watching mode.
+ "isWatching": true,
+ "problemMatcher": {
+ // Use the standard less compilation problem matcher as the base.
+ "base": "$lessCompile",
+ // A regular expression signalling that a watched task begins executing (usually triggered through file watching).
+ "watchedTaskBeginsRegExp": "^\\[\\d+:\\d+:\\d+\\] Starting 'clean-styles'\\.\\.\\.$",
+ // A regular expression signalling that a watched tasks ends executing.
+ "watchedTaskEndsRegExp": "^\\[\\d+:\\d+:\\d+\\] Finished 'styles' after \\d+"
+ }
+ }
+ ]
+}
+*/
+
+// Uncomment the following section to use jake to build a workspace
+// cloned from https://github.com/Microsoft/TypeScript.git
+/*
+{
+ "version": "0.1.0",
+ // Task runner is jake
+ "command": "jake",
+ // Need to be executed in shell / cmd
+ "isShellCommand": true,
+ "showOutput": "silent",
+ "tasks": [
+ {
+ // TS build command is local.
+ "taskName": "local",
+ // Make this the default build command.
+ "isBuildCommand": true,
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+ // Use the redefined Typescript output problem matcher.
+ "problemMatcher": [
+ "$tsc"
+ ]
+ }
+ ]
+}
+*/
+
+// Uncomment the section below to use msbuild and generate problems
+// for csc, cpp, tsc and vb. The configuration assumes that msbuild
+// is available on the path and a solution file exists in the
+// workspace folder root.
+/*
+{
+ "version": "0.1.0",
+ "command": "msbuild",
+ "args": [
+ // Ask msbuild to generate full paths for file names.
+ "/property:GenerateFullPaths=true"
+ ],
+ "taskSelector": "/t:",
+ "showOutput": "silent",
+ "tasks": [
+ {
+ "taskName": "build",
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+ // Use the standard MS compiler pattern to detect errors, warnings
+ // and infos in the output.
+ "problemMatcher": "$msCompile"
+ }
+ ]
+}
+*/
+
+// Uncomment the following section to use msbuild which compiles Typescript
+// and less files.
+/*
+{
+ "version": "0.1.0",
+ "command": "msbuild",
+ "args": [
+ // Ask msbuild to generate full paths for file names.
+ "/property:GenerateFullPaths=true"
+ ],
+ "taskSelector": "/t:",
+ "showOutput": "silent",
+ "tasks": [
+ {
+ "taskName": "build",
+ // Show the output window only if unrecognized errors occur.
+ "showOutput": "silent",
+ // Use the standard MS compiler pattern to detect errors, warnings
+ // and infos in the output.
+ "problemMatcher": [
+ "$msCompile",
+ "$lessCompile"
+ ]
+ }
+ ]
+}
+*/
+// A task runner example that defines a problemMatcher inline instead of using
+// a predfined one.
+/*
+{
+ "version": "0.1.0",
+ "command": "tsc",
+ "isShellCommand": true,
+ "args": ["HelloWorld.ts"],
+ "showOutput": "silent",
+ "problemMatcher": {
+ // The problem is owned by the typescript language service. Ensure that the problems
+ // are merged with problems produced by Visual Studio's language service.
+ "owner": "typescript",
+ // The file name for reported problems is relative to the current working directory.
+ "fileLocation": ["relative", "${cwd}"],
+ // The actual pattern to match problems in the output.
+ "pattern": {
+ // The regular expression. Matches HelloWorld.ts(2,10): error TS2339: Property 'logg' does not exist on type 'Console'.
+ "regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
+ // The match group that denotes the file containing the problem.
+ "file": 1,
+ // The match group that denotes the problem location.
+ "location": 2,
+ // The match group that denotes the problem's severity. Can be omitted.
+ "severity": 3,
+ // The match group that denotes the problem code. Can be omitted.
+ "code": 4,
+ // The match group that denotes the problem's message.
+ "message": 5
+ }
+ }
+}
+*/
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/ParserTest.xproj b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/ParserTest.xproj
new file mode 100644
index 0000000..b1b33d5
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/ParserTest.xproj
@@ -0,0 +1,32 @@
+
+
+
+ 14.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+ e1b36b40-0134-46c4-922b-7ec1ff6cd90f
+ ParserTest
+ ..\..\artifacts\obj\$(MSBuildProjectName)
+ ..\..\artifacts\bin\$(MSBuildProjectName)\
+ SAK
+ SAK
+ SAK
+ SAK
+
+
+ ParserTest
+
+
+ 2.0
+ 1321
+
+
+ True
+
+
+ True
+
+
+
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/Program.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/Program.cs
index 199c2c1..a996dbc 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/Program.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/Program.cs
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
+using System.Reflection;
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.json
index 224494f..67c6346 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.json
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.0.0-*",
+ "version": "2.7.0.0-*",
"authors": [ "Stef Heyenrath" ],
"dependencies": {
"CommandLineParser": "2.7.0.0-*"
@@ -14,20 +14,40 @@
},
"frameworks": {
+ "net20": {
+ },
+ "net35": {
+ },
"net40": {
- "frameworkAssemblies": {
- }
},
"net45": {
- "frameworkAssemblies": {
- }
},
- "aspnet50": {
-
+ "net451": {
+ },
+ "net452": {
+ },
+ "dnx451": {
},
- "aspnetcore50": {
+ "dnx452": {
+ },
+ "dnxcore5": {
"dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta-*",
+
+ "System.Runtime": "4.0.21-beta-*",
+ "System.Runtime.Extensions": "4.0.11-beta-*",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta-*",
+
+ "System.Console": "4.0.0-beta-*",
+
+ "System.IO": "4.0.11-beta-*",
+ "System.IO.FileSystem": "4.0.1-beta-*",
+
+ "System.Globalization": "4.0.10",
+
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Text.RegularExpressions": "4.0.11-beta-*"
}
}
}
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.lock.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.lock.json
new file mode 100644
index 0000000..b889515
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/ParserTest/project.lock.json
@@ -0,0 +1,3477 @@
+{
+ "locked": false,
+ "version": 2,
+ "targets": {
+ ".NETFramework,Version=v2.0": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v2.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v3.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Text.Encoding/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Text.Encoding.dll": {}
+ }
+ },
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Threading.Tasks.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v2.0/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v2.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v2.0/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v2.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net20/LinqBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/LinqBridge.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "LINQBridge": "1.3.0"
+ },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System"
+ ],
+ "compile": {
+ "lib/net20/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net20/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v3.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v3.5/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v3.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net35/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net35/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.0/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.0",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net40/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net40/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net45/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net45/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.2/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net452/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Debug.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-23516": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "path": "../CommandLineParser/project.json"
+ },
+ "LINQBridge/1.3.0": {
+ "type": "package",
+ "sha512": "7FC8xcUJEZF2bHlWIeMwpHLKY7nZsZ2yj6Of4zXxL/3qW4mewtk2IAq3e2soxD3t2JP3WuKv6GsnsO9rgHzGJw==",
+ "files": [
+ "COPYING.txt",
+ "lib/net20/LinqBridge.dll",
+ "LINQBridge.1.3.0.nupkg",
+ "LINQBridge.1.3.0.nupkg.sha512",
+ "LINQBridge.nuspec"
+ ]
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.CSharp.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg.sha512",
+ "Microsoft.CSharp.nuspec",
+ "ref/dotnet5.1/de/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/es/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/fr/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/it/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ja/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ko/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/Microsoft.CSharp.dll",
+ "ref/dotnet5.1/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ru/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hant/Microsoft.CSharp.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._"
+ ]
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "sha512": "y70yKhBaIQJsfX9Zn/Ah6gl29xOiWzYOYfavZpeTWUp/eX3t6r/u2AYuc2pW2Cp88eMT+6EM7T6Pz+JExAB8+Q==",
+ "files": [
+ "lib/dnx452/ReflectionBridge.dll",
+ "lib/dnx452/ReflectionBridge.xml",
+ "lib/dnxcore50/ReflectionBridge.dll",
+ "lib/dnxcore50/ReflectionBridge.xml",
+ "lib/net20/ReflectionBridge.dll",
+ "lib/net20/ReflectionBridge.xml",
+ "lib/net35/ReflectionBridge.dll",
+ "lib/net35/ReflectionBridge.xml",
+ "lib/net40/ReflectionBridge.dll",
+ "lib/net40/ReflectionBridge.xml",
+ "lib/net45/ReflectionBridge.dll",
+ "lib/net45/ReflectionBridge.xml",
+ "lib/net451/ReflectionBridge.dll",
+ "lib/net451/ReflectionBridge.xml",
+ "lib/net452/ReflectionBridge.dll",
+ "lib/net452/ReflectionBridge.xml",
+ "lib/net46/ReflectionBridge.dll",
+ "lib/net46/ReflectionBridge.xml",
+ "lib/net461/ReflectionBridge.dll",
+ "lib/net461/ReflectionBridge.xml",
+ "lib/netcore50/ReflectionBridge.dll",
+ "lib/netcore50/ReflectionBridge.xml",
+ "lib/win/ReflectionBridge.dll",
+ "lib/win/ReflectionBridge.xml",
+ "lib/win81/ReflectionBridge.dll",
+ "lib/win81/ReflectionBridge.xml",
+ "ReflectionBridge.0.0.6.nupkg",
+ "ReflectionBridge.0.0.6.nupkg.sha512",
+ "ReflectionBridge.nuspec"
+ ]
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "pfQrTtnYcWOtI3RrpqjAzwT3I55ivTVZFpbKYG59dYTTvaLFGbs2njc/mrXHij6GylyJ2YjekS/9r6I8X3LV1A==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Console.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll",
+ "runtimes/win7/lib/net/_._"
+ ]
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "UOHEVg3jQwsvy3b+8zhDk7BQ9GhHY1KcjHSuqArzIl7oemcM/+D7OfS5iOA96ydjEv9FmIKV3knkXMge+cUD0Q==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.IO.FileSystem.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/net/_._",
+ "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/win8/_._",
+ "runtimes/win7/lib/wp8/_._",
+ "runtimes/win7/lib/wpa81/_._"
+ ]
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HphDhue34J/4+1rIMtInY1FWK1oLEMpxIpxGeNnhIlQf7hv5QDf05aWEC6180qbgkPBCFwyGnwWRBnONApwbBQ==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Private.Uri.nuspec",
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll",
+ "runtimes/win7/lib/netcore50/System.Private.Uri.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
+ ]
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Jm+LAzN7CZl1BZSxz4TsMBNy1rHNqyY/1+jxZf3BpF7vkPlWRXa/vSfY0lZJZdy4Doxa893bmcCf9pZNsJU16Q==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/dotnet/_._",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Runtime.Extensions.nuspec",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
+ ]
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
+ "files": [
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Collections.xml",
+ "ref/dotnet5.1/es/System.Collections.xml",
+ "ref/dotnet5.1/fr/System.Collections.xml",
+ "ref/dotnet5.1/it/System.Collections.xml",
+ "ref/dotnet5.1/ja/System.Collections.xml",
+ "ref/dotnet5.1/ko/System.Collections.xml",
+ "ref/dotnet5.1/ru/System.Collections.xml",
+ "ref/dotnet5.1/System.Collections.dll",
+ "ref/dotnet5.1/System.Collections.xml",
+ "ref/dotnet5.1/zh-hans/System.Collections.xml",
+ "ref/dotnet5.1/zh-hant/System.Collections.xml",
+ "ref/dotnet5.4/de/System.Collections.xml",
+ "ref/dotnet5.4/es/System.Collections.xml",
+ "ref/dotnet5.4/fr/System.Collections.xml",
+ "ref/dotnet5.4/it/System.Collections.xml",
+ "ref/dotnet5.4/ja/System.Collections.xml",
+ "ref/dotnet5.4/ko/System.Collections.xml",
+ "ref/dotnet5.4/ru/System.Collections.xml",
+ "ref/dotnet5.4/System.Collections.dll",
+ "ref/dotnet5.4/System.Collections.xml",
+ "ref/dotnet5.4/zh-hans/System.Collections.xml",
+ "ref/dotnet5.4/zh-hant/System.Collections.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "System.Collections.4.0.11-beta-23516.nupkg",
+ "System.Collections.4.0.11-beta-23516.nupkg.sha512",
+ "System.Collections.nuspec"
+ ]
+ },
+ "System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "tzF4Dbbv+5bcbQ7GHuuKafkaDZThiUiwxqCc1ngewnMWZ5YmIgjQZjs+E1DNhoMVAvkH0tSmLJvsDlx9dFg+Aw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Console.xml",
+ "ref/dotnet5.1/es/System.Console.xml",
+ "ref/dotnet5.1/fr/System.Console.xml",
+ "ref/dotnet5.1/it/System.Console.xml",
+ "ref/dotnet5.1/ja/System.Console.xml",
+ "ref/dotnet5.1/ko/System.Console.xml",
+ "ref/dotnet5.1/ru/System.Console.xml",
+ "ref/dotnet5.1/System.Console.dll",
+ "ref/dotnet5.1/System.Console.xml",
+ "ref/dotnet5.1/zh-hans/System.Console.xml",
+ "ref/dotnet5.1/zh-hant/System.Console.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Console.4.0.0-beta-23516.nupkg",
+ "System.Console.4.0.0-beta-23516.nupkg.sha512",
+ "System.Console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==",
+ "files": [
+ "lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Diagnostics.Debug.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet/es/System.Diagnostics.Debug.xml",
+ "ref/dotnet/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet/System.Diagnostics.Debug.dll",
+ "ref/dotnet/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll",
+ "System.Diagnostics.Debug.4.0.10.nupkg",
+ "System.Diagnostics.Debug.4.0.10.nupkg.sha512",
+ "System.Diagnostics.Debug.nuspec"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "sha512": "33os71rQUCLjM5pbhQqCopq9/YcqBHPBQ8WylrzNk3oJmfAR0SFwzZIKJRN2JcrkBYdzC/NtWrYVU8oroyZieA==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Dynamic.Runtime.xml",
+ "ref/netcore50/es/System.Dynamic.Runtime.xml",
+ "ref/netcore50/fr/System.Dynamic.Runtime.xml",
+ "ref/netcore50/it/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ja/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ko/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ru/System.Dynamic.Runtime.xml",
+ "ref/netcore50/System.Dynamic.Runtime.dll",
+ "ref/netcore50/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Dynamic.Runtime.4.0.0.nupkg",
+ "System.Dynamic.Runtime.4.0.0.nupkg.sha512",
+ "System.Dynamic.Runtime.nuspec"
+ ]
+ },
+ "System.Globalization/4.0.10": {
+ "type": "package",
+ "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==",
+ "files": [
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Globalization.xml",
+ "ref/dotnet/es/System.Globalization.xml",
+ "ref/dotnet/fr/System.Globalization.xml",
+ "ref/dotnet/it/System.Globalization.xml",
+ "ref/dotnet/ja/System.Globalization.xml",
+ "ref/dotnet/ko/System.Globalization.xml",
+ "ref/dotnet/ru/System.Globalization.xml",
+ "ref/dotnet/System.Globalization.dll",
+ "ref/dotnet/System.Globalization.xml",
+ "ref/dotnet/zh-hans/System.Globalization.xml",
+ "ref/dotnet/zh-hant/System.Globalization.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "System.Globalization.4.0.10.nupkg",
+ "System.Globalization.4.0.10.nupkg.sha512",
+ "System.Globalization.nuspec"
+ ]
+ },
+ "System.IO/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "dR1DaWrF0zsV2z/GVs8xVvMds6xu0ykuwv+VPou8wbpJ1XxGBK9g6v5F84DWL8Q1qi+6Kyb56wbZYdYQO8OMew==",
+ "files": [
+ "lib/DNXCore50/System.IO.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.IO.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.IO.xml",
+ "ref/dotnet5.1/es/System.IO.xml",
+ "ref/dotnet5.1/fr/System.IO.xml",
+ "ref/dotnet5.1/it/System.IO.xml",
+ "ref/dotnet5.1/ja/System.IO.xml",
+ "ref/dotnet5.1/ko/System.IO.xml",
+ "ref/dotnet5.1/ru/System.IO.xml",
+ "ref/dotnet5.1/System.IO.dll",
+ "ref/dotnet5.1/System.IO.xml",
+ "ref/dotnet5.1/zh-hans/System.IO.xml",
+ "ref/dotnet5.1/zh-hant/System.IO.xml",
+ "ref/dotnet5.4/de/System.IO.xml",
+ "ref/dotnet5.4/es/System.IO.xml",
+ "ref/dotnet5.4/fr/System.IO.xml",
+ "ref/dotnet5.4/it/System.IO.xml",
+ "ref/dotnet5.4/ja/System.IO.xml",
+ "ref/dotnet5.4/ko/System.IO.xml",
+ "ref/dotnet5.4/ru/System.IO.xml",
+ "ref/dotnet5.4/System.IO.dll",
+ "ref/dotnet5.4/System.IO.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "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.11-beta-23516.nupkg",
+ "System.IO.4.0.11-beta-23516.nupkg.sha512",
+ "System.IO.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "KOYNQ6FeLQh0HdHVlp6IRjRGPCjyFvZRKfhYSDFi7DR0EHY3cC2rvfVj5HWJEW5KlSaa01Ct25m06yVnqSxwOQ==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/es/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/fr/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/it/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ja/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ko/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ru/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/System.IO.FileSystem.dll",
+ "ref/dotnet5.4/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.IO.FileSystem.4.0.1-beta-23516.nupkg",
+ "System.IO.FileSystem.4.0.1-beta-23516.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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AJaoyeAHLpurbTWnmvOhK/QC2sswKJrIA5RlPea+UdfXpHOw3srPNEPpseZDMV/EviVqAwUfFNkc5QxpGZtsLA==",
+ "files": [
+ "lib/dotnet5.4/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Linq.xml",
+ "ref/dotnet5.1/es/System.Linq.xml",
+ "ref/dotnet5.1/fr/System.Linq.xml",
+ "ref/dotnet5.1/it/System.Linq.xml",
+ "ref/dotnet5.1/ja/System.Linq.xml",
+ "ref/dotnet5.1/ko/System.Linq.xml",
+ "ref/dotnet5.1/ru/System.Linq.xml",
+ "ref/dotnet5.1/System.Linq.dll",
+ "ref/dotnet5.1/System.Linq.xml",
+ "ref/dotnet5.1/zh-hans/System.Linq.xml",
+ "ref/dotnet5.1/zh-hant/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "System.Linq.4.0.1-beta-23516.nupkg",
+ "System.Linq.4.0.1-beta-23516.nupkg.sha512",
+ "System.Linq.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.0.0": {
+ "type": "package",
+ "sha512": "wlfVllrKi+evu4Hi8yoJP1dSOVXbvsy7Hs1+oz4Cykfdf6MQTPlD3LI4WKWhprn8FpU5MS3spPSbcMX5sAoJSw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Linq.Expressions.xml",
+ "ref/dotnet/es/System.Linq.Expressions.xml",
+ "ref/dotnet/fr/System.Linq.Expressions.xml",
+ "ref/dotnet/it/System.Linq.Expressions.xml",
+ "ref/dotnet/ja/System.Linq.Expressions.xml",
+ "ref/dotnet/ko/System.Linq.Expressions.xml",
+ "ref/dotnet/ru/System.Linq.Expressions.xml",
+ "ref/dotnet/System.Linq.Expressions.dll",
+ "ref/dotnet/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Linq.Expressions.4.0.0.nupkg",
+ "System.Linq.Expressions.4.0.0.nupkg.sha512",
+ "System.Linq.Expressions.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
+ "files": [
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.ObjectModel.4.0.10.nupkg",
+ "System.ObjectModel.4.0.10.nupkg.sha512",
+ "System.ObjectModel.nuspec"
+ ]
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "sha512": "MG79ArOc8KhfAkjrimI5GFH4tML7XFo+Z1sEQGLPxrBlwfbITwrrNfYb3YoH6CpAlJHc4pcs/gZrUas/pEkTdg==",
+ "files": [
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtime.json",
+ "System.Private.Uri.4.0.1-beta-23516.nupkg",
+ "System.Private.Uri.4.0.1-beta-23516.nupkg.sha512",
+ "System.Private.Uri.nuspec"
+ ]
+ },
+ "System.Reflection/4.0.10": {
+ "type": "package",
+ "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Reflection.xml",
+ "ref/dotnet/es/System.Reflection.xml",
+ "ref/dotnet/fr/System.Reflection.xml",
+ "ref/dotnet/it/System.Reflection.xml",
+ "ref/dotnet/ja/System.Reflection.xml",
+ "ref/dotnet/ko/System.Reflection.xml",
+ "ref/dotnet/ru/System.Reflection.xml",
+ "ref/dotnet/System.Reflection.dll",
+ "ref/dotnet/System.Reflection.xml",
+ "ref/dotnet/zh-hans/System.Reflection.xml",
+ "ref/dotnet/zh-hant/System.Reflection.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "System.Reflection.4.0.10.nupkg",
+ "System.Reflection.4.0.10.nupkg.sha512",
+ "System.Reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Ph0ELqqqz218bGEtnfQ1xegANVQ3v0S/hU12AHpb4HEw8SESssbNCKWEVjeI3y2xDYaVx1aVjM4hZ1QXa4IonQ==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/es/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/it/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/System.Reflection.Extensions.dll",
+ "ref/dotnet5.1/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "eR73/9y4Z8IGZjxpaGwJn9V5O/bZB3zwizo/S4qSnS0wDJDmdJ+KlsktE7N9rKGtBVlj+rpXKMe/I7s9RTCXpA==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/es/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/it/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/System.Reflection.Primitives.dll",
+ "ref/dotnet5.1/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Primitives.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "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/System.Reflection.TypeExtensions.dll",
+ "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",
+ "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.1-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "WfQwSR/xhY2slMGaFeu6+psuGJrbqXZY5PQ/QJVqxck1cp1LMTiFXgUXvkYlIGWfbyPNDNjPy6P0bCBXT0suyQ==",
+ "files": [
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/System.Resources.ResourceManager.dll",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/de/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/es/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/fr/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/it/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ja/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ko/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/ru/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "runtimes/win8-aot/lib/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg",
+ "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg.sha512",
+ "System.Resources.ResourceManager.nuspec"
+ ]
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.xml",
+ "ref/dotnet5.1/es/System.Runtime.xml",
+ "ref/dotnet5.1/fr/System.Runtime.xml",
+ "ref/dotnet5.1/it/System.Runtime.xml",
+ "ref/dotnet5.1/ja/System.Runtime.xml",
+ "ref/dotnet5.1/ko/System.Runtime.xml",
+ "ref/dotnet5.1/ru/System.Runtime.xml",
+ "ref/dotnet5.1/System.Runtime.dll",
+ "ref/dotnet5.1/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.3/de/System.Runtime.xml",
+ "ref/dotnet5.3/es/System.Runtime.xml",
+ "ref/dotnet5.3/fr/System.Runtime.xml",
+ "ref/dotnet5.3/it/System.Runtime.xml",
+ "ref/dotnet5.3/ja/System.Runtime.xml",
+ "ref/dotnet5.3/ko/System.Runtime.xml",
+ "ref/dotnet5.3/ru/System.Runtime.xml",
+ "ref/dotnet5.3/System.Runtime.dll",
+ "ref/dotnet5.3/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.4/de/System.Runtime.xml",
+ "ref/dotnet5.4/es/System.Runtime.xml",
+ "ref/dotnet5.4/fr/System.Runtime.xml",
+ "ref/dotnet5.4/it/System.Runtime.xml",
+ "ref/dotnet5.4/ja/System.Runtime.xml",
+ "ref/dotnet5.4/ko/System.Runtime.xml",
+ "ref/dotnet5.4/ru/System.Runtime.xml",
+ "ref/dotnet5.4/System.Runtime.dll",
+ "ref/dotnet5.4/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "System.Runtime.4.0.21-beta-23516.nupkg",
+ "System.Runtime.4.0.21-beta-23516.nupkg.sha512",
+ "System.Runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HX4wNPrcCV9D+jpbsJCRPuVJbcDM+JobSotQWKq40lCq0WJbJi+0lNQ/T1zHEdWcf4W2PmtMkug1rW7yKW9PiQ==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/System.Runtime.Extensions.dll",
+ "ref/dotnet5.1/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/System.Runtime.Extensions.dll",
+ "ref/dotnet5.4/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Runtime.Extensions.4.0.11-beta-23516.nupkg",
+ "System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512",
+ "System.Runtime.Extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "System.Runtime.Handles.4.0.0.nupkg",
+ "System.Runtime.Handles.4.0.0.nupkg.sha512",
+ "System.Runtime.Handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet/es/System.Runtime.InteropServices.xml",
+ "ref/dotnet/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet/System.Runtime.InteropServices.dll",
+ "ref/dotnet/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "System.Runtime.InteropServices.4.0.20.nupkg",
+ "System.Runtime.InteropServices.4.0.20.nupkg.sha512",
+ "System.Runtime.InteropServices.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AQywM01eG8EgYde/RRrJDVdHmOOI3KkgK9GEjLQqvTLsrWsamNHN/j7Pxwa3XX7klSSrfDpvTNfUl40855idVg==",
+ "files": [
+ "lib/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.0.0": {
+ "type": "package",
+ "sha512": "AMxFNOXpA6Ab8swULbXuJmoT2K5w6TnV3ObF5wsmEcIHQUJghoZtDVfVHb08O2wW15mOSI1i9Wg0Dx0pY13o8g==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "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",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "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/_._",
+ "System.Text.Encoding.4.0.0.nupkg",
+ "System.Text.Encoding.4.0.0.nupkg.sha512",
+ "System.Text.Encoding.nuspec"
+ ]
+ },
+ "System.Text.Encoding/4.0.10": {
+ "type": "package",
+ "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
+ "files": [
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "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.nuspec"
+ ]
+ },
+ "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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==",
+ "files": [
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.1/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.4/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg.sha512",
+ "System.Text.RegularExpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
+ "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/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "System.Threading.4.0.10.nupkg",
+ "System.Threading.4.0.10.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.0": {
+ "type": "package",
+ "sha512": "dA3y1B6Pc8mNt9obhEWWGGpvEakS51+nafXpmM/Z8IF847GErLXGTjdfA+AYEKszfFbH7SVLWUklXhYeeSQ1lw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Threading.Tasks.4.0.0.nupkg",
+ "System.Threading.Tasks.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==",
+ "files": [
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "System.Threading.Tasks.4.0.10.nupkg",
+ "System.Threading.Tasks.4.0.10.nupkg.sha512",
+ "System.Threading.Tasks.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "CommandLineParser >= 2.7.0-*"
+ ],
+ ".NETFramework,Version=v2.0": [],
+ ".NETFramework,Version=v3.5": [],
+ ".NETFramework,Version=v4.0": [],
+ ".NETFramework,Version=v4.5": [],
+ ".NETFramework,Version=v4.5.1": [],
+ ".NETFramework,Version=v4.5.2": [],
+ "DNX,Version=v4.5.1": [],
+ "DNX,Version=v4.5.2": [],
+ "DNXCore,Version=v5.0": [
+ "Microsoft.CSharp >= 4.0.1-beta-*",
+ "System.Runtime >= 4.0.21-beta-*",
+ "System.Runtime.Extensions >= 4.0.11-beta-*",
+ "System.Runtime.Serialization.Primitives >= 4.0.11-beta-*",
+ "System.Console >= 4.0.0-beta-*",
+ "System.IO >= 4.0.11-beta-*",
+ "System.IO.FileSystem >= 4.0.1-beta-*",
+ "System.Globalization >= 4.0.10",
+ "System.Resources.ResourceManager >= 4.0.1-beta-23409",
+ "System.Text.RegularExpressions >= 4.0.11-beta-*"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Properties/launchSettings.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Properties/launchSettings.json
new file mode 100644
index 0000000..3511fba
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "test-dnx": {
+ "commandName": "test-dnx",
+ "sdkVersion": "dnx-coreclr-win-x64.1.0.0-rc1-update1"
+ }
+ }
+}
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.AdditionalArguments.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.AdditionalArguments.cs
index 3fa3ccf..29218a5 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.AdditionalArguments.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.AdditionalArguments.cs
@@ -1,5 +1,6 @@
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
+using ParserTest;
using Xunit;
namespace Tests
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.DeclarativeArguments.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.DeclarativeArguments.cs
index a3b9152..3c3c957 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.DeclarativeArguments.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.DeclarativeArguments.cs
@@ -1,6 +1,7 @@
using System.IO;
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
+using ParserTest;
using Xunit;
namespace Tests
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.EqualSignSyntax.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.EqualSignSyntax.cs
index 845646f..fc83e03 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.EqualSignSyntax.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.EqualSignSyntax.cs
@@ -1,5 +1,6 @@
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
+using ParserTest;
using Xunit;
namespace Tests
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.IgnoreCase.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.IgnoreCase.cs
index 2752b9e..21f568d 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.IgnoreCase.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.IgnoreCase.cs
@@ -1,5 +1,6 @@
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
+using ParserTest;
using Xunit;
namespace Tests
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.ImperativeArguments.cs b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.ImperativeArguments.cs
index 9c3693e..7556392 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.ImperativeArguments.cs
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.ImperativeArguments.cs
@@ -1,5 +1,6 @@
using CommandLineParser.Arguments;
using CommandLineParser.Exceptions;
+using ParserTest;
using Xunit;
namespace Tests
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.xproj b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.xproj
new file mode 100644
index 0000000..0d1b4ad
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/Tests.xproj
@@ -0,0 +1,26 @@
+
+
+
+ 14.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+ 0b8343a5-3dc9-41c5-8fed-9d832127d15b
+ Tests
+ ..\..\artifacts\obj\$(MSBuildProjectName)
+ ..\..\artifacts\bin\$(MSBuildProjectName)\
+ SAK
+ SAK
+ SAK
+ SAK
+
+
+ Tests
+
+
+ 2.0
+ 1824
+
+
+
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.json
index 6b76638..60735f7 100644
--- a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.json
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.json
@@ -2,10 +2,12 @@
"version": "1.0.0-*",
"dependencies": {
"CommandLineParser": "2.7-*",
+ "ParserTest": "2.7-*",
- "xunit": "2.1-*",
- "xunit.runner.aspnet": "2.1-*",
- "xunit.runner.visualstudio": "2.1-*"
+ "xunit": "2.1.0",
+ "xunit.runner.dnx": "2.1.0-rc1-build204",
+ "xunit.runner.aspnet": "2.0.0-aspnet-rc2-*",
+ "xunit.runner.visualstudio": "2.1.0"
},
"compilationOptions": {
@@ -14,16 +16,16 @@
"commands": {
"test-vs": "xunit.runner.visualstudio",
- "test": "xunit.runner.aspnet"
+ "test": "xunit.runner.aspnet",
+ "test-dnx": "xunit.runner.dnx"
},
"frameworks": {
- "aspnet5": {
+ "dnx451": {
},
- "aspnetcore50": {
- "dependencies": {
- "System.Runtime": ""
- }
+ "dnx452": {
+ },
+ "dnxcore50": {
}
}
}
\ No newline at end of file
diff --git a/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.lock.json b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.lock.json
new file mode 100644
index 0000000..aadc17d
--- /dev/null
+++ b/CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/src/Tests/project.lock.json
@@ -0,0 +1,8920 @@
+{
+ "locked": false,
+ "version": 2,
+ "targets": {
+ "DNX,Version=v4.5.1": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNX,Version=v4.5.2": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNXCore,Version=v5.0": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6",
+ "System.Console": "4.0.0-rc2-23623",
+ "System.Diagnostics.Process": "4.1.0-rc2-23623",
+ "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-23623",
+ "System.IO": "4.0.11-rc2-23623",
+ "System.Net.Sockets": "4.1.0-rc2-23623",
+ "System.Threading.Thread": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.IO.FileSystem": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel": "4.0.1-rc2-23623",
+ "System.Diagnostics.Debug": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Linq.Expressions": "4.0.11-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Resources.ResourceManager": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-rc2-23623",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Runtime": "4.0.21-rc2-23623",
+ "System.Runtime.Extensions": "4.0.11-rc2-23623",
+ "System.Runtime.InteropServices": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.0.0",
+ "System.IO.FileSystem": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.1.0-rc2-23621",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Reflection.TypeExtensions": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23621",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "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": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "CommandLineParser": "2.7.0",
+ "Microsoft.CSharp": "4.0.1-beta",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tracing": "4.0.20",
+ "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "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"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.Process/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.5/System.Diagnostics.Process.dll": {}
+ }
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.TraceSource": "4.0.0-rc2-23623",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.TextWriterTraceListener.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.TraceSource/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.IO": "4.0.0",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-rc2-23623": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.0.0",
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.IO.Compression": "4.0.0",
+ "System.Net.Primitives": "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Http.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.Sockets/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Net.Primitives": "4.0.10",
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.0": {
+ "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.Runtime.Extensions": "4.0.10",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10",
+ "System.Threading.Overlapped": "4.0.0",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-rc2-23623": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.Thread.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
+ }
+ },
+ "System.Threading.ThreadPool/4.0.10-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.ThreadPool.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "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.Runtime.Extensions": "4.0.10",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Text.Encoding": "4.0.10",
+ "System.Text.Encoding.Extensions": "4.0.10",
+ "System.Text.RegularExpressions": "4.0.10",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tools": "4.0.0",
+ "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.Text.Encoding": "4.0.10",
+ "System.Threading": "4.0.10",
+ "System.Xml.ReaderWriter": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Xml.XDocument.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.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.Linq": "4.0.0",
+ "System.Linq.Expressions": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23623",
+ "System.Threading.ThreadPool": "4.0.10-rc2-23623",
+ "System.Xml.XDocument": "4.0.11-rc2-23623",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
+ "System.Threading.ThreadPool": "4.0.10-beta-23516",
+ "System.Xml.XDocument": "4.0.11-beta-23516",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Net.Http": "4.0.0",
+ "System.Net.Primitives": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.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.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/net451/ReflectionBridge.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNX,Version=v4.5.2/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "ReflectionBridge": "0.0.6"
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.2",
+ "dependencies": {
+ "CommandLineParser": "2.7.0"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnx452/ReflectionBridge.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x86": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6",
+ "System.Console": "4.0.0-rc2-23623",
+ "System.Diagnostics.Process": "4.1.0-rc2-23623",
+ "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-23623",
+ "System.IO": "4.0.11-rc2-23623",
+ "System.Net.Sockets": "4.1.0-rc2-23623",
+ "System.Threading.Thread": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.IO.FileSystem": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel": "4.0.1-rc2-23623",
+ "System.Diagnostics.Debug": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Linq.Expressions": "4.0.11-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Resources.ResourceManager": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-rc2-23623",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Runtime": "4.0.21-rc2-23623",
+ "System.Runtime.Extensions": "4.0.11-rc2-23623",
+ "System.Runtime.InteropServices": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.0.0",
+ "System.IO.FileSystem": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.1.0-rc2-23621",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Reflection.TypeExtensions": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23621",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "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": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.0.0-beta-23516": {
+ "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.Runtime.Handles": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.2/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/Microsoft.Win32.Registry.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "CommandLineParser": "2.7.0",
+ "Microsoft.CSharp": "4.0.1-beta",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.Linq": "4.0.0",
+ "System.ObjectModel": "4.0.10",
+ "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.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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0",
+ "System.Threading": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win/lib/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.Process/4.1.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.0.0",
+ "Microsoft.Win32.Registry": "4.0.0-beta-23516",
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "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.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.Tasks": "4.0.10",
+ "System.Threading.Thread": "4.0.0-beta-23516",
+ "System.Threading.ThreadPool": "4.0.10-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.5/System.Diagnostics.Process.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Networking": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "runtime.win7.System.Net.Sockets/4.1.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Networking": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "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-23516",
+ "System.Text.Encoding": "4.0.0",
+ "System.Text.Encoding.Extensions": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Threading.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tracing": "4.0.20",
+ "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "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"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.Process/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.5/System.Diagnostics.Process.dll": {}
+ }
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.TraceSource": "4.0.0-rc2-23623",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.TextWriterTraceListener.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.TraceSource/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.IO": "4.0.0",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0": {
+ "type": "package",
+ "native": {
+ "runtimes/win7-x86/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-rc2-23623": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.0.0",
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.IO.Compression": "4.0.0",
+ "System.Net.Primitives": "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Http.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.Sockets/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Net.Primitives": "4.0.10",
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.1-beta-23516": {
+ "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.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-23516",
+ "System.Security.Principal": "4.0.0",
+ "System.Threading": "4.0.10",
+ "System.Threading.Overlapped": "4.0.0",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-rc2-23623": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ }
+ },
+ "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.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.Thread.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
+ }
+ },
+ "System.Threading.ThreadPool/4.0.10-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.ThreadPool.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "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.Runtime.Extensions": "4.0.10",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Text.Encoding": "4.0.10",
+ "System.Text.Encoding.Extensions": "4.0.10",
+ "System.Text.RegularExpressions": "4.0.10",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tools": "4.0.0",
+ "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.Text.Encoding": "4.0.10",
+ "System.Threading": "4.0.10",
+ "System.Xml.ReaderWriter": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Xml.XDocument.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.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.Linq": "4.0.0",
+ "System.Linq.Expressions": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23623",
+ "System.Threading.ThreadPool": "4.0.10-rc2-23623",
+ "System.Xml.XDocument": "4.0.11-rc2-23623",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
+ "System.Threading.ThreadPool": "4.0.10-beta-23516",
+ "System.Xml.XDocument": "4.0.11-beta-23516",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Net.Http": "4.0.0",
+ "System.Net.Primitives": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.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.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x64": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "Microsoft.CSharp": "4.0.1-beta",
+ "ReflectionBridge": "0.0.6",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ }
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.CompilationAbstractions": "1.0.0-rc2-16357",
+ "Microsoft.Extensions.Logging": "1.0.0-rc2-15958",
+ "Newtonsoft.Json": "6.0.6",
+ "System.Console": "4.0.0-rc2-23623",
+ "System.Diagnostics.Process": "4.1.0-rc2-23623",
+ "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc2-23623",
+ "System.IO": "4.0.11-rc2-23623",
+ "System.Net.Sockets": "4.1.0-rc2-23623",
+ "System.Threading.Thread": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.IO.FileSystem": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "dependencies": {
+ "System.ComponentModel": "4.0.1-rc2-23623",
+ "System.Diagnostics.Debug": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Linq.Expressions": "4.0.11-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Resources.ResourceManager": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-15921",
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-15958",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-rc2-23623",
+ "System.Collections.Concurrent": "4.0.11-rc2-23623",
+ "System.Globalization": "4.0.11-rc2-23623",
+ "System.Linq": "4.0.1-rc2-23623",
+ "System.Reflection": "4.1.0-rc2-23623",
+ "System.Runtime": "4.0.21-rc2-23623",
+ "System.Runtime.Extensions": "4.0.11-rc2-23623",
+ "System.Runtime.InteropServices": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.0.0",
+ "System.IO.FileSystem": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.1.0-rc2-23621",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Reflection.TypeExtensions": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc2-23621",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ }
+ },
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "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": {}
+ }
+ },
+ "Microsoft.Win32.Registry/4.0.0-beta-23516": {
+ "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.Runtime.Handles": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.2/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/Microsoft.Win32.Registry.dll": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {}
+ }
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "framework": "DNXCore,Version=v5.0",
+ "dependencies": {
+ "CommandLineParser": "2.7.0",
+ "Microsoft.CSharp": "4.0.1-beta",
+ "System.Console": "4.0.0-beta",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.11-beta",
+ "System.IO.FileSystem": "4.0.1-beta",
+ "System.Resources.ResourceManager": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta",
+ "System.Runtime.Extensions": "4.0.11-beta",
+ "System.Runtime.Serialization.Primitives": "4.0.11-beta",
+ "System.Text.RegularExpressions": "4.0.11-beta"
+ }
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.11-beta-23516",
+ "System.Linq": "4.0.1-beta-23516",
+ "System.Reflection": "4.0.10-beta-23109",
+ "System.Reflection.Extensions": "4.0.1-beta-23516",
+ "System.Reflection.Primitives": "4.0.1-beta-23516",
+ "System.Reflection.TypeExtensions": "4.0.1-beta-23409",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
+ "compile": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/ReflectionBridge.dll": {}
+ }
+ },
+ "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.Linq": "4.0.0",
+ "System.ObjectModel": "4.0.10",
+ "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.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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Linq.Expressions.dll": {}
+ }
+ },
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0",
+ "System.Threading": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win/lib/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ }
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.Process/4.1.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.0.0",
+ "Microsoft.Win32.Registry": "4.0.0-beta-23516",
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "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.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.Tasks": "4.0.10",
+ "System.Threading.Thread": "4.0.0-beta-23516",
+ "System.Threading.ThreadPool": "4.0.10-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.5/System.Diagnostics.Process.dll": {}
+ }
+ },
+ "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "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"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "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/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ }
+ },
+ "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Networking": "4.0.1-beta-23516"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Primitives.dll": {}
+ }
+ },
+ "runtime.win7.System.Net.Sockets/4.1.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Networking": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Sockets.dll": {}
+ }
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ }
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "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-23516",
+ "System.Text.Encoding": "4.0.0",
+ "System.Text.Encoding.Extensions": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Threading.dll": {}
+ }
+ },
+ "System.AppContext/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.AppContext.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.AppContext.dll": {}
+ }
+ },
+ "System.Collections/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Collections.dll": {}
+ }
+ },
+ "System.Collections.Concurrent/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tracing": "4.0.20",
+ "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "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"
+ },
+ "compile": {
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ }
+ },
+ "System.ComponentModel/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
+ }
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Console.dll": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ }
+ },
+ "System.Diagnostics.Process/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.5/System.Diagnostics.Process.dll": {}
+ }
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.TraceSource": "4.0.0-rc2-23623",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TextWriterTraceListener.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.TextWriterTraceListener.dll": {}
+ }
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tools.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ }
+ },
+ "System.Diagnostics.TraceSource/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ }
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Linq.Expressions": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Dynamic.Runtime.dll": {}
+ }
+ },
+ "System.Globalization/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
+ }
+ },
+ "System.IO/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.IO.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.IO.dll": {}
+ }
+ },
+ "System.IO.Compression/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.IO": "4.0.0",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.IO.Compression.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.IO.Compression.dll": {}
+ }
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0": {
+ "type": "package",
+ "native": {
+ "runtimes/win7-x64/native/clrcompression.dll": {}
+ }
+ },
+ "System.IO.FileSystem/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.IO.FileSystem.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/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-rc2-23623": {
+ "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": {
+ "ref/dotnet5.1/System.Linq.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Linq.dll": {}
+ }
+ },
+ "System.Linq.Expressions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ }
+ },
+ "System.Net.Http/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.0.0",
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Globalization": "4.0.10",
+ "System.IO": "4.0.10",
+ "System.IO.Compression": "4.0.0",
+ "System.Net.Primitives": "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",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Net.Http.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Net.Http.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.Sockets/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Net.Primitives": "4.0.10",
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Net.Sockets.dll": {}
+ }
+ },
+ "System.ObjectModel/4.0.10": {
+ "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.Threading": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.ObjectModel.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.ObjectModel.dll": {}
+ }
+ },
+ "System.Private.Networking/4.0.1-beta-23516": {
+ "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.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-23516",
+ "System.Security.Principal": "4.0.0",
+ "System.Threading": "4.0.10",
+ "System.Threading.Overlapped": "4.0.0",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Private.Networking.dll": {}
+ }
+ },
+ "System.Private.Uri/4.0.1-rc2-23623": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.1.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Reflection.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.dll": {}
+ }
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
+ }
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ }
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ }
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.0.1-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ }
+ },
+ "System.Runtime/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ }
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Handles.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices/4.0.21-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ }
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
+ },
+ "compile": {
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-rc2-23623"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.0.0-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.IO": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ }
+ },
+ "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.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.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-23516": {
+ "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"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ }
+ },
+ "System.Threading/4.0.10": {
+ "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.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-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.Thread.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
+ }
+ },
+ "System.Threading.ThreadPool/4.0.10-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Threading.ThreadPool.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "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.Runtime.Extensions": "4.0.10",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Text.Encoding": "4.0.10",
+ "System.Text.Encoding.Extensions": "4.0.10",
+ "System.Text.RegularExpressions": "4.0.10",
+ "System.Threading.Tasks": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ }
+ },
+ "System.Xml.XDocument/4.0.11-rc2-23623": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.10",
+ "System.Diagnostics.Debug": "4.0.10",
+ "System.Diagnostics.Tools": "4.0.0",
+ "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.Text.Encoding": "4.0.10",
+ "System.Threading": "4.0.10",
+ "System.Xml.ReaderWriter": "4.0.10"
+ },
+ "compile": {
+ "ref/dotnet5.4/System.Xml.XDocument.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/System.Xml.XDocument.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.ObjectModel": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.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.Linq": "4.0.0",
+ "System.Linq.Expressions": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc2-16044",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc2-16044",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-16530",
+ "System.Security.Cryptography.Algorithms": "4.0.0-rc2-23623",
+ "System.Threading.ThreadPool": "4.0.10-rc2-23623",
+ "System.Xml.XDocument": "4.0.11-rc2-23623",
+ "xunit.assert": "2.1.0",
+ "xunit.extensibility.execution": "2.1.0",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.aspnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516",
+ "System.Threading.ThreadPool": "4.0.10-beta-23516",
+ "System.Xml.XDocument": "4.0.11-beta-23516",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "compile": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnxcore50/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Net.Http": "4.0.0",
+ "System.Net.Primitives": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.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.Linq": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Extensions": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Text.RegularExpressions": "4.0.0",
+ "System.Threading": "4.0.0",
+ "System.Threading.Tasks": "4.0.0",
+ "xunit.abstractions": "2.0.0"
+ },
+ "compile": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package"
+ }
+ }
+ },
+ "libraries": {
+ "CommandLineParser/2.7.0": {
+ "type": "project",
+ "path": "../CommandLineParser/project.json"
+ },
+ "ParserTest/2.7.0": {
+ "type": "project",
+ "path": "../ParserTest/project.json"
+ },
+ "Microsoft.CSharp/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.CSharp.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/Microsoft.CSharp.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg",
+ "Microsoft.CSharp.4.0.1-beta-23516.nupkg.sha512",
+ "Microsoft.CSharp.nuspec",
+ "ref/dotnet5.1/de/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/es/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/fr/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/it/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ja/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ko/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/Microsoft.CSharp.dll",
+ "ref/dotnet5.1/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/ru/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hans/Microsoft.CSharp.xml",
+ "ref/dotnet5.1/zh-hant/Microsoft.CSharp.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/Microsoft.CSharp.xml",
+ "ref/netcore50/es/Microsoft.CSharp.xml",
+ "ref/netcore50/fr/Microsoft.CSharp.xml",
+ "ref/netcore50/it/Microsoft.CSharp.xml",
+ "ref/netcore50/ja/Microsoft.CSharp.xml",
+ "ref/netcore50/ko/Microsoft.CSharp.xml",
+ "ref/netcore50/Microsoft.CSharp.dll",
+ "ref/netcore50/Microsoft.CSharp.xml",
+ "ref/netcore50/ru/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
+ "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._"
+ ]
+ },
+ "Microsoft.Dnx.TestHost/1.0.0-rc2-16044": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "wl9fCin/G3KcMzEU/STSq6KlBk2zX6VQn9OAzQ1TeX50h3ARy/Ur2DNcZ7qX69njoirjtIgEIBwaLTSefsDpjQ==",
+ "files": [
+ "app/project.json",
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll",
+ "lib/dnx451/Microsoft.Dnx.TestHost.xml",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.xml",
+ "Microsoft.Dnx.TestHost.1.0.0-rc2-16044.nupkg",
+ "Microsoft.Dnx.TestHost.1.0.0-rc2-16044.nupkg.sha512",
+ "Microsoft.Dnx.TestHost.nuspec"
+ ]
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc2-16044": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "4R2thPlmLWx6BsEK7FJHvJgwoD+T+C2zLtHZCLUGI30RmASzZWqSDK5cHU2HH/timVZzsGTUTlCEcMcBznbHaw==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.xml",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.xml",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc2-16044.nupkg",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc2-16044.nupkg.sha512",
+ "Microsoft.Dnx.Testing.Abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.CompilationAbstractions/1.0.0-rc2-16357": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "LX7LdEcO1Gv+Z93vuBcxhK5+7EN/W9vpPwvt+OZXsrvD9UY5Plo5KTDisJxDxcmMJILtKt+oAvnMEHnONYufGw==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.dll",
+ "lib/dotnet5.4/Microsoft.Extensions.CompilationAbstractions.xml",
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.dll",
+ "lib/net451/Microsoft.Extensions.CompilationAbstractions.xml",
+ "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16357.nupkg",
+ "Microsoft.Extensions.CompilationAbstractions.1.0.0-rc2-16357.nupkg.sha512",
+ "Microsoft.Extensions.CompilationAbstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-15921": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "qd4GyUFprf7+Wgs31GQ6jqPrzqJpVq+w1s41FiS54utEilIIZavNacojyJw1j6wHhIVjFT61MMKDm/UCZsySrw==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15921.nupkg",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-15921.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging/1.0.0-rc2-15958": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "3DqRpk8HQed44FLd7oDMT1c9Hkr23hriIklns0ALLpQSr9c4flX+r7xWeEPORrfxTFYSt5ymgQ23JDYYWAx2rA==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll",
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.xml",
+ "lib/net451/Microsoft.Extensions.Logging.dll",
+ "lib/net451/Microsoft.Extensions.Logging.xml",
+ "lib/netcore50/Microsoft.Extensions.Logging.dll",
+ "lib/netcore50/Microsoft.Extensions.Logging.xml",
+ "Microsoft.Extensions.Logging.1.0.0-rc2-15958.nupkg",
+ "Microsoft.Extensions.Logging.1.0.0-rc2-15958.nupkg.sha512",
+ "Microsoft.Extensions.Logging.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-15958": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Dp87XYxK7VV4BDF9OdLSrHz/KTTP3roN40fOQVsoERnS5fjpZD3Qng4MUAhZZa+nuUoxROvOUNQ2a5PtqSCxpg==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml",
+ "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15958.nupkg",
+ "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-15958.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-16530": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "a9qCsSfAaHR5o8FTxqLzBWQuXmmVWnzW0dkZXsk39uFlEf9AismmanNCxu3waTmba4qK+P24FXDwS9zo2eoMeQ==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll",
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
+ "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16530.nupkg",
+ "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-16530.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.nuspec"
+ ]
+ },
+ "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/_._"
+ ]
+ },
+ "Microsoft.Win32.Registry/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "z54NYVj7y4jGC2EWn5QLqaokMOws5NAjZYbEgUDNCtJE5gkpRR1JnDWU1Kjuvu3mmro2K9/C1TposmHB8cAtmg==",
+ "files": [
+ "lib/DNXCore50/Microsoft.Win32.Registry.dll",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "Microsoft.Win32.Registry.4.0.0-beta-23516.nupkg",
+ "Microsoft.Win32.Registry.4.0.0-beta-23516.nupkg.sha512",
+ "Microsoft.Win32.Registry.nuspec",
+ "ref/dotnet5.2/de/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/es/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/fr/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/it/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/ja/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/ko/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/Microsoft.Win32.Registry.dll",
+ "ref/dotnet5.2/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/ru/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/dotnet5.2/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/net46/Microsoft.Win32.Registry.dll"
+ ]
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==",
+ "files": [
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
+ "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll",
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml",
+ "Newtonsoft.Json.7.0.1.nupkg",
+ "Newtonsoft.Json.7.0.1.nupkg.sha512",
+ "Newtonsoft.Json.nuspec",
+ "tools/install.ps1"
+ ]
+ },
+ "ReflectionBridge/0.0.6": {
+ "type": "package",
+ "sha512": "y70yKhBaIQJsfX9Zn/Ah6gl29xOiWzYOYfavZpeTWUp/eX3t6r/u2AYuc2pW2Cp88eMT+6EM7T6Pz+JExAB8+Q==",
+ "files": [
+ "lib/dnx452/ReflectionBridge.dll",
+ "lib/dnx452/ReflectionBridge.xml",
+ "lib/dnxcore50/ReflectionBridge.dll",
+ "lib/dnxcore50/ReflectionBridge.xml",
+ "lib/net20/ReflectionBridge.dll",
+ "lib/net20/ReflectionBridge.xml",
+ "lib/net35/ReflectionBridge.dll",
+ "lib/net35/ReflectionBridge.xml",
+ "lib/net40/ReflectionBridge.dll",
+ "lib/net40/ReflectionBridge.xml",
+ "lib/net45/ReflectionBridge.dll",
+ "lib/net45/ReflectionBridge.xml",
+ "lib/net451/ReflectionBridge.dll",
+ "lib/net451/ReflectionBridge.xml",
+ "lib/net452/ReflectionBridge.dll",
+ "lib/net452/ReflectionBridge.xml",
+ "lib/net46/ReflectionBridge.dll",
+ "lib/net46/ReflectionBridge.xml",
+ "lib/net461/ReflectionBridge.dll",
+ "lib/net461/ReflectionBridge.xml",
+ "lib/netcore50/ReflectionBridge.dll",
+ "lib/netcore50/ReflectionBridge.xml",
+ "lib/win/ReflectionBridge.dll",
+ "lib/win/ReflectionBridge.xml",
+ "lib/win81/ReflectionBridge.dll",
+ "lib/win81/ReflectionBridge.xml",
+ "ReflectionBridge.0.0.6.nupkg",
+ "ReflectionBridge.0.0.6.nupkg.sha512",
+ "ReflectionBridge.nuspec"
+ ]
+ },
+ "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "4sPxQCjllMJ1uZNlwz/EataPyHSH+AqSDlOIPPqcy/88R2B+abfhPPC78rd7gvHp8KmMX4qbJF6lcCeDIQpmVg==",
+ "files": [
+ "lib/DNXCore50/System.Linq.Expressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Expressions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/_._",
+ "runtime.any.System.Linq.Expressions.4.0.11-beta-23516.nupkg",
+ "runtime.any.System.Linq.Expressions.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.any.System.Linq.Expressions.nuspec",
+ "runtimes/aot/lib/netcore50/_._"
+ ]
+ },
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "WiSuclJpGS1e3DbGPA30O1SIw3u9yPAedjMB/V9OQZTLpmVaMcipuNjqbTB+QPP8MoRiUbwdjYuJkoWx2tB7nw==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23621.nupkg",
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23621.nupkg.sha512",
+ "runtime.win.System.Runtime.InteropServices.RuntimeInformation.nuspec",
+ "runtimes/win/lib/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win7/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win7/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll"
+ ]
+ },
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "pfQrTtnYcWOtI3RrpqjAzwT3I55ivTVZFpbKYG59dYTTvaLFGbs2njc/mrXHij6GylyJ2YjekS/9r6I8X3LV1A==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg",
+ "runtime.win7.System.Console.4.0.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Console.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll",
+ "runtimes/win7/lib/net/_._"
+ ]
+ },
+ "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TxSgeP23B6bPfE0QFX8u4/1p1jP6Ugn993npTRf3e9F3y61BIQeCkt5Im0gGdjz0dxioHkuTr+C2m4ELsMos8Q==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Diagnostics.Debug.nuspec",
+ "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll",
+ "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
+ ]
+ },
+ "runtime.win7.System.Diagnostics.Process/4.1.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "qCCXX+OG6430kLtN/wyjeLTTiJvOIKB2G+qBvhSqVLWe5ZTiEiSnweKUzdi7raXL0te0WfPE5tf8FuKcEKPnIA==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Diagnostics.Process.4.1.0-beta-23516.nupkg",
+ "runtime.win7.System.Diagnostics.Process.4.1.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Diagnostics.Process.nuspec",
+ "runtimes/win7/lib/dotnet5.5/System.Diagnostics.Process.dll",
+ "runtimes/win7/lib/net/_._",
+ "runtimes/win7/lib/netcore50/_._",
+ "runtimes/win7/lib/win8/_._",
+ "runtimes/win7/lib/wp8/_._",
+ "runtimes/win7/lib/wpa81/_._"
+ ]
+ },
+ "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "hpD0T6zOEU/1qUSPitKSgIdsL4tZlZz7CUCu6PP7BYf8CM3vPkSEzN38kX6PnH8F6kvOqxEwzPYhZCK3PJkh/Q==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg",
+ "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Diagnostics.TraceSource.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll",
+ "runtimes/win7/lib/net/_._",
+ "runtimes/win7/lib/netcore50/_._",
+ "runtimes/win7/lib/win8/_._",
+ "runtimes/win7/lib/wp8/_._",
+ "runtimes/win7/lib/wpa81/_._"
+ ]
+ },
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "UOHEVg3jQwsvy3b+8zhDk7BQ9GhHY1KcjHSuqArzIl7oemcM/+D7OfS5iOA96ydjEv9FmIKV3knkXMge+cUD0Q==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.IO.FileSystem.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/net/_._",
+ "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll",
+ "runtimes/win7/lib/win8/_._",
+ "runtimes/win7/lib/wp8/_._",
+ "runtimes/win7/lib/wpa81/_._"
+ ]
+ },
+ "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "V4bv5VTaBcy0FekQbKgJKP+c+RJhNxOacpngLGADf9kUqoNkSJLj083d4I0L5iTKMWALlAN/tfzAlRm0VxiDeA==",
+ "files": [
+ "lib/DNXCore50/System.Net.Primitives.dll",
+ "ref/dotnet/_._",
+ "runtime.win7.System.Net.Primitives.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Net.Primitives.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Net.Primitives.nuspec",
+ "runtimes/win7/lib/netcore50/System.Net.Primitives.dll"
+ ]
+ },
+ "runtime.win7.System.Net.Sockets/4.1.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "4FbyzvLhWFFv3OrgkPmd3cXoKUb+oB+rp51ke6nMqR+MjN3sWs/w3C0Jbx84UM6zg9a3JiD72ThjgDnet3QS3w==",
+ "files": [
+ "lib/DNXCore50/System.Net.Sockets.dll",
+ "lib/netcore50/System.Net.Sockets.dll",
+ "ref/dotnet/_._",
+ "runtime.win7.System.Net.Sockets.4.1.0-beta-23516.nupkg",
+ "runtime.win7.System.Net.Sockets.4.1.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Net.Sockets.nuspec",
+ "runtimes/win7/lib/net/_._"
+ ]
+ },
+ "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HphDhue34J/4+1rIMtInY1FWK1oLEMpxIpxGeNnhIlQf7hv5QDf05aWEC6180qbgkPBCFwyGnwWRBnONApwbBQ==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg",
+ "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Private.Uri.nuspec",
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll",
+ "runtimes/win7/lib/netcore50/System.Private.Uri.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
+ ]
+ },
+ "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Jm+LAzN7CZl1BZSxz4TsMBNy1rHNqyY/1+jxZf3BpF7vkPlWRXa/vSfY0lZJZdy4Doxa893bmcCf9pZNsJU16Q==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Extensions.dll",
+ "lib/netcore50/System.Runtime.Extensions.dll",
+ "ref/dotnet/_._",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Runtime.Extensions.nuspec",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
+ ]
+ },
+ "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "MRAq2N94D6wKC5UFbUZVWcOz8YpknDj6ttOpF5R3sxBdZJWI6qUngnGdHE2eYAuCerHlLV/0m4WJxoSaQHDNTA==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg",
+ "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Security.Cryptography.Algorithms.nuspec",
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win7/lib/net/_._"
+ ]
+ },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "paSNXQ5Y6Exu3OpekooyMJFQ8mitn69fGO5Br3XLIfQ1KiMYVmRf+o6dMprC0SpPROVCiCxdUaJx5XkDEVL3uA==",
+ "files": [
+ "ref/dotnet/_._",
+ "runtime.win7.System.Threading.4.0.11-beta-23516.nupkg",
+ "runtime.win7.System.Threading.4.0.11-beta-23516.nupkg.sha512",
+ "runtime.win7.System.Threading.nuspec",
+ "runtimes/win7/lib/DNXCore50/System.Threading.dll",
+ "runtimes/win7/lib/netcore50/System.Threading.dll",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll"
+ ]
+ },
+ "System.AppContext/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==",
+ "files": [
+ "lib/DNXCore50/System.AppContext.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.AppContext.dll",
+ "lib/netcore50/System.AppContext.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.AppContext.xml",
+ "ref/dotnet/es/System.AppContext.xml",
+ "ref/dotnet/fr/System.AppContext.xml",
+ "ref/dotnet/it/System.AppContext.xml",
+ "ref/dotnet/ja/System.AppContext.xml",
+ "ref/dotnet/ko/System.AppContext.xml",
+ "ref/dotnet/ru/System.AppContext.xml",
+ "ref/dotnet/System.AppContext.dll",
+ "ref/dotnet/System.AppContext.xml",
+ "ref/dotnet/zh-hans/System.AppContext.xml",
+ "ref/dotnet/zh-hant/System.AppContext.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.AppContext.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.AppContext.4.0.0.nupkg",
+ "System.AppContext.4.0.0.nupkg.sha512",
+ "System.AppContext.nuspec"
+ ]
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
+ "files": [
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Collections.xml",
+ "ref/dotnet5.1/es/System.Collections.xml",
+ "ref/dotnet5.1/fr/System.Collections.xml",
+ "ref/dotnet5.1/it/System.Collections.xml",
+ "ref/dotnet5.1/ja/System.Collections.xml",
+ "ref/dotnet5.1/ko/System.Collections.xml",
+ "ref/dotnet5.1/ru/System.Collections.xml",
+ "ref/dotnet5.1/System.Collections.dll",
+ "ref/dotnet5.1/System.Collections.xml",
+ "ref/dotnet5.1/zh-hans/System.Collections.xml",
+ "ref/dotnet5.1/zh-hant/System.Collections.xml",
+ "ref/dotnet5.4/de/System.Collections.xml",
+ "ref/dotnet5.4/es/System.Collections.xml",
+ "ref/dotnet5.4/fr/System.Collections.xml",
+ "ref/dotnet5.4/it/System.Collections.xml",
+ "ref/dotnet5.4/ja/System.Collections.xml",
+ "ref/dotnet5.4/ko/System.Collections.xml",
+ "ref/dotnet5.4/ru/System.Collections.xml",
+ "ref/dotnet5.4/System.Collections.dll",
+ "ref/dotnet5.4/System.Collections.xml",
+ "ref/dotnet5.4/zh-hans/System.Collections.xml",
+ "ref/dotnet5.4/zh-hant/System.Collections.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "System.Collections.4.0.11-beta-23516.nupkg",
+ "System.Collections.4.0.11-beta-23516.nupkg.sha512",
+ "System.Collections.nuspec"
+ ]
+ },
+ "System.Collections/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "zuC3WR3U3pqiesm9IYcV8V90I1jhjNUXIp+vLP8JStiyb4WdUImE2xgs79RVZNvevcWOy3vmSKq5bfT+Y/OIPQ==",
+ "files": [
+ "lib/DNXCore50/System.Collections.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Collections.xml",
+ "ref/dotnet5.1/es/System.Collections.xml",
+ "ref/dotnet5.1/fr/System.Collections.xml",
+ "ref/dotnet5.1/it/System.Collections.xml",
+ "ref/dotnet5.1/ja/System.Collections.xml",
+ "ref/dotnet5.1/ko/System.Collections.xml",
+ "ref/dotnet5.1/ru/System.Collections.xml",
+ "ref/dotnet5.1/System.Collections.dll",
+ "ref/dotnet5.1/System.Collections.xml",
+ "ref/dotnet5.1/zh-hans/System.Collections.xml",
+ "ref/dotnet5.1/zh-hant/System.Collections.xml",
+ "ref/dotnet5.4/de/System.Collections.xml",
+ "ref/dotnet5.4/es/System.Collections.xml",
+ "ref/dotnet5.4/fr/System.Collections.xml",
+ "ref/dotnet5.4/it/System.Collections.xml",
+ "ref/dotnet5.4/ja/System.Collections.xml",
+ "ref/dotnet5.4/ko/System.Collections.xml",
+ "ref/dotnet5.4/ru/System.Collections.xml",
+ "ref/dotnet5.4/System.Collections.dll",
+ "ref/dotnet5.4/System.Collections.xml",
+ "ref/dotnet5.4/zh-hans/System.Collections.xml",
+ "ref/dotnet5.4/zh-hant/System.Collections.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Collections.dll",
+ "System.Collections.4.0.11-rc2-23623.nupkg",
+ "System.Collections.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Collections.nuspec"
+ ]
+ },
+ "System.Collections.Concurrent/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Ll7Y/Oo+rmJwqN4IQp4qwTRN2KqeCL62nhE4DT5S3AeEQ9JUa9obp9B/Hr9irDZR7Gb9cvAYdfYuXtiw+7aEaA==",
+ "files": [
+ "lib/dotnet5.4/System.Collections.Concurrent.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.Concurrent.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.2/de/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/es/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/fr/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/it/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/ja/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/ko/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/ru/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/System.Collections.Concurrent.dll",
+ "ref/dotnet5.2/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml",
+ "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/de/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/es/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/fr/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/it/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/ja/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/ko/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/ru/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/System.Collections.Concurrent.dll",
+ "ref/dotnet5.4/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml",
+ "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Collections.Concurrent.xml",
+ "ref/netcore50/es/System.Collections.Concurrent.xml",
+ "ref/netcore50/fr/System.Collections.Concurrent.xml",
+ "ref/netcore50/it/System.Collections.Concurrent.xml",
+ "ref/netcore50/ja/System.Collections.Concurrent.xml",
+ "ref/netcore50/ko/System.Collections.Concurrent.xml",
+ "ref/netcore50/ru/System.Collections.Concurrent.xml",
+ "ref/netcore50/System.Collections.Concurrent.dll",
+ "ref/netcore50/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Collections.Concurrent.4.0.11-rc2-23623.nupkg",
+ "System.Collections.Concurrent.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Collections.Concurrent.nuspec"
+ ]
+ },
+ "System.Collections.NonGeneric/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
+ "files": [
+ "lib/dotnet/System.Collections.NonGeneric.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Collections.NonGeneric.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Collections.NonGeneric.xml",
+ "ref/dotnet/es/System.Collections.NonGeneric.xml",
+ "ref/dotnet/fr/System.Collections.NonGeneric.xml",
+ "ref/dotnet/it/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ja/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ko/System.Collections.NonGeneric.xml",
+ "ref/dotnet/ru/System.Collections.NonGeneric.xml",
+ "ref/dotnet/System.Collections.NonGeneric.dll",
+ "ref/dotnet/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
+ "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Collections.NonGeneric.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Collections.NonGeneric.4.0.0.nupkg",
+ "System.Collections.NonGeneric.4.0.0.nupkg.sha512",
+ "System.Collections.NonGeneric.nuspec"
+ ]
+ },
+ "System.ComponentModel/4.0.1-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "KwsyOa11Mb/NvotZXaCxlF9eCIr0TuyVbilJo8Fjawm4XvQ4IpzkykC75VmUwKfXGRYmcveSOLjk5KQP+0bcqA==",
+ "files": [
+ "lib/dotnet5.4/System.ComponentModel.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.ComponentModel.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.ComponentModel.xml",
+ "ref/dotnet5.1/es/System.ComponentModel.xml",
+ "ref/dotnet5.1/fr/System.ComponentModel.xml",
+ "ref/dotnet5.1/it/System.ComponentModel.xml",
+ "ref/dotnet5.1/ja/System.ComponentModel.xml",
+ "ref/dotnet5.1/ko/System.ComponentModel.xml",
+ "ref/dotnet5.1/ru/System.ComponentModel.xml",
+ "ref/dotnet5.1/System.ComponentModel.dll",
+ "ref/dotnet5.1/System.ComponentModel.xml",
+ "ref/dotnet5.1/zh-hans/System.ComponentModel.xml",
+ "ref/dotnet5.1/zh-hant/System.ComponentModel.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.ComponentModel.xml",
+ "ref/netcore50/es/System.ComponentModel.xml",
+ "ref/netcore50/fr/System.ComponentModel.xml",
+ "ref/netcore50/it/System.ComponentModel.xml",
+ "ref/netcore50/ja/System.ComponentModel.xml",
+ "ref/netcore50/ko/System.ComponentModel.xml",
+ "ref/netcore50/ru/System.ComponentModel.xml",
+ "ref/netcore50/System.ComponentModel.dll",
+ "ref/netcore50/System.ComponentModel.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.ComponentModel.4.0.1-rc2-23623.nupkg",
+ "System.ComponentModel.4.0.1-rc2-23623.nupkg.sha512",
+ "System.ComponentModel.nuspec"
+ ]
+ },
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
+ "files": [
+ "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-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "ymPcPwioovS64WfacyIi/Pfzie60CbR4ICKqHrDKlTKohsqEyUsfJjLs9BONA2CSe6+jelpWqkFslp72Be0G1A==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Console.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Console.xml",
+ "ref/dotnet5.4/es/System.Console.xml",
+ "ref/dotnet5.4/fr/System.Console.xml",
+ "ref/dotnet5.4/it/System.Console.xml",
+ "ref/dotnet5.4/ja/System.Console.xml",
+ "ref/dotnet5.4/ko/System.Console.xml",
+ "ref/dotnet5.4/ru/System.Console.xml",
+ "ref/dotnet5.4/System.Console.dll",
+ "ref/dotnet5.4/System.Console.xml",
+ "ref/dotnet5.4/zh-hans/System.Console.xml",
+ "ref/dotnet5.4/zh-hant/System.Console.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Console.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Console.4.0.0-rc2-23623.nupkg",
+ "System.Console.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Console.nuspec"
+ ]
+ },
+ "System.Diagnostics.Debug/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "VALjeA9IuyFf/JJcJSolDfUDR0A26hyr5uG44PSpyBmpRtSP7kUBmEXDaTyB3K4AfYpSaRc2Vzj5nftEuvNUTw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/es/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/System.Diagnostics.Debug.dll",
+ "ref/dotnet5.1/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/de/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/es/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/it/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll",
+ "ref/dotnet5.4/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Diagnostics.Debug.4.0.11-rc2-23623.nupkg",
+ "System.Diagnostics.Debug.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Diagnostics.Debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.Process/4.1.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "bbg5DrOJTELm7qFwRRc3VvEkTei2KfWdQYr5S6fZYKeW5IEzaMLKFqsRbnlBPbFEvfDWpeUIfEo6lB0GtzQlfw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Diagnostics.Process.dll",
+ "lib/net461/System.Diagnostics.Process.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/es/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/fr/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/it/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/ja/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/ko/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/ru/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/System.Diagnostics.Process.dll",
+ "ref/dotnet5.4/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/zh-hans/System.Diagnostics.Process.xml",
+ "ref/dotnet5.4/zh-hant/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/de/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/es/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/fr/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/it/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/ja/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/ko/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/ru/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/System.Diagnostics.Process.dll",
+ "ref/dotnet5.5/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/zh-hans/System.Diagnostics.Process.xml",
+ "ref/dotnet5.5/zh-hant/System.Diagnostics.Process.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Diagnostics.Process.dll",
+ "ref/net461/System.Diagnostics.Process.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Diagnostics.Process.4.1.0-rc2-23623.nupkg",
+ "System.Diagnostics.Process.4.1.0-rc2-23623.nupkg.sha512",
+ "System.Diagnostics.Process.nuspec"
+ ]
+ },
+ "System.Diagnostics.TextWriterTraceListener/4.0.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "UUlqthzRNbEdzb/12ZsqUFtkRAv5DM2VnqWzm3pvk1nyAIm41DmD/A2ddVpFMWqtFrVqo5JpZxt99e+rNiS2qQ==",
+ "files": [
+ "lib/DNXCore50/System.Diagnostics.TextWriterTraceListener.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/es/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/fr/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/it/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/ja/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/ko/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/ru/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/System.Diagnostics.TextWriterTraceListener.dll",
+ "ref/dotnet5.4/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/dotnet5.4/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Diagnostics.TextWriterTraceListener.4.0.0-rc2-23623.nupkg",
+ "System.Diagnostics.TextWriterTraceListener.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Diagnostics.TextWriterTraceListener.nuspec"
+ ]
+ },
+ "System.Diagnostics.Tools/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==",
+ "files": [
+ "lib/DNXCore50/System.Diagnostics.Tools.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Diagnostics.Tools.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/de/System.Diagnostics.Tools.xml",
+ "ref/dotnet/es/System.Diagnostics.Tools.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tools.xml",
+ "ref/dotnet/it/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tools.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tools.xml",
+ "ref/dotnet/System.Diagnostics.Tools.dll",
+ "ref/dotnet/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Tools.dll",
+ "ref/netcore50/System.Diagnostics.Tools.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll",
+ "System.Diagnostics.Tools.4.0.0.nupkg",
+ "System.Diagnostics.Tools.4.0.0.nupkg.sha512",
+ "System.Diagnostics.Tools.nuspec"
+ ]
+ },
+ "System.Diagnostics.TraceSource/4.0.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "tcS0zsNJKiqMe7QhLw7AOMF4XRSZO0S+3q+w2YyY99N/buppTqBHJJ+EawMTq2S5/7eGqiEAU44xCvbegINLnA==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Diagnostics.TraceSource.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/es/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/fr/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/it/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/ja/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/ko/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/ru/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/System.Diagnostics.TraceSource.dll",
+ "ref/dotnet5.4/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/zh-hans/System.Diagnostics.TraceSource.xml",
+ "ref/dotnet5.4/zh-hant/System.Diagnostics.TraceSource.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Diagnostics.TraceSource.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Diagnostics.TraceSource.4.0.0-rc2-23623.nupkg",
+ "System.Diagnostics.TraceSource.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Diagnostics.TraceSource.nuspec"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
+ "files": [
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Diagnostics.Tracing.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/es/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/fr/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/it/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ja/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ko/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/ru/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/System.Diagnostics.Tracing.dll",
+ "ref/dotnet/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll",
+ "System.Diagnostics.Tracing.4.0.20.nupkg",
+ "System.Diagnostics.Tracing.4.0.20.nupkg.sha512",
+ "System.Diagnostics.Tracing.nuspec"
+ ]
+ },
+ "System.Dynamic.Runtime/4.0.0": {
+ "type": "package",
+ "sha512": "33os71rQUCLjM5pbhQqCopq9/YcqBHPBQ8WylrzNk3oJmfAR0SFwzZIKJRN2JcrkBYdzC/NtWrYVU8oroyZieA==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "License.rtf",
+ "ref/dotnet/de/System.Dynamic.Runtime.xml",
+ "ref/dotnet/es/System.Dynamic.Runtime.xml",
+ "ref/dotnet/fr/System.Dynamic.Runtime.xml",
+ "ref/dotnet/it/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ja/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ko/System.Dynamic.Runtime.xml",
+ "ref/dotnet/ru/System.Dynamic.Runtime.xml",
+ "ref/dotnet/System.Dynamic.Runtime.dll",
+ "ref/dotnet/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Dynamic.Runtime.xml",
+ "ref/netcore50/es/System.Dynamic.Runtime.xml",
+ "ref/netcore50/fr/System.Dynamic.Runtime.xml",
+ "ref/netcore50/it/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ja/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ko/System.Dynamic.Runtime.xml",
+ "ref/netcore50/ru/System.Dynamic.Runtime.xml",
+ "ref/netcore50/System.Dynamic.Runtime.dll",
+ "ref/netcore50/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Dynamic.Runtime.4.0.0.nupkg",
+ "System.Dynamic.Runtime.4.0.0.nupkg.sha512",
+ "System.Dynamic.Runtime.nuspec"
+ ]
+ },
+ "System.Globalization/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Ix0ETC4CdvYFJTZdU/fQ62CxY9ZkxqrM1rUyViAznhLde7qgHlVNV6ybzyG06fqGrDX4SguwYSqeadGlHyJWWA==",
+ "files": [
+ "lib/DNXCore50/System.Globalization.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Globalization.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Globalization.xml",
+ "ref/dotnet5.1/es/System.Globalization.xml",
+ "ref/dotnet5.1/fr/System.Globalization.xml",
+ "ref/dotnet5.1/it/System.Globalization.xml",
+ "ref/dotnet5.1/ja/System.Globalization.xml",
+ "ref/dotnet5.1/ko/System.Globalization.xml",
+ "ref/dotnet5.1/ru/System.Globalization.xml",
+ "ref/dotnet5.1/System.Globalization.dll",
+ "ref/dotnet5.1/System.Globalization.xml",
+ "ref/dotnet5.1/zh-hans/System.Globalization.xml",
+ "ref/dotnet5.1/zh-hant/System.Globalization.xml",
+ "ref/dotnet5.4/de/System.Globalization.xml",
+ "ref/dotnet5.4/es/System.Globalization.xml",
+ "ref/dotnet5.4/fr/System.Globalization.xml",
+ "ref/dotnet5.4/it/System.Globalization.xml",
+ "ref/dotnet5.4/ja/System.Globalization.xml",
+ "ref/dotnet5.4/ko/System.Globalization.xml",
+ "ref/dotnet5.4/ru/System.Globalization.xml",
+ "ref/dotnet5.4/System.Globalization.dll",
+ "ref/dotnet5.4/System.Globalization.xml",
+ "ref/dotnet5.4/zh-hans/System.Globalization.xml",
+ "ref/dotnet5.4/zh-hant/System.Globalization.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Globalization.dll",
+ "System.Globalization.4.0.11-rc2-23623.nupkg",
+ "System.Globalization.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Globalization.nuspec"
+ ]
+ },
+ "System.IO/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "hJ9YH7zDBweFNRNMvkPkrQQRfCzobSgNf7cyq4FXivgbKgL5qUmJkwiTNRBYbUVymoD+9eloYHkG0J+Ucy0FUw==",
+ "files": [
+ "lib/DNXCore50/System.IO.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.IO.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.IO.xml",
+ "ref/dotnet5.1/es/System.IO.xml",
+ "ref/dotnet5.1/fr/System.IO.xml",
+ "ref/dotnet5.1/it/System.IO.xml",
+ "ref/dotnet5.1/ja/System.IO.xml",
+ "ref/dotnet5.1/ko/System.IO.xml",
+ "ref/dotnet5.1/ru/System.IO.xml",
+ "ref/dotnet5.1/System.IO.dll",
+ "ref/dotnet5.1/System.IO.xml",
+ "ref/dotnet5.1/zh-hans/System.IO.xml",
+ "ref/dotnet5.1/zh-hant/System.IO.xml",
+ "ref/dotnet5.4/de/System.IO.xml",
+ "ref/dotnet5.4/es/System.IO.xml",
+ "ref/dotnet5.4/fr/System.IO.xml",
+ "ref/dotnet5.4/it/System.IO.xml",
+ "ref/dotnet5.4/ja/System.IO.xml",
+ "ref/dotnet5.4/ko/System.IO.xml",
+ "ref/dotnet5.4/ru/System.IO.xml",
+ "ref/dotnet5.4/System.IO.dll",
+ "ref/dotnet5.4/System.IO.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "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.11-rc2-23623.nupkg",
+ "System.IO.4.0.11-rc2-23623.nupkg.sha512",
+ "System.IO.nuspec"
+ ]
+ },
+ "System.IO.Compression/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==",
+ "files": [
+ "lib/dotnet/System.IO.Compression.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.IO.Compression.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.IO.Compression.xml",
+ "ref/dotnet/es/System.IO.Compression.xml",
+ "ref/dotnet/fr/System.IO.Compression.xml",
+ "ref/dotnet/it/System.IO.Compression.xml",
+ "ref/dotnet/ja/System.IO.Compression.xml",
+ "ref/dotnet/ko/System.IO.Compression.xml",
+ "ref/dotnet/ru/System.IO.Compression.xml",
+ "ref/dotnet/System.IO.Compression.dll",
+ "ref/dotnet/System.IO.Compression.xml",
+ "ref/dotnet/zh-hans/System.IO.Compression.xml",
+ "ref/dotnet/zh-hant/System.IO.Compression.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.IO.Compression.dll",
+ "ref/netcore50/System.IO.Compression.xml",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.IO.Compression.4.0.0.nupkg",
+ "System.IO.Compression.4.0.0.nupkg.sha512",
+ "System.IO.Compression.nuspec"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x64/4.0.0": {
+ "type": "package",
+ "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==",
+ "files": [
+ "runtimes/win10-x64/native/ClrCompression.dll",
+ "runtimes/win7-x64/native/clrcompression.dll",
+ "System.IO.Compression.clrcompression-x64.4.0.0.nupkg",
+ "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512",
+ "System.IO.Compression.clrcompression-x64.nuspec"
+ ]
+ },
+ "System.IO.Compression.clrcompression-x86/4.0.0": {
+ "type": "package",
+ "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==",
+ "files": [
+ "runtimes/win10-x86/native/ClrCompression.dll",
+ "runtimes/win7-x86/native/clrcompression.dll",
+ "System.IO.Compression.clrcompression-x86.4.0.0.nupkg",
+ "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512",
+ "System.IO.Compression.clrcompression-x86.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.0.1-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "WQwknjRs74tIFkQDSy8A8BJyn8rI9lfspmaDdyQCZCM/7+LWWMI+E1pATuq5HvsP1hP6vlLl8W42pb8Fack5xg==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/es/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/fr/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/it/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ja/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ko/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/ru/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/System.IO.FileSystem.dll",
+ "ref/dotnet5.4/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml",
+ "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.IO.FileSystem.4.0.1-rc2-23623.nupkg",
+ "System.IO.FileSystem.4.0.1-rc2-23623.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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AJaoyeAHLpurbTWnmvOhK/QC2sswKJrIA5RlPea+UdfXpHOw3srPNEPpseZDMV/EviVqAwUfFNkc5QxpGZtsLA==",
+ "files": [
+ "lib/dotnet5.4/System.Linq.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Linq.xml",
+ "ref/dotnet5.1/es/System.Linq.xml",
+ "ref/dotnet5.1/fr/System.Linq.xml",
+ "ref/dotnet5.1/it/System.Linq.xml",
+ "ref/dotnet5.1/ja/System.Linq.xml",
+ "ref/dotnet5.1/ko/System.Linq.xml",
+ "ref/dotnet5.1/ru/System.Linq.xml",
+ "ref/dotnet5.1/System.Linq.dll",
+ "ref/dotnet5.1/System.Linq.xml",
+ "ref/dotnet5.1/zh-hans/System.Linq.xml",
+ "ref/dotnet5.1/zh-hant/System.Linq.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "System.Linq.4.0.1-beta-23516.nupkg",
+ "System.Linq.4.0.1-beta-23516.nupkg.sha512",
+ "System.Linq.nuspec"
+ ]
+ },
+ "System.Linq/4.0.1-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "MDTKzq4KjW1pw2xavgJeVEcc9peCe2bId9r75hBavr+dX45HlCJYUJFd07hW5dCRR/3LoFoK+42b3tO1xWQKNg==",
+ "files": [
+ "lib/dotnet5.4/System.Linq.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Linq.xml",
+ "ref/dotnet5.1/es/System.Linq.xml",
+ "ref/dotnet5.1/fr/System.Linq.xml",
+ "ref/dotnet5.1/it/System.Linq.xml",
+ "ref/dotnet5.1/ja/System.Linq.xml",
+ "ref/dotnet5.1/ko/System.Linq.xml",
+ "ref/dotnet5.1/ru/System.Linq.xml",
+ "ref/dotnet5.1/System.Linq.dll",
+ "ref/dotnet5.1/System.Linq.xml",
+ "ref/dotnet5.1/zh-hans/System.Linq.xml",
+ "ref/dotnet5.1/zh-hant/System.Linq.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Linq.4.0.1-rc2-23623.nupkg",
+ "System.Linq.4.0.1-rc2-23623.nupkg.sha512",
+ "System.Linq.nuspec"
+ ]
+ },
+ "System.Linq.Expressions/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "j4baAMJo1ZKQbnwWEMn3+9v4B8mRAvi2MclxXS0rLKq33aijOYUHUTAqPznFPtplUlZBEyyMpoNDl+Ty4b7i3w==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/es/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/fr/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/it/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/ja/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/ko/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/ru/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/System.Linq.Expressions.dll",
+ "ref/dotnet5.1/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/de/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/es/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/fr/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/it/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/ja/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/ko/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/ru/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/System.Linq.Expressions.dll",
+ "ref/dotnet5.4/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml",
+ "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Linq.Expressions.xml",
+ "ref/netcore50/es/System.Linq.Expressions.xml",
+ "ref/netcore50/fr/System.Linq.Expressions.xml",
+ "ref/netcore50/it/System.Linq.Expressions.xml",
+ "ref/netcore50/ja/System.Linq.Expressions.xml",
+ "ref/netcore50/ko/System.Linq.Expressions.xml",
+ "ref/netcore50/ru/System.Linq.Expressions.xml",
+ "ref/netcore50/System.Linq.Expressions.dll",
+ "ref/netcore50/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
+ "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Linq.Expressions.4.0.11-rc2-23623.nupkg",
+ "System.Linq.Expressions.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Linq.Expressions.nuspec"
+ ]
+ },
+ "System.Net.Http/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==",
+ "files": [
+ "lib/DNXCore50/System.Net.Http.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Net.Http.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet/de/System.Net.Http.xml",
+ "ref/dotnet/es/System.Net.Http.xml",
+ "ref/dotnet/fr/System.Net.Http.xml",
+ "ref/dotnet/it/System.Net.Http.xml",
+ "ref/dotnet/ja/System.Net.Http.xml",
+ "ref/dotnet/ko/System.Net.Http.xml",
+ "ref/dotnet/ru/System.Net.Http.xml",
+ "ref/dotnet/System.Net.Http.dll",
+ "ref/dotnet/System.Net.Http.xml",
+ "ref/dotnet/zh-hans/System.Net.Http.xml",
+ "ref/dotnet/zh-hant/System.Net.Http.xml",
+ "ref/net45/_._",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.xml",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "System.Net.Http.4.0.0.nupkg",
+ "System.Net.Http.4.0.0.nupkg.sha512",
+ "System.Net.Http.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.Sockets/4.1.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "e8JZxBWLWmWtEJuiPnutoSTZviU7dsPr/6r9PpuJcLjdY7pNL+kt9F8nKx1EP1yomFHig3shTbPSyGugupQuTg==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Net.Sockets.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Net.Sockets.xml",
+ "ref/dotnet5.4/es/System.Net.Sockets.xml",
+ "ref/dotnet5.4/fr/System.Net.Sockets.xml",
+ "ref/dotnet5.4/it/System.Net.Sockets.xml",
+ "ref/dotnet5.4/ja/System.Net.Sockets.xml",
+ "ref/dotnet5.4/ko/System.Net.Sockets.xml",
+ "ref/dotnet5.4/ru/System.Net.Sockets.xml",
+ "ref/dotnet5.4/System.Net.Sockets.dll",
+ "ref/dotnet5.4/System.Net.Sockets.xml",
+ "ref/dotnet5.4/zh-hans/System.Net.Sockets.xml",
+ "ref/dotnet5.4/zh-hant/System.Net.Sockets.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Net.Sockets.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Net.Sockets.4.1.0-rc2-23623.nupkg",
+ "System.Net.Sockets.4.1.0-rc2-23623.nupkg.sha512",
+ "System.Net.Sockets.nuspec"
+ ]
+ },
+ "System.ObjectModel/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
+ "files": [
+ "lib/dotnet/System.ObjectModel.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.ObjectModel.xml",
+ "ref/dotnet/es/System.ObjectModel.xml",
+ "ref/dotnet/fr/System.ObjectModel.xml",
+ "ref/dotnet/it/System.ObjectModel.xml",
+ "ref/dotnet/ja/System.ObjectModel.xml",
+ "ref/dotnet/ko/System.ObjectModel.xml",
+ "ref/dotnet/ru/System.ObjectModel.xml",
+ "ref/dotnet/System.ObjectModel.dll",
+ "ref/dotnet/System.ObjectModel.xml",
+ "ref/dotnet/zh-hans/System.ObjectModel.xml",
+ "ref/dotnet/zh-hant/System.ObjectModel.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.ObjectModel.4.0.10.nupkg",
+ "System.ObjectModel.4.0.10.nupkg.sha512",
+ "System.ObjectModel.nuspec"
+ ]
+ },
+ "System.Private.Networking/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==",
+ "files": [
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "lib/netcore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "System.Private.Networking.4.0.0.nupkg",
+ "System.Private.Networking.4.0.0.nupkg.sha512",
+ "System.Private.Networking.nuspec"
+ ]
+ },
+ "System.Private.Networking/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "YjBc3HcJBVtoeFNe9cY33dyTGME2T7B5mwuh/wBpxuGuvBMBWqrRKWkSOmnUT7ON7/U2SkpVeM5FCeqE3QRMNw==",
+ "files": [
+ "lib/DNXCore50/System.Private.Networking.dll",
+ "lib/netcore50/System.Private.Networking.dll",
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "System.Private.Networking.4.0.1-beta-23516.nupkg",
+ "System.Private.Networking.4.0.1-beta-23516.nupkg.sha512",
+ "System.Private.Networking.nuspec"
+ ]
+ },
+ "System.Private.Uri/4.0.1-rc2-23623": {
+ "type": "package",
+ "sha512": "7VjuQcSa9LAhjxOJWrExcftjJo3nZVzcmE50L98Lxx0hC1NlB4S0p8tbNEIvy8d+7fwLGz6m97Et8iO2WKFlpw==",
+ "files": [
+ "ref/dnxcore50/_._",
+ "ref/netcore50/_._",
+ "runtime.json",
+ "System.Private.Uri.4.0.1-rc2-23623.nupkg",
+ "System.Private.Uri.4.0.1-rc2-23623.nupkg.sha512",
+ "System.Private.Uri.nuspec"
+ ]
+ },
+ "System.Reflection/4.1.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AltfcesBgINzAqqY8b55ZEG1OEdIHGJdmnoUBxFt06L6R64+U4uiFQ+snen6v6NhYJCqOfWqBo8AcnwhCIN6Ew==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Reflection.dll",
+ "lib/netcore50/System.Reflection.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Reflection.xml",
+ "ref/dotnet5.1/es/System.Reflection.xml",
+ "ref/dotnet5.1/fr/System.Reflection.xml",
+ "ref/dotnet5.1/it/System.Reflection.xml",
+ "ref/dotnet5.1/ja/System.Reflection.xml",
+ "ref/dotnet5.1/ko/System.Reflection.xml",
+ "ref/dotnet5.1/ru/System.Reflection.xml",
+ "ref/dotnet5.1/System.Reflection.dll",
+ "ref/dotnet5.1/System.Reflection.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.xml",
+ "ref/dotnet5.4/de/System.Reflection.xml",
+ "ref/dotnet5.4/es/System.Reflection.xml",
+ "ref/dotnet5.4/fr/System.Reflection.xml",
+ "ref/dotnet5.4/it/System.Reflection.xml",
+ "ref/dotnet5.4/ja/System.Reflection.xml",
+ "ref/dotnet5.4/ko/System.Reflection.xml",
+ "ref/dotnet5.4/ru/System.Reflection.xml",
+ "ref/dotnet5.4/System.Reflection.dll",
+ "ref/dotnet5.4/System.Reflection.xml",
+ "ref/dotnet5.4/zh-hans/System.Reflection.xml",
+ "ref/dotnet5.4/zh-hant/System.Reflection.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Reflection.dll",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.dll",
+ "System.Reflection.4.1.0-rc2-23623.nupkg",
+ "System.Reflection.4.1.0-rc2-23623.nupkg.sha512",
+ "System.Reflection.nuspec"
+ ]
+ },
+ "System.Reflection.Emit/4.0.0": {
+ "type": "package",
+ "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": {
+ "type": "package",
+ "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
+ "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",
+ "System.Reflection.Emit.ILGeneration.nuspec"
+ ]
+ },
+ "System.Reflection.Emit.Lightweight/4.0.0": {
+ "type": "package",
+ "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==",
+ "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",
+ "System.Reflection.Emit.Lightweight.nuspec"
+ ]
+ },
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Ph0ELqqqz218bGEtnfQ1xegANVQ3v0S/hU12AHpb4HEw8SESssbNCKWEVjeI3y2xDYaVx1aVjM4hZ1QXa4IonQ==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Extensions.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Extensions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/es/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/it/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/System.Reflection.Extensions.dll",
+ "ref/dotnet5.1/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Extensions.xml",
+ "ref/netcore50/es/System.Reflection.Extensions.xml",
+ "ref/netcore50/fr/System.Reflection.Extensions.xml",
+ "ref/netcore50/it/System.Reflection.Extensions.xml",
+ "ref/netcore50/ja/System.Reflection.Extensions.xml",
+ "ref/netcore50/ko/System.Reflection.Extensions.xml",
+ "ref/netcore50/ru/System.Reflection.Extensions.xml",
+ "ref/netcore50/System.Reflection.Extensions.dll",
+ "ref/netcore50/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Extensions.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Extensions.nuspec"
+ ]
+ },
+ "System.Reflection.Primitives/4.0.1-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "eR73/9y4Z8IGZjxpaGwJn9V5O/bZB3zwizo/S4qSnS0wDJDmdJ+KlsktE7N9rKGtBVlj+rpXKMe/I7s9RTCXpA==",
+ "files": [
+ "lib/DNXCore50/System.Reflection.Primitives.dll",
+ "lib/net45/_._",
+ "lib/netcore50/System.Reflection.Primitives.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "ref/dotnet5.1/de/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/es/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/fr/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/it/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ja/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ko/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/ru/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/System.Reflection.Primitives.dll",
+ "ref/dotnet5.1/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hans/System.Reflection.Primitives.xml",
+ "ref/dotnet5.1/zh-hant/System.Reflection.Primitives.xml",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg",
+ "System.Reflection.Primitives.4.0.1-beta-23516.nupkg.sha512",
+ "System.Reflection.Primitives.nuspec"
+ ]
+ },
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "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/System.Reflection.TypeExtensions.dll",
+ "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",
+ "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.1-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "1DpvBxKM8YjHrpYRTUww09odYfz4IVdHZ7QXx3Ro42g3Ao73pk24+cGGsXrsRYCZAS3diD4nYCsxjE2/ApiKiA==",
+ "files": [
+ "lib/DNXCore50/System.Resources.ResourceManager.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Resources.ResourceManager.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/es/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/it/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll",
+ "ref/dotnet5.1/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll",
+ "System.Resources.ResourceManager.4.0.1-rc2-23623.nupkg",
+ "System.Resources.ResourceManager.4.0.1-rc2-23623.nupkg.sha512",
+ "System.Resources.ResourceManager.nuspec"
+ ]
+ },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.xml",
+ "ref/dotnet5.1/es/System.Runtime.xml",
+ "ref/dotnet5.1/fr/System.Runtime.xml",
+ "ref/dotnet5.1/it/System.Runtime.xml",
+ "ref/dotnet5.1/ja/System.Runtime.xml",
+ "ref/dotnet5.1/ko/System.Runtime.xml",
+ "ref/dotnet5.1/ru/System.Runtime.xml",
+ "ref/dotnet5.1/System.Runtime.dll",
+ "ref/dotnet5.1/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.3/de/System.Runtime.xml",
+ "ref/dotnet5.3/es/System.Runtime.xml",
+ "ref/dotnet5.3/fr/System.Runtime.xml",
+ "ref/dotnet5.3/it/System.Runtime.xml",
+ "ref/dotnet5.3/ja/System.Runtime.xml",
+ "ref/dotnet5.3/ko/System.Runtime.xml",
+ "ref/dotnet5.3/ru/System.Runtime.xml",
+ "ref/dotnet5.3/System.Runtime.dll",
+ "ref/dotnet5.3/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.4/de/System.Runtime.xml",
+ "ref/dotnet5.4/es/System.Runtime.xml",
+ "ref/dotnet5.4/fr/System.Runtime.xml",
+ "ref/dotnet5.4/it/System.Runtime.xml",
+ "ref/dotnet5.4/ja/System.Runtime.xml",
+ "ref/dotnet5.4/ko/System.Runtime.xml",
+ "ref/dotnet5.4/ru/System.Runtime.xml",
+ "ref/dotnet5.4/System.Runtime.dll",
+ "ref/dotnet5.4/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "System.Runtime.4.0.21-beta-23516.nupkg",
+ "System.Runtime.4.0.21-beta-23516.nupkg.sha512",
+ "System.Runtime.nuspec"
+ ]
+ },
+ "System.Runtime/4.0.21-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "mDZ4yMdPOn4j5oplsRXwfSAwmKFIjyzaYXCijZUGayWgDHQEnahMfJmOkqc54EmmZfDAvBFyrj1vKhsBsmgJCA==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.xml",
+ "ref/dotnet5.1/es/System.Runtime.xml",
+ "ref/dotnet5.1/fr/System.Runtime.xml",
+ "ref/dotnet5.1/it/System.Runtime.xml",
+ "ref/dotnet5.1/ja/System.Runtime.xml",
+ "ref/dotnet5.1/ko/System.Runtime.xml",
+ "ref/dotnet5.1/ru/System.Runtime.xml",
+ "ref/dotnet5.1/System.Runtime.dll",
+ "ref/dotnet5.1/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.3/de/System.Runtime.xml",
+ "ref/dotnet5.3/es/System.Runtime.xml",
+ "ref/dotnet5.3/fr/System.Runtime.xml",
+ "ref/dotnet5.3/it/System.Runtime.xml",
+ "ref/dotnet5.3/ja/System.Runtime.xml",
+ "ref/dotnet5.3/ko/System.Runtime.xml",
+ "ref/dotnet5.3/ru/System.Runtime.xml",
+ "ref/dotnet5.3/System.Runtime.dll",
+ "ref/dotnet5.3/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.3/zh-hant/System.Runtime.xml",
+ "ref/dotnet5.4/de/System.Runtime.xml",
+ "ref/dotnet5.4/es/System.Runtime.xml",
+ "ref/dotnet5.4/fr/System.Runtime.xml",
+ "ref/dotnet5.4/it/System.Runtime.xml",
+ "ref/dotnet5.4/ja/System.Runtime.xml",
+ "ref/dotnet5.4/ko/System.Runtime.xml",
+ "ref/dotnet5.4/ru/System.Runtime.xml",
+ "ref/dotnet5.4/System.Runtime.dll",
+ "ref/dotnet5.4/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.dll",
+ "System.Runtime.4.0.21-rc2-23623.nupkg",
+ "System.Runtime.4.0.21-rc2-23623.nupkg.sha512",
+ "System.Runtime.nuspec"
+ ]
+ },
+ "System.Runtime.Extensions/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "zSzI8hNuwHhGVt/YOC0XNIVe/i5BlnzmGJ7GDm6tEnUfd+VEljYysOwarGmw+s3gNs1XMKp8FKihXwxJkOrwRQ==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/System.Runtime.Extensions.dll",
+ "ref/dotnet5.1/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/de/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/es/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/fr/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/it/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ja/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ko/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/ru/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/System.Runtime.Extensions.dll",
+ "ref/dotnet5.4/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Runtime.Extensions.4.0.11-rc2-23623.nupkg",
+ "System.Runtime.Extensions.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Runtime.Extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.Handles.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Runtime.Handles.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Runtime.Handles.xml",
+ "ref/dotnet/es/System.Runtime.Handles.xml",
+ "ref/dotnet/fr/System.Runtime.Handles.xml",
+ "ref/dotnet/it/System.Runtime.Handles.xml",
+ "ref/dotnet/ja/System.Runtime.Handles.xml",
+ "ref/dotnet/ko/System.Runtime.Handles.xml",
+ "ref/dotnet/ru/System.Runtime.Handles.xml",
+ "ref/dotnet/System.Runtime.Handles.dll",
+ "ref/dotnet/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
+ "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll",
+ "System.Runtime.Handles.4.0.0.nupkg",
+ "System.Runtime.Handles.4.0.0.nupkg.sha512",
+ "System.Runtime.Handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.0.21-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "hOGz2yIIVb8AqxMsxaqGUA6O282wyThDn9yM/+8tPvaLaxoaY287MAOIFEx4Q1Qg7cGqJLWxRHrDN/12+9zFlg==",
+ "files": [
+ "lib/DNXCore50/System.Runtime.InteropServices.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.InteropServices.dll",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.2/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/es/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/System.Runtime.InteropServices.dll",
+ "ref/dotnet5.2/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/es/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/System.Runtime.InteropServices.dll",
+ "ref/dotnet5.3/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/de/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/es/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/it/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll",
+ "ref/dotnet5.4/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll",
+ "System.Runtime.InteropServices.4.0.21-rc2-23623.nupkg",
+ "System.Runtime.InteropServices.4.0.21-rc2-23623.nupkg.sha512",
+ "System.Runtime.InteropServices.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.0.0-rc2-23621": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "KerMx5H8MOPeLV+FBs9O5WupDMQYfSoYMNPQXNoe5BiYi+vSUWRhTUhg9YzOD0zpiEc14cR3KWM0JDF7tWRXpw==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.2/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23621.nupkg",
+ "System.Runtime.InteropServices.RuntimeInformation.4.0.0-rc2-23621.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.nuspec"
+ ]
+ },
+ "System.Runtime.Serialization.Primitives/4.0.11-beta-23409": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AQywM01eG8EgYde/RRrJDVdHmOOI3KkgK9GEjLQqvTLsrWsamNHN/j7Pxwa3XX7klSSrfDpvTNfUl40855idVg==",
+ "files": [
+ "lib/dotnet/de/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/es/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/fr/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/it/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ja/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ko/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/ru/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "lib/dotnet/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml",
+ "lib/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/System.Runtime.Serialization.Primitives.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg",
+ "System.Runtime.Serialization.Primitives.4.0.11-beta-23409.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Algorithms/4.0.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "R2qasrxO8oRMTrAwF4NnTpoQl6IssaCp/wCjh/4YQ2Nh5paXN1Zb6Q8iVeN3olzfRE7e8OBiu3zSIsdBORrhIg==",
+ "files": [
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Algorithms.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Algorithms.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtime.json",
+ "System.Security.Cryptography.Algorithms.4.0.0-rc2-23623.nupkg",
+ "System.Security.Cryptography.Algorithms.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Primitives/4.0.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TP1BdBI0IA/6Pcex5SqCKmifK2qATSjY604rxtWt/cQSRAAZdprhugeEHuYr3SxgYuv1uGT4SbcTm7q2O0gcMQ==",
+ "files": [
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/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-rc2-23623.nupkg",
+ "System.Security.Cryptography.Primitives.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.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.Text.Encoding/4.0.10": {
+ "type": "package",
+ "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
+ "files": [
+ "lib/DNXCore50/System.Text.Encoding.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Text.Encoding.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Text.Encoding.xml",
+ "ref/dotnet/es/System.Text.Encoding.xml",
+ "ref/dotnet/fr/System.Text.Encoding.xml",
+ "ref/dotnet/it/System.Text.Encoding.xml",
+ "ref/dotnet/ja/System.Text.Encoding.xml",
+ "ref/dotnet/ko/System.Text.Encoding.xml",
+ "ref/dotnet/ru/System.Text.Encoding.xml",
+ "ref/dotnet/System.Text.Encoding.dll",
+ "ref/dotnet/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hans/System.Text.Encoding.xml",
+ "ref/dotnet/zh-hant/System.Text.Encoding.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "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.nuspec"
+ ]
+ },
+ "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-23516": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==",
+ "files": [
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Text.RegularExpressions.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.1/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/de/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/es/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/it/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll",
+ "ref/dotnet5.4/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Text.RegularExpressions.xml",
+ "ref/netcore50/es/System.Text.RegularExpressions.xml",
+ "ref/netcore50/fr/System.Text.RegularExpressions.xml",
+ "ref/netcore50/it/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ja/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ko/System.Text.RegularExpressions.xml",
+ "ref/netcore50/ru/System.Text.RegularExpressions.xml",
+ "ref/netcore50/System.Text.RegularExpressions.dll",
+ "ref/netcore50/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
+ "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg",
+ "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg.sha512",
+ "System.Text.RegularExpressions.nuspec"
+ ]
+ },
+ "System.Threading/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
+ "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/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.dll",
+ "System.Threading.4.0.10.nupkg",
+ "System.Threading.4.0.10.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": [
+ "lib/DNXCore50/System.Threading.Tasks.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/netcore50/System.Threading.Tasks.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet/de/System.Threading.Tasks.xml",
+ "ref/dotnet/es/System.Threading.Tasks.xml",
+ "ref/dotnet/fr/System.Threading.Tasks.xml",
+ "ref/dotnet/it/System.Threading.Tasks.xml",
+ "ref/dotnet/ja/System.Threading.Tasks.xml",
+ "ref/dotnet/ko/System.Threading.Tasks.xml",
+ "ref/dotnet/ru/System.Threading.Tasks.xml",
+ "ref/dotnet/System.Threading.Tasks.dll",
+ "ref/dotnet/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
+ "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll",
+ "System.Threading.Tasks.4.0.10.nupkg",
+ "System.Threading.Tasks.4.0.10.nupkg.sha512",
+ "System.Threading.Tasks.nuspec"
+ ]
+ },
+ "System.Threading.Thread/4.0.0-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "dLDj/Sze9RTsRPrXLYA1UlkwcWc35mW/OIPlSVfjZtcUvHlaKCYja3x5Nz1Ak/5nFrSEnu1MmUPB1LBXqXWk0A==",
+ "files": [
+ "lib/DNXCore50/System.Threading.Thread.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Threading.Thread.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Threading.Thread.xml",
+ "ref/dotnet5.4/es/System.Threading.Thread.xml",
+ "ref/dotnet5.4/fr/System.Threading.Thread.xml",
+ "ref/dotnet5.4/it/System.Threading.Thread.xml",
+ "ref/dotnet5.4/ja/System.Threading.Thread.xml",
+ "ref/dotnet5.4/ko/System.Threading.Thread.xml",
+ "ref/dotnet5.4/ru/System.Threading.Thread.xml",
+ "ref/dotnet5.4/System.Threading.Thread.dll",
+ "ref/dotnet5.4/System.Threading.Thread.xml",
+ "ref/dotnet5.4/zh-hans/System.Threading.Thread.xml",
+ "ref/dotnet5.4/zh-hant/System.Threading.Thread.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Threading.Thread.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Threading.Thread.4.0.0-rc2-23623.nupkg",
+ "System.Threading.Thread.4.0.0-rc2-23623.nupkg.sha512",
+ "System.Threading.Thread.nuspec"
+ ]
+ },
+ "System.Threading.ThreadPool/4.0.10-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AlQTse0lCA2r1wdpfokS8oEKZEzBfOv8iI/L0Zcqn42JKQUE2oqSwcQZj3AUHRU32YPBY+GJL6fTwY2oOuOT/w==",
+ "files": [
+ "lib/DNXCore50/System.Threading.ThreadPool.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Threading.ThreadPool.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.4/de/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/es/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/fr/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/it/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/ja/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/ko/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/ru/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/System.Threading.ThreadPool.dll",
+ "ref/dotnet5.4/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/zh-hans/System.Threading.ThreadPool.xml",
+ "ref/dotnet5.4/zh-hant/System.Threading.ThreadPool.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Threading.ThreadPool.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Threading.ThreadPool.4.0.10-rc2-23623.nupkg",
+ "System.Threading.ThreadPool.4.0.10-rc2-23623.nupkg.sha512",
+ "System.Threading.ThreadPool.nuspec"
+ ]
+ },
+ "System.Xml.ReaderWriter/4.0.10": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==",
+ "files": [
+ "lib/dotnet/System.Xml.ReaderWriter.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "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/net46/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Xml.ReaderWriter.4.0.10.nupkg",
+ "System.Xml.ReaderWriter.4.0.10.nupkg.sha512",
+ "System.Xml.ReaderWriter.nuspec"
+ ]
+ },
+ "System.Xml.XDocument/4.0.11-rc2-23623": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "1iWPCgPmysg4DyOUFXO9di/vu1cZt8cDw4y3dos6imalAc9KFNdZuqJdl3SgihiVH19jMGJTmiemo7Ewd9aEDw==",
+ "files": [
+ "lib/dotnet5.4/System.Xml.XDocument.dll",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Xml.XDocument.dll",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "ref/dotnet5.1/de/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/es/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/fr/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/it/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/ja/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/ko/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/ru/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/System.Xml.XDocument.dll",
+ "ref/dotnet5.1/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/zh-hans/System.Xml.XDocument.xml",
+ "ref/dotnet5.1/zh-hant/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/de/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/es/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/fr/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/it/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/ja/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/ko/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/ru/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/System.Xml.XDocument.dll",
+ "ref/dotnet5.4/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/zh-hans/System.Xml.XDocument.xml",
+ "ref/dotnet5.4/zh-hant/System.Xml.XDocument.xml",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/de/System.Xml.XDocument.xml",
+ "ref/netcore50/es/System.Xml.XDocument.xml",
+ "ref/netcore50/fr/System.Xml.XDocument.xml",
+ "ref/netcore50/it/System.Xml.XDocument.xml",
+ "ref/netcore50/ja/System.Xml.XDocument.xml",
+ "ref/netcore50/ko/System.Xml.XDocument.xml",
+ "ref/netcore50/ru/System.Xml.XDocument.xml",
+ "ref/netcore50/System.Xml.XDocument.dll",
+ "ref/netcore50/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
+ "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "System.Xml.XDocument.4.0.11-rc2-23623.nupkg",
+ "System.Xml.XDocument.4.0.11-rc2-23623.nupkg.sha512",
+ "System.Xml.XDocument.nuspec"
+ ]
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==",
+ "files": [
+ "xunit.2.1.0.nupkg",
+ "xunit.2.1.0.nupkg.sha512",
+ "xunit.nuspec"
+ ]
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
+ "files": [
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
+ "xunit.abstractions.2.0.0.nupkg",
+ "xunit.abstractions.2.0.0.nupkg.sha512",
+ "xunit.abstractions.nuspec"
+ ]
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==",
+ "files": [
+ "lib/dotnet/xunit.assert.dll",
+ "lib/dotnet/xunit.assert.pdb",
+ "lib/dotnet/xunit.assert.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml",
+ "xunit.assert.2.1.0.nupkg",
+ "xunit.assert.2.1.0.nupkg.sha512",
+ "xunit.assert.nuspec"
+ ]
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==",
+ "files": [
+ "build/_desktop/xunit.execution.desktop.dll",
+ "build/dnx451/_._",
+ "build/monoandroid/_._",
+ "build/monotouch/_._",
+ "build/net45/_._",
+ "build/portable-net45+win8+wp8+wpa81/xunit.core.props",
+ "build/win8/_._",
+ "build/win81/xunit.core.props",
+ "build/wp8/_._",
+ "build/wpa81/xunit.core.props",
+ "build/xamarinios/_._",
+ "xunit.core.2.1.0.nupkg",
+ "xunit.core.2.1.0.nupkg.sha512",
+ "xunit.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==",
+ "files": [
+ "lib/dotnet/xunit.core.dll",
+ "lib/dotnet/xunit.core.dll.tdnet",
+ "lib/dotnet/xunit.core.pdb",
+ "lib/dotnet/xunit.core.xml",
+ "lib/dotnet/xunit.runner.tdnet.dll",
+ "lib/dotnet/xunit.runner.utility.desktop.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll",
+ "xunit.extensibility.core.2.1.0.nupkg",
+ "xunit.extensibility.core.2.1.0.nupkg.sha512",
+ "xunit.extensibility.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==",
+ "files": [
+ "lib/dnx451/xunit.execution.dotnet.dll",
+ "lib/dnx451/xunit.execution.dotnet.pdb",
+ "lib/dnx451/xunit.execution.dotnet.xml",
+ "lib/dotnet/xunit.execution.dotnet.dll",
+ "lib/dotnet/xunit.execution.dotnet.pdb",
+ "lib/dotnet/xunit.execution.dotnet.xml",
+ "lib/monoandroid/xunit.execution.dotnet.dll",
+ "lib/monoandroid/xunit.execution.dotnet.pdb",
+ "lib/monoandroid/xunit.execution.dotnet.xml",
+ "lib/monotouch/xunit.execution.dotnet.dll",
+ "lib/monotouch/xunit.execution.dotnet.pdb",
+ "lib/monotouch/xunit.execution.dotnet.xml",
+ "lib/net45/xunit.execution.desktop.dll",
+ "lib/net45/xunit.execution.desktop.pdb",
+ "lib/net45/xunit.execution.desktop.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml",
+ "lib/win8/xunit.execution.dotnet.dll",
+ "lib/win8/xunit.execution.dotnet.pdb",
+ "lib/win8/xunit.execution.dotnet.xml",
+ "lib/wp8/xunit.execution.dotnet.dll",
+ "lib/wp8/xunit.execution.dotnet.pdb",
+ "lib/wp8/xunit.execution.dotnet.xml",
+ "lib/wpa81/xunit.execution.dotnet.dll",
+ "lib/wpa81/xunit.execution.dotnet.pdb",
+ "lib/wpa81/xunit.execution.dotnet.xml",
+ "lib/xamarinios/xunit.execution.dotnet.dll",
+ "lib/xamarinios/xunit.execution.dotnet.pdb",
+ "lib/xamarinios/xunit.execution.dotnet.xml",
+ "xunit.extensibility.execution.2.1.0.nupkg",
+ "xunit.extensibility.execution.2.1.0.nupkg.sha512",
+ "xunit.extensibility.execution.nuspec"
+ ]
+ },
+ "xunit.runner.aspnet/2.0.0-aspnet-rc2-16023": {
+ "type": "package",
+ "sha512": "p8q+8w86AystyEjafqrp9nqj5t7JXRSRo9JEmwr9I6nxJ6bmTM32IKMNr1uA2DOYtkbPq5GGW+uptQdtoo9HQg==",
+ "files": [
+ "lib/dnx451/xunit.runner.aspnet.dll",
+ "lib/dnx451/xunit.runner.aspnet.xml",
+ "lib/dnxcore50/xunit.runner.aspnet.dll",
+ "lib/dnxcore50/xunit.runner.aspnet.xml",
+ "xunit.runner.aspnet.2.0.0-aspnet-rc2-16023.nupkg",
+ "xunit.runner.aspnet.2.0.0-aspnet-rc2-16023.nupkg.sha512",
+ "xunit.runner.aspnet.nuspec"
+ ]
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "sha512": "GUtWIQN3h7QGJdp5RTgvbPVjdWC7tXIRZhzpW8txNDC9nbMph4/TWbVEZKCGUOsLvE5BZg3icRGb6JR3ZwBADA==",
+ "files": [
+ "lib/dnx451/xunit.runner.dnx.dll",
+ "lib/dnx451/xunit.runner.dnx.xml",
+ "lib/dnxcore50/xunit.runner.dnx.dll",
+ "lib/dnxcore50/xunit.runner.dnx.xml",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg.sha512",
+ "xunit.runner.dnx.nuspec"
+ ]
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll",
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll",
+ "lib/net45/xunit.runner.reporters.desktop.dll",
+ "xunit.runner.reporters.2.1.0.nupkg",
+ "xunit.runner.reporters.2.1.0.nupkg.sha512",
+ "xunit.runner.reporters.nuspec"
+ ]
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.utility.dotnet.dll",
+ "lib/dnx451/xunit.runner.utility.dotnet.pdb",
+ "lib/dnx451/xunit.runner.utility.dotnet.xml",
+ "lib/dotnet/xunit.runner.utility.dotnet.dll",
+ "lib/dotnet/xunit.runner.utility.dotnet.pdb",
+ "lib/dotnet/xunit.runner.utility.dotnet.xml",
+ "lib/net35/xunit.runner.utility.desktop.dll",
+ "lib/net35/xunit.runner.utility.desktop.pdb",
+ "lib/net35/xunit.runner.utility.desktop.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
+ "xunit.runner.utility.2.1.0.nupkg",
+ "xunit.runner.utility.2.1.0.nupkg.sha512",
+ "xunit.runner.utility.nuspec"
+ ]
+ },
+ "xunit.runner.visualstudio/2.1.0": {
+ "type": "package",
+ "sha512": "44vJFEQopk8SHfPMjgzn4QevRNfITO7zRZBo9lb+OPhID7v/q2gFaOgyEUomKilq2rwWUQ0m9yquBOzJL4L4aA==",
+ "files": [
+ "build/_common/xunit.abstractions.dll",
+ "build/_common/xunit.runner.utility.desktop.dll",
+ "build/_common/xunit.runner.utility.dotnet.dll",
+ "build/_common/xunit.runner.visualstudio.testadapter.dll",
+ "build/monoandroid/_._",
+ "build/monotouch/_._",
+ "build/net20/xunit.runner.visualstudio.props",
+ "build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props",
+ "build/uap10.0/xunit.runner.visualstudio.props",
+ "build/uap10.0/xunit.runner.visualstudio.targets",
+ "build/uap10.0/xunit.runner.visualstudio.uwp.dll",
+ "build/uap10.0/xunit.runner.visualstudio.uwp.pri",
+ "build/win8/_._",
+ "build/win81/xunit.runner.visualstudio.props",
+ "build/win81/xunit.runner.visualstudio.targets",
+ "build/win81/xunit.runner.visualstudio.win81.dll",
+ "build/win81/xunit.runner.visualstudio.win81.pri",
+ "build/wp8/_._",
+ "build/wpa81/xunit.runner.visualstudio.props",
+ "build/wpa81/xunit.runner.visualstudio.targets",
+ "build/wpa81/xunit.runner.visualstudio.wpa81.dll",
+ "build/wpa81/xunit.runner.visualstudio.wpa81.pri",
+ "build/xamarinios/_._",
+ "xunit.runner.visualstudio.2.1.0.nupkg",
+ "xunit.runner.visualstudio.2.1.0.nupkg.sha512",
+ "xunit.runner.visualstudio.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "CommandLineParser >= 2.7.0-*",
+ "ParserTest >= 2.7.0-*",
+ "xunit >= 2.1.0",
+ "xunit.runner.dnx >= 2.1.0-rc1-build204",
+ "xunit.runner.aspnet >= 2.0.0-aspnet-rc2-*",
+ "xunit.runner.visualstudio >= 2.1.0"
+ ],
+ "DNX,Version=v4.5.1": [],
+ "DNX,Version=v4.5.2": [],
+ "DNXCore,Version=v5.0": []
+ }
+}
\ No newline at end of file